/* Testimonial slider */
.testimonial-slider {
    position: relative;
    text-align: center;
    min-height: 3em;
}

/* Slides - stacked for crossfade */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
}
.testimonial-slide.active {
    position: relative;
    opacity: 1;
}

/* Quote text */
.testimonial-slide .quote-text {
    color: #fff;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    line-height: 1.6;
}

/* Decorative quote marks */
.testimonial-slide .quote-mark {
    color: #fff;
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: bold;
    line-height: 1;
    vertical-align: middle;
}
.testimonial-slide .quote-mark.open {
    margin-right: 0.1em;
}
.testimonial-slide .quote-mark.close {
    margin-left: 0.1em;
}