/* ==========================================================================
   NACS Show 2026 - Bottom Banner Multi-CTA B
   Pink-to-orange gradient banner with eyebrow, heading, description, 2 CTAs
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Banner Container
   Desktop: left-to-right pink → red → orange
   -------------------------------------------------------------------------- */
.bottom-banner-b {
    background: linear-gradient(to right, #EC0185 0%, #EE2824 24.8%, #FCB116 43.5%);
    padding: 40px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.bottom-banner-b__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Left Content (Eyebrow + Heading + Description)
   -------------------------------------------------------------------------- */
.bottom-banner-b__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

/* Eyebrow */
.bottom-banner-b__eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bottom-banner-b__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BAB3, #009FDF);
    flex-shrink: 0;
}

.bottom-banner-b__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 325;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Heading */
.bottom-banner-b__heading {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--nacs-color-white, #FFFFFF);
    margin: 0;
}

/* Description */
.bottom-banner-b__description {
    font-family: var(--nacs-font-gotham);
    font-weight: 325;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--nacs-color-white, #FFFFFF);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Right Buttons
   -------------------------------------------------------------------------- */
.bottom-banner-b__buttons {
    display: flex;
    gap: 23px;
    align-items: center;
    flex-shrink: 0;
}

/* Secondary Button (Outline / Ghost) */
.bottom-banner-b__btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    border: 2px solid var(--nacs-color-yellow, #FAE100);
    border-radius: 360px;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.bottom-banner-b__btn-secondary-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.bottom-banner-b__btn-secondary:hover {
    background: rgba(250, 225, 0, 0.1);
    text-decoration: none;
}

/* Primary Button (Solid Yellow) */
.bottom-banner-b__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    border-radius: 360px;
    background: var(--nacs-color-yellow, #FAE100);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.bottom-banner-b__btn-primary span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

.bottom-banner-b__btn-primary svg {
    width: 24px;
    height: 24px;
    color: var(--nacs-color-navy, #00205B);
    flex-shrink: 0;
}

.bottom-banner-b__btn-primary:hover {
    background: #FFE94A;
    transform: translateY(-1px);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   Stacked layout, vertical gradient pink → orange
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .bottom-banner-b {
        background: linear-gradient(to bottom, #D9017F 0%, #FBB116 121%);
        padding: 56px 20px;
    }

    .bottom-banner-b__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .bottom-banner-b__content {
        width: 100%;
    }

    .bottom-banner-b__buttons {
        flex-shrink: unset;
    }
}
