/* ── Inner page banner (speakers, sponsorship, etc.) ── */
.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 400px;
    height: 400px;
    padding: clamp(4.75rem, 9vw, 5.5rem) clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    background: #192666;
    overflow: hidden;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    background:
        radial-gradient(ellipse 70% 55% at 50% 35%, rgba(92, 118, 210, 0.35) 0%, transparent 62%),
        radial-gradient(ellipse 45% 40% at 12% 85%, rgba(206, 137, 36, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 38% at 88% 25%, rgba(80, 110, 200, 0.2) 0%, transparent 50%);
}

.page-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
}

.page-banner__content {
    margin: 0 auto;
}

.page-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    color: #ce8924;
    font-family: var(--ztc-family-font1) !important;
    font-size: clamp(0.68rem, 1.1vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
}

.page-banner__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ce8924;
    flex-shrink: 0;
}

.page-banner__title {
    margin: 0;
    color: #fff;
    font-family: var(--ztc-family-font1) !important;
    font-size: clamp(1.65rem, 3.5vw, 2.75rem) !important;
    font-weight: var(--ztc-weight-bold, 700) !important;
    line-height: 1.12 !important;
    text-transform: uppercase;
    max-width: 100%;
}

.page-banner__subtitle {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--ztc-family-font1), 'Source Sans 3', sans-serif;
    font-size: clamp(0.88rem, 1.5vw, 1.08rem);
    line-height: 1.55;
    font-weight: 400;
}

/* Tablet */
@media (max-width: 991.98px) {
    .page-banner {
        padding-top: clamp(4.5rem, 11vw, 5.25rem);
    }

    .page-banner__subtitle {
        max-width: 32rem;
    }
}

/* Mobile — fixed 350px height matches desktop; copy scales to fit */
@media (max-width: 767.98px) {
    .page-banner {
        min-height: 350px;
        height: 350px;
        padding: clamp(4.25rem, 13vw, 5rem) 1rem clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .page-banner__eyebrow {
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .page-banner__title {
        font-size: clamp(1.45rem, 6vw, 1.95rem) !important;
        line-height: 1.15 !important;
    }

    .page-banner__subtitle {
        margin-top: 0.6rem;
        font-size: clamp(0.82rem, 3.4vw, 0.95rem);
        line-height: 1.5;
        max-width: 100%;
    }
}

/* Small phones — keep rounded bottom corners, tighten copy */
@media (max-width: 575.98px) {
    .page-banner {
        border-radius: 0 0 16px 16px;
    }

    .page-banner__bg {
        border-radius: 0 0 16px 16px;
    }

    .page-banner__eyebrow {
        font-size: 0.65rem;
    }
}
