/* Estilos base */
.blockcustomeropinions {
    margin-bottom: 15px;
    padding: 0;
    width: 100%;
}

.blockcustomeropinions h4 {
    color: #333;
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 8px 0;
    border: none;
}

.customer-opinions-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.opinion-item {
    width: 100%;
    display: none;
}

.opinion-item.active {
    display: block;
}

.opinion-item img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}

/* Versión móvil - Cambios clave */
@media screen and (max-width: 767px) {
    .customer-opinions-slider {
        min-height: auto !important;
        height: auto !important;
    }
    
    .opinion-item {
        display: none !important;
        position: relative !important;
        float: none !important;
    }
    
    .opinion-item.active {
        display: block !important;
    }
    
    .opinion-item img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}