/* ==========================================================================
   NACS Show 2026 - Text Link Block Component
   Section with eyebrow, heading, and grid of small text link cards
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.tlb {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 56px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Text Section (Eyebrow + Heading)
   -------------------------------------------------------------------------- */
.tlb__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Eyebrow
   -------------------------------------------------------------------------- */
.tlb__eyebrow {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tlb__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2CCFC6, #00875A);
    flex-shrink: 0;
}

.tlb__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    color: #425563;
}

/* --------------------------------------------------------------------------
   Heading
   -------------------------------------------------------------------------- */
.tlb__heading {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Cards Grid
   -------------------------------------------------------------------------- */
.tlb__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Individual Card
   -------------------------------------------------------------------------- */
.tlb__card {
    display: flex;
    gap: 20px;
    align-items: center;
    min-height: 88px;
    padding: 10px 20px;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: calc(33.333% - 14px);
}

.tlb__card:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Card Style Variants
   -------------------------------------------------------------------------- */
.tlb__card--navy {
    background: var(--nacs-color-navy, #00205B);
}

.tlb__card--navy .tlb__card-title,
.tlb__card--navy .tlb__card-desc {
    color: #FFFFFF;
}

.tlb__card--green {
    background: #C4D600;
}

.tlb__card--green .tlb__card-title,
.tlb__card--green .tlb__card-desc {
    color: #000000;
}

.tlb__card--grey {
    background: #F1F1F1;
}

.tlb__card--grey .tlb__card-title,
.tlb__card--grey .tlb__card-desc {
    color: #000000;
}

/* --------------------------------------------------------------------------
   Circle Avatar
   -------------------------------------------------------------------------- */
.tlb__avatar {
    width: 67px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tlb__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Content (Text + Arrow)
   -------------------------------------------------------------------------- */
.tlb__content {
    flex: 1 0 0;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Card Text
   -------------------------------------------------------------------------- */
.tlb__card-text {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
}

.tlb__card-title {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    width: 100%;
}

.tlb__card-desc {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Arrow Icon
   -------------------------------------------------------------------------- */
.tlb__arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .tlb {
        padding: 40px 20px;
        gap: 40px;
    }

    .tlb__text {
        gap: 24px;
    }

    .tlb__heading {
        font-size: 24px;
        line-height: 32px;
    }

    .tlb__card {
        width: 100%;
    }
}
