/* ============================================================
   .stats-bar — Barre de statistiques live (Stitch v3)
   ============================================================ */

.stats-bar {
    /* hérite de .surface */
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    padding: 10px 12px;
    flex-wrap: wrap;
}

.stats-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-2);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
}

.stats-bar-item i {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}

.stats-bar-item .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--text-1);
    font-variant-numeric: tabular-nums;
}

.stats-bar-item .lbl {
    color: var(--text-3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (min-width: 1025px) {
    .stats-bar { padding: 14px 20px; gap: 16px; }
    .stats-bar-item .num { font-size: 20px; }
}
