.swiper.testimonial-swiper {
    --swiper-theme-color: var(--primary);
    --swiper-pagination-bottom: -2px;
    width: 280px;
    height: 100%;
    padding: 1rem;
}

.testimonial-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.testimonial-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    display: none;
}

.testimonial-swiper .testimonial-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    font-style: italic;
    color: #2d3748;
    margin: 0 0 1.5rem 0;
    position: relative;
}


.testimonial-swiper .testimonial-author-info {
    margin-block: 1rem;
}

.testimonial-swiper .testimonial-author {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-swiper .testimonial-subtitle {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 400;
}


@media(min-width: 768px) {

    .testimonial-swiper .swiper-button-prev,
    .testimonial-swiper .swiper-button-next {
        display: flex;
    }

    .swiper.testimonial-swiper {
        width: 700px;
    }

    .testimonial-swiper .swiper-slide {
        text-align: left;
    }

    .testimonial-swiper .testimonial-quote,
    .testimonial-swiper .testimonial-author-info {
        padding-inline: var(--px-20);
    }
}


@media(min-width: 1200px) {
    .swiper.testimonial-swiper {
        width: 1100px;
    }
}