/* ── Stats block ──────────────────────────────────────────────────────────── */

.nyehs-stats {
    padding: 60px 40px;
    color: #fff;
}

.nyehs-stats__inner {
    max-width: 1200px;
    margin-inline: auto;
    width: 100%;
}

/* Header */
.nyehs-stats__header {
    text-align: center;
    margin-bottom: 48px;
}

.nyehs-stats__heading {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: inherit;
}

.nyehs-stats__subheading {
    margin: 0;
    font-size: 1rem;
    color: inherit;
    opacity: 0.65;
}

/* Grid: auto-fit so 4-6 items fill a 1200px row naturally */
.nyehs-stats__grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 160px, 1fr ) );
    gap: 32px 24px;
    align-items: start;
}

/* Individual stat */
.nyehs-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

/* Value row (prefix + value + suffix) */
.nyehs-stats__value-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    line-height: 1.1;
}

.nyehs-stats__prefix,
.nyehs-stats__suffix {
    font-size: clamp( 1.1rem, 2.2vw, 1.6rem );
    font-weight: 600;
    color: inherit;
    opacity: 0.75;
}

.nyehs-stats__value {
    font-size: clamp( 2rem, 5vw, 3.2rem );
    font-weight: 700;
    color: inherit;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nyehs-stats__label {
    margin: 0;
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .nyehs-stats {
        padding: 40px 20px;
    }

    .nyehs-stats__grid {
        grid-template-columns: repeat( 2, 1fr );
        gap: 28px 16px;
    }
}
