/* Testimonial Brand Image Styles */
.wpo-testimonial-brand-img {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wpo-testimonial-brand-img img {
    transition: transform 0.3s ease;
}

.wpo-testimonial-text-btm {
    flex-direction: column;
    text-align: center;
}

.wpo-testimonial-text-btm-info {
    margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .wpo-testimonial-brand-img img {
        width: 140px !important;
        height: 80px !important;
    }
}

@media (max-width: 767px) {
    .wpo-testimonial-brand-img img {
        width: 120px !important;
        height: 70px !important;
    }
}

@media (max-width: 480px) {
    .wpo-testimonial-brand-img img {
        width: 100px !important;
        height: 60px !important;
    }
}