/* ── STATS BAR ─────────────────────────────────────── */

.stats-bar {

    background: var(--accent);

    padding: 20px 40px;

}

.stats-bar-inner {

    max-width: 1140px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 20px;

    flex-wrap: wrap;

}

/* ── STAT ITEM ────────────────────────────────────── */

.stat-b {

    text-align: center;

}

.stat-b-val {

    font-family: 'Syne', sans-serif;

    font-size: 28px;

    font-weight: 800;

    color: #fff;

    line-height: 1;

}

.stat-b-lbl {

    font-size: 12px;

    color: rgba(255,255,255,0.7);

    margin-top: 4px;

}