
.testimonial-wrap {
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
}

.testimonial-content-inner {
    background: var(--bs-body-bg);
    border-radius: var(--bs-border-radius);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.testimonial-image {
    display: flex;
    padding: 50px 0 0 0;
    justify-content: center;
}
.testimonial-image img {
    width: 200px;
    height: auto;
    border-radius: 100%;
    border: solid 1px #fff;
    transition: width 0.3s ease-in-out;
}

h4.testimonial-header {
    color: #fff;
}

.testimonial-text {
    color: #fff;
    text-align: center;
    padding: 50px 30px;
}

.testimonial-linkedin {
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.testimonial-text h2, .testimonial-text h3 {
    color: #fff;
}

/* Slick Center Mode Anpassungen */
.testimonial-inner .slick-slide {
    transform: scale(0.7);
    opacity: 0.7;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.testimonial-inner .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.testimonial-inner .slick-slide.slick-center .testimonial-image img {
    width: 250px;
}

.testimonial-inner .slick-slide:not(.slick-center) .testimonial-image img {
    width: 150px;
}

.testimonial-inner button.slick-arrow {
    position: absolute;
    top: 320px;
    background: none;
    border: 0;
    z-index: 10;

    width: 40px;
    height: 40px;
}
.testimonial-inner button.slick-prev.slick-arrow {
    left: 0;
}
.testimonial-inner button.slick-next.slick-arrow {
    right: 0;
}

.arrow {
    border: solid #FEDA17;
    border-width: 0 10px 10px 0;
    display: inline-block;
    padding: 10px;
}

.right {
    transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .testimonial-inner .slick-slide {
        transform: scale(0.85);
    }

    .testimonial-inner .slick-slide.slick-center {
        transform: scale(1);
    }

    .testimonial-inner .slick-slide.slick-center .testimonial-image img {
        width: 200px;
    }

    .testimonial-inner .slick-slide:not(.slick-center) .testimonial-image img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .testimonial-inner .slick-slide {
        transform: scale(0.9);
    }

    .testimonial-inner .slick-slide.slick-center {
        transform: scale(1);
    }
}