/* ==========================================================================
   NACS Show 2026 - Text + Image Block Component
   Two-column layout with rich text content and large image
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.tib {
    background: #FFFFFF;
    padding: 88px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Mobile image (hidden on desktop) */
.tib__image--mobile {
    display: none;
}

/* --------------------------------------------------------------------------
   Two-Column Layout
   -------------------------------------------------------------------------- */
.tib__layout {
    display: flex;
    gap: 88px;
    align-items: center;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Left Column - Text Content
   -------------------------------------------------------------------------- */
.tib__text {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

/* Headings Group */
.tib__headings {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

/* Eyebrow */
.tib__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tib__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.tib__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);
}

/* Section Title */
.tib__title {
    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;
    width: 100%;
}

/* Subhead 1 */
.tib__subhead1 {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #000000;
    margin: 0;
}

/* Description */
.tib__desc {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    width: 100%;
}

/* Subhead 2 */
.tib__subhead2 {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Tags
   -------------------------------------------------------------------------- */
.tib__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
    align-items: center;
    width: 100%;
}

.tib__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(241, 241, 241, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 4px;
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #000000;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Social Media Icons
   -------------------------------------------------------------------------- */
.tib__socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tib__social {
    display: block;
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.tib__social:hover {
    opacity: 0.7;
}

.tib__social svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   CTA Buttons
   -------------------------------------------------------------------------- */
.tib__buttons {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.tib__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    border-radius: 360px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.tib__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.tib__btn span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tib__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Primary Button (Yellow) */
.tib__btn--primary {
    background: var(--nacs-color-yellow, #FAE100);
}

.tib__btn--primary span {
    color: var(--nacs-color-navy, #00205B);
}

/* Secondary Button (Green Transparent) */
.tib__btn--secondary {
    background: rgba(120, 190, 32, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tib__btn--secondary span {
    color: #1A5E20;
}

/* --------------------------------------------------------------------------
   Right Column - Image (desktop)
   -------------------------------------------------------------------------- */
.tib__image--desktop {
    width: 675px;
    height: 502px;
    flex-shrink: 0;
    overflow: hidden;
}

.tib__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .tib {
        padding: 64px 20px;
    }

    /* Show mobile image, hide desktop image */
    .tib__image--mobile {
        display: block;
        width: 100%;
        height: auto;
        max-height: 502px;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .tib__image--desktop {
        display: none;
    }

    .tib__layout {
        flex-direction: column;
        gap: 40px;
    }

    .tib__text {
        gap: 24px;
        width: 100%;
    }

    .tib__headings {
        gap: 24px;
    }

    .tib__title {
        font-size: 48px;
        line-height: 56px;
    }

    .tib__subhead1 {
        font-size: 18px;
        line-height: 24px;
        color: var(--nacs-color-navy, #00205B);
    }

    .tib__desc {
        font-size: 16px;
        line-height: 18px;
    }

    .tib__subhead2 {
        font-size: 16px;
        line-height: 18px;
        color: #425563;
    }

    .tib__tags {
        gap: 12px 32px;
    }

    .tib__buttons {
        flex-direction: column;
        gap: 16px;
    }

    .tib__btn {
        height: 48px;
        padding: 0 20px;
    }

    .tib__btn span {
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .tib__title {
        font-size: 40px;
        line-height: 48px;
    }
}
