/* ============================================ */
/*              Hero Banner (Type B)            */
/* Shared component — inner pages               */
/* ============================================ */

/* Mobile - 360px */
@media only screen and (min-width: 0px) {

    #cs-hero-banner {
        position: relative;
        width: 100%;
        background: var(--navy);
        overflow: hidden;
    }

    #cs-hero-banner .cs-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    #cs-hero-banner .cs-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        opacity: 0.18;
    }

    #cs-hero-banner .cs-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            100deg,
            rgba(10, 22, 40, 1) 0%,
            rgba(10, 22, 40, 0.92) 45%,
            rgba(10, 22, 40, 0.6) 100%
        );
    }

    #cs-hero-banner .cs-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: calc(var(--nav-offset, 7rem) + clamp(3rem, 6vw, 5rem)) 1.5rem clamp(2rem, 4vw, 3rem);
    }

    #cs-hero-banner .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        max-width: 40rem;
    }

    /* Badge */
    #cs-hero-banner .cs-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        background: rgba(212, 168, 67, 0.12);
        border: 0.0625rem solid rgba(212, 168, 67, 0.35);
        border-radius: 100px;
        padding: 0.3125rem 0.75rem 0.3125rem 0.5rem;
    }

    #cs-hero-banner .cs-badge-dot {
        width: 0.3125rem;
        height: 0.3125rem;
        border-radius: 50%;
        background: var(--signingGold);
        flex-shrink: 0;
    }

    #cs-hero-banner .cs-badge-text {
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.65);
    }

    /* Title */
    #cs-hero-banner .cs-title {
        font-family: var(--headerFont);
        font-size: clamp(2rem, 6vw, 3.2rem);
        font-weight: 900;
        line-height: 1.05em;
        color: var(--white);
        margin: 0;
    }

    #cs-hero-banner .cs-title em {
        font-style: normal;
        color: var(--signingGold);
    }

    /* Text */
    #cs-hero-banner .cs-text {
        font-family: var(--bodyFont);
        font-size: clamp(0.9rem, 1.4vw, 1rem);
        font-weight: 300;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.55);
        margin: 0;
        max-width: 30rem;
    }

    /* Button */
    #cs-hero-banner .cs-button-solid {
        margin-top: 0.5rem;
    }

    /* Gold accent line */
    #cs-hero-banner .cs-gold-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3.75rem;
        height: 0.125rem;
        background: var(--signingGold);
        z-index: 3;
    }
}

/* Tablet - 640px */
@media only screen and (min-width: 40rem) {

    #cs-hero-banner .cs-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {

    #cs-hero-banner .cs-container {
        padding-left: 6vw;
        padding-right: 6vw;
    }
}