#testimonial-rotator {
    position: relative;
    text-align: center;
    height: 120px; /* fixed height */
    overflow: hidden;
}

/* All items stacked on top of each other */
#testimonial-rotator .testimonial-item {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* CRITICAL: makes each item fill the container */
    opacity: 0;
    transition: opacity 2s ease;
    padding: 0 20px;

    display: flex;
    justify-content: center;     /* vertical centering */
    align-items: center;         /* horizontal centering */
    text-align: center;
    padding: 0 20px;
}
#testimonial-rotator .testimonial-content * {
    margin: 0 !important;
    padding: 0 !important;
}
.testimonial-content blockquote {
    margin-bottom: 10px !important;
}

/* Visible item */
#testimonial-rotator .testimonial-item.active {
    opacity: 1;
}

/* Clamp only the text */
#testimonial-rotator .testimonial-item blockquote {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 6.5em; /* fits 4 lines at 1.5 line-height */
}

.testimonial-item blockquote {
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-author {
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}
