/* ==========================================================================
   NACS Show 2026 - Stats Block C Component
   Light grey horizontal statistics bar with icon, number, and label
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.stats-c {
    background: #FBFBFB;
    padding: 40px 80px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Stats Container (horizontal row on desktop)
   -------------------------------------------------------------------------- */
.stats-c__container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Individual Stat Item
   -------------------------------------------------------------------------- */
.stats-c__item {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Icon */
.stats-c__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    line-height: 1;
    color: #000000;
}

.stats-c__icon i {
    font-size: 70px;
    line-height: 1;
}

.stats-c__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Stat Value (large number) */
.stats-c__value {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Stat Label */
.stats-c__label {
    font-family: var(--nacs-font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .stats-c {
        padding: 40px 80px;
        border-radius: 8px;
    }

    .stats-c__container {
        flex-direction: column;
        gap: 40px;
    }

    .stats-c__item {
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .stats-c__value {
        font-size: 32px;
        line-height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .stats-c {
        padding: 40px 40px;
    }

    .stats-c__value {
        font-size: 28px;
        line-height: 36px;
    }
}
