/* ── Who This Weekend Is For ── */
.new-who {
    position: relative;
    background: #f7f5f0;
    overflow: hidden;
}

.new-who__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 12% 20%, rgba(25, 38, 102, 0.05) 0%, transparent 62%),
        radial-gradient(ellipse 45% 45% at 92% 80%, rgba(206, 137, 36, 0.08) 0%, transparent 55%);
}

.new-who__inner {
    position: relative;
    z-index: 1;
}

.new-who__head {
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.new-who__title {
    color: #2d3b68;
    text-transform: none !important;
}

.new-who__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.new-who__col {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.45rem 1.35rem;
    border: 1px solid rgba(25, 38, 102, 0.1);
    box-shadow: 0 8px 24px rgba(25, 38, 102, 0.06);
}

.new-who__col--yes {
    border-top: 3px solid #ce8924;
}

.new-who__col--no {
    border-top: 3px solid #2d3b68;
    background: #fafbfd;
}

.new-who__col-title {
    margin: 0 0 1rem;
    color: #2d3b68;
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase !important;
    line-height: 1.3;
}

.new-who__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.new-who__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #2d3b68;
    font-family: var(--ztc-family-font2), 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
}

.new-who__list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.new-who__col--yes .new-who__list li::before {
    background-color: rgba(206, 137, 36, 0.14);
    border: 2px solid #ce8924;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ce8924' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
}

.new-who__col--no .new-who__list li::before {
    background-color: rgba(45, 59, 104, 0.08);
    border: 2px solid #2d3b68;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d3b68' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: 11px 11px;
}

.new-who__close {
    margin-top: 2rem;
}

.new-who__close-line {
    margin: 0 0 1.15rem;
    color: #2d3b68;
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.new-who__cta {
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .new-who__grid {
        grid-template-columns: 1fr;
    }

    .new-who__head {
        margin-bottom: 1.5rem;
    }

    .new-who__col {
        padding: 1.25rem 1.1rem 1.15rem;
    }

    .new-who__list li {
        font-size: 0.93rem;
    }

    .new-who__close-line {
        font-size: 0.98rem;
    }
}
