/* ===================================================================
 * Testimonials Section - Mobile Responsive Fix
 * Fixes layout issues on mobile devices
 * ================================================================ */

@media (max-width: 768px) {
    /* Fix testimonial card layout on mobile - 50% reduced height */
    #testimonials .testimonial-card {
        flex-direction: column !important;
        min-width: 300px !important;
        max-width: 300px !important;
        padding: 1rem !important;
        min-height: auto !important;
    }
    
    /* Stack image and text vertically - smaller image */
    #testimonials .testimonial-image {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 0.75rem !important;
        flex-shrink: 0;
    }
    
    #testimonials .testimonial-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 50%;
    }
    
    /* Center text content */
    #testimonials .testimonial-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    #testimonials .testimonial-name {
        font-size: 0.95rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    #testimonials .testimonial-role {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    #testimonials .testimonial-quote {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* Adjust quote icon */
    #testimonials .testimonial-quote-icon {
        top: 0.75rem !important;
        right: 0.75rem !important;
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    /* Smaller cards on very small screens */
    #testimonials .testimonial-card {
        min-width: 280px !important;
        max-width: 280px !important;
        padding: 0.875rem !important;
    }
    
    #testimonials .testimonial-image {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.625rem !important;
    }
    
    #testimonials .testimonial-name {
        font-size: 0.9rem !important;
    }
    
    #testimonials .testimonial-role {
        font-size: 0.7rem !important;
    }
    
    #testimonials .testimonial-quote {
        font-size: 0.8rem !important;
    }
    
    #testimonials .testimonial-quote-icon {
        font-size: 1.5rem !important;
    }
}
