.nml-stats-banner {
    padding: 80px 0;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

/* subtle noise texture overlay */
.nml-stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    opacity: 0.35;
}

.nml-stats-banner .container {
    position: relative;
    z-index: 1;
}

/* ── Heading ── */
.nml-stats-banner__heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    text-align: center;
    margin: 0 0 64px;
    line-height: 56px;
}

/* Wrap a word in <span> to give it the accent colour. */
.nml-stats-banner__heading span { color: var(--color-text-accent); }

/* ── Grid ── */
.nml-stats-banner__grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nml-stats-banner__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1 1 180px;
    min-width: 140px;
    position: relative;
}

/* ── Value ── */
.nml-stats-banner__value {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 64px;
    transition: opacity 0.2s;
}

/* ── Label ── */
.nml-stats-banner__label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-white);
    text-align: center;
    line-height: 24px;
    opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nml-stats-banner {
        padding: 40px 0;
    }

    .nml-stats-banner__heading {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 32px;
    }

    .nml-stats-banner__grid {
        gap: 16px 0;
        flex-direction: column;
    }

    .nml-stats-banner__item {
        flex: 1 1 45%;
        padding: 0;
        gap: 4px;
    }

    .nml-stats-banner__item:nth-child(2n+1)::before {
        display: none;
    }

    .nml-stats-banner__value {
        font-size: 40px;
        line-height: 48px;
    }

    .nml-stats-banner__label {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 400px) {
    .nml-stats-banner__item {
        flex: 1 1 100%;
    }

    .nml-stats-banner__item::before {
        display: none;
    }
}
