/**
 * CEM Stats — Counter styles.
 */

.cem-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 32px auto;
}

.cem-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
}

.cem-counter-icon {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: #00a499;
    margin-bottom: 12px;
}

.cem-counter-value {
    font-size: 42px;
    font-weight: 800;
    color: #1d2327;
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.cem-counter-label {
    font-size: 14px;
    font-weight: 600;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
