/**
 * Testimonials Component Styles
 * 
 * @package HaskoReinigung
 */

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-quote-icon .quote-icon-path {
    fill: var(--color-primary);
    fill: var(--color-primary-dark);
    fill: #f6ebbc;
    transition: fill 0.3s ease;
}

.testimonial-card:hover .quote-icon-path {
    fill: #0A1115;
}
