/*
 * Testimonial component styles (slider slideshow + Kundenstimmen list + shared elements)
 *
 * Loaded by both:
 *   - abc_testimonials/Templates/Testimonial/Slider.html (CType abctestimonials_slider)
 *   - abc_testimonials/Templates/Testimonial/List.html   (CType abctestimonials_list)
 *
 * Used on (as of 2026-05-29):
 *   abctestimonials_slider: /, /leasing, /unternehmen/kundenstimmen,
 *                           /wer-gewinnt-verleast (+ /kaffeemaschinen, /kassensysteme, /vending-automaten)
 *   abctestimonials_list:   /leasing/fitness
 *
 * Source: .testimonial-slideshow rules ported from frontend/scss/includes/molecules/_slideshow-testimonials.scss;
 *         .testimonial-list + .testimonial__* rules extracted from frontend/scss/includes/elements/_testimonials.scss
 */

/* --- Slider slideshow layout --- */
.testimonial-slideshow {
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .testimonial-slideshow {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.testimonial-slideshow .testimonial {
    margin-bottom: 2rem;
    background-image: url("../../../Icons/quote.svg");
    background-size: 2.5rem auto;
    background-repeat: no-repeat;
    background-position: 1rem 1rem;
    padding-left: 5.5rem;
}

@media (min-width: 768px) {
    .testimonial-slideshow .testimonial {
        padding-right: 3rem;
        background-size: 3.5rem auto;
    }
}

/* --- List layout --- */
.testimonial-list {
    margin-top: 3.125rem;
}

@media (min-width: 768px) {
    .testimonial-list {
        margin-top: 4.6875rem;
    }
}

@media (min-width: 992px) {
    .testimonial-list {
        margin-top: 6.25rem;
    }
}

.testimonial-list .testimonial {
    margin-bottom: 2rem;
    background-image: url("../../../Icons/quote.svg");
    background-size: 2.5rem auto;
    background-repeat: no-repeat;
    background-position: 1rem 1rem;
    padding-left: 5.5rem;
}

@media (min-width: 768px) {
    .testimonial-list .testimonial {
        margin-bottom: 3rem;
        padding-right: 3rem;
        background-size: 3.5rem auto;
    }
}

/* --- Shared testimonial elements (both slider and list) --- */
.testimonial__quote {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial__quote {
        font-size: 1.5rem;
    }
}

.testimonial__author {
    color: var(--abc-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial__company {
    font-size: 0.875rem;
}

.testimonial__link {
    margin-top: 2rem;
}

.testimonial__all {
    text-align: center;
}
