/**
 * Trusted-Heroes Category-Info – minimalistische Stat-Reihe.
 * Farben erben vom umgebenden Elementor-Container (currentColor),
 * damit es auf hellem wie dunklem Hintergrund funktioniert.
 */

.th-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    color: #fff;
}

.th-stat {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.th-stat-value {
    font-size: 34px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    color: currentColor;
}

.th-stat-label {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.6;
    color: currentColor;
}

@media (max-width: 480px) {
    .th-stats {
        gap: 20px;
    }

    .th-stat-value {
        font-size: 26px;
    }
}
