.testimonial-slider {
    position: relative;
    overflow: hidden; /* verhindert, dass Slides außerhalb sichtbar sind */
    width: 100%; /* oder feste Breite z.B. 600px */
    margin: 0 auto;
    text-align: center;
}

.testimonial-slides-wrapper {
    display: flex; /* Slides nebeneinander */
    transition: transform 0.5s ease-in-out; /* sanftes Gleiten */
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%; /* jede Slide nimmt 100% des Containers ein */
    box-sizing: border-box;
    padding:0 10%;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-image {
    max-width: 100px;
    border-radius: 40% 70% 70% 40% / 35% 65% 35% 65%;
    margin-bottom: 20px;
    /*aspect-ratio: 1/1;*/
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin: 5px 0;
}

.testimonial-text {
    font-style: italic;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #333D47;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 40px;
    background: transparent;
}

.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
@media screen and (max-width: 600px) { 
  .testimonial-prev { left: -5%; }
  .testimonial-next { right: -5%; }
}

.testimonial-dots {
    text-align: center;
    margin-top: 10px;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: #333;
}
