/**
 * 08-trustindex-override.css
 * Oculta el contador de reseñas del widget TrustIndex,
 * deja visible las estrellas y el logo de Google.
 */

/* Ocultar 'EXCELENTE' + 'A base de 156 reseñas' (texto numérico) */
.ti-widget .ti-rating-text {
    display: none !important;
}

/* Después del header del widget, mostrar nuestro texto compliance */
.ti-widget .ti-header-grid .ti-fade-container::after {
    content: 'Reseñas publicadas en Google';
    display: block !important;
    font-family: 'Alexandria', 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2A3124 !important;
    letter-spacing: 0.04em !important;
    margin: 8px 0 4px 0 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .ti-widget .ti-header-grid .ti-fade-container::after {
        font-size: 12px !important;
    }
}
