/* ==========================================================================
   NACS Show 2026 - Common Heading Component
   Reusable heading block with eyebrow, filters, description, and CTA
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.ch {
    background: #FFFFFF;
    padding: 88px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Eyebrow
   -------------------------------------------------------------------------- */
.ch__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ch__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.ch__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

/* --------------------------------------------------------------------------
   Heading Row (title + CTA button on desktop)
   -------------------------------------------------------------------------- */
.ch__heading-row {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.ch__title {
    flex: 1 0 0;
    min-width: 0;
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Button
   -------------------------------------------------------------------------- */
.ch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    border-radius: 360px;
    background: var(--nacs-color-yellow, #FAE100);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.ch__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.ch__btn span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
    white-space: nowrap;
}

.ch__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Desktop button visible, mobile button hidden */
.ch__btn--desktop {
    display: inline-flex;
}

.ch__btn--mobile {
    display: none;
}

/* --------------------------------------------------------------------------
   Filter Labels (radio-style items)
   -------------------------------------------------------------------------- */
.ch__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.ch__filter-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ch__radio {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ch__filter-label {
    font-family: var(--nacs-font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Description
   -------------------------------------------------------------------------- */
.ch__desc-container {
    max-width: 740px;
}

.ch__desc {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .ch {
        padding: 64px 20px;
        gap: 40px;
    }

    .ch__heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .ch__title {
        font-size: 48px;
        line-height: 56px;
    }

    /* Hide desktop button, show mobile button */
    .ch__btn--desktop {
        display: none;
    }

    .ch__btn--mobile {
        display: inline-flex;
        height: 48px;
        padding: 0 20px;
    }

    .ch__btn--mobile span {
        font-size: 14px;
        line-height: 20px;
    }

    .ch__filters {
        gap: 8px 32px;
    }

    .ch__filter-label {
        font-size: 14px;
        line-height: 20px;
    }

    .ch__desc-container {
        max-width: 100%;
    }

    .ch__desc {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .ch__title {
        font-size: 40px;
        line-height: 48px;
    }
}
