/* Left Image Panel */
.testimonial-images {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.testimonial-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-images img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Right Panel */
.testimonial-items {
    position: relative;
    min-height: 220px;
    /* so it doesn’t jump when switching */
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-item p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.testimonial-controls button {
    cursor: pointer;
    transition: opacity 0.3s;
}

.testimonial-controls button:hover {
    opacity: 0.7;
}