@media (max-width: 992px) {
    .testimonial-card {
        padding: var(--spacing-4);
    }
    
    .testimonial-inner {
        padding: var(--spacing-6);
    }
    
    .decoration-circle {
        width: 100px;
        height: 100px;
        bottom: -50px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: var(--text-3xl);
    }
    
    .testimonial-quote p {
        font-size: var(--text-base);
    }
    
    .testimonial-quote::before {
        font-size: 100px;
        top: -40px;
    }
    
    .testimonial-card.active .testimonial-inner:hover {
        transform: translateY(-5px);
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: var(--text-base);
    }
    
    .testimonial-inner::after {
        animation-duration: 7s;
    }
}

@media (max-width: 576px) {
    .testimonials-subtitle::before,
    .testimonials-subtitle::after {
        width: 20px;
    }
    
    .testimonials-subtitle::before {
        left: -25px;
    }
    
    .testimonials-subtitle::after {
        right: -25px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: var(--spacing-3);
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-inner {
        padding: var(--spacing-4);
    }
    
    .decoration-dots {
        display: none;
    }
}