/* ═══════════════════════════════════════════════════
   Review Stats — Inline stat items with dividers
   ═══════════════════════════════════════════════════ */

.c-review-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.c-review-stats__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.c-review-stats__value-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.c-review-stats__icon {
    line-height: 0;
}

.c-review-stats__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.c-review-stats__value {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.c-review-stats__label {
    margin-top: 4px;
}

.c-review-stats__divider {
    width: 1px;
    height: 40px;
    background: currentColor;
    opacity: 0.15;
    flex-shrink: 0;
}

/* ─── Responsive ─── */

@media (max-width: 767px) {
    .c-review-stats {
        gap: 16px;
    }

    .c-review-stats__value {
        font-size: 20px;
    }
}
