/* ==========================================================================
   bo-stats-bar.css — Build Only: standalone stats bar + section divider
   Figma: 1440×244, padV:80/80, padH:60/60, gap:163 HORIZONTAL, bg:#ffffff
   ========================================================================== */

/* ── Section divider — 1338px, 0.5px, 50% opacity, centred ─────────────────── */
.bo-divider {
    width: 1338px;
    max-width: calc(100% - 120px); /* matches 60px side padding at desktop */
    border: none;
    border-top: 0.5px solid rgba(28, 28, 28, 0.5);
    margin-inline: auto;
}

@media (max-width: 639px) {
    .bo-divider {
        max-width: calc(100% - 32px); /* matches 16px side padding on mobile */
    }
}

/* ── Stats bar ──────────────────────────────────────────────────────────────── */
.bo-stats-bar {
    background-color: var(--color-white, #ffffff);
    padding-block: 80px;
    padding-inline: var(--gutter); /* resolves to 60px at ≥1200px */
}

.bo-stats-bar__inner {
    max-width: var(--max-width); /* 1320px */
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 163px;
}

/* ── Individual stat ────────────────────────────────────────────────────────── */
.bo-stats-bar__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Value: Freight Neo Book 40px */
.bo-stats-bar__stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;   /* 40px */
    font-weight: 400;
    line-height: 1;
    color: var(--color-dark, #1c1c1c);
}

/* Label: Geist Light 16px */
.bo-stats-bar__stat-label {
    font-family: var(--font-body);
    font-size: 1rem;     /* 16px */
    font-weight: 300;
    line-height: 1.39;
    color: var(--color-muted, #6b6560);
}

/* ── Mobile — Figma: stats stack vertically, padV:80, padH:16 ──────────────── */
@media (max-width: 639px) {
    .bo-stats-bar {
        padding-block: 80px;
        padding-inline: 16px;
    }

    .bo-stats-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}
