/* Testimonial Widget Styles */
.testimonial-widget-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Ensure Swiper container has proper dimensions */
.testimonial-swiper-mobile,
.testimonial-swiper-desktop {
    width: 100%;
    height: auto;
    min-height: 320px; /* Match the height from default.php */
    position: relative;
}

/* Ensure slides take full width */
.testimonial-swiper-mobile .swiper-slide,
.testimonial-swiper-desktop .swiper-slide {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

/* Pagination styling */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #5b4ae7;
    transform: scale(1.2);
}

/* Ensure images are responsive */
.testimonial-slide-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-swiper-mobile,
    .testimonial-swiper-desktop {
        min-height: 400px; /* Slightly taller on mobile for better touch targets */
    }
    
    .testimonial-slide {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .testimonial-slide-image {
        margin: 0 auto 20px;
    }
}
