.block-slider-testimonial {
    position: relative;
    overflow: hidden;
}

.block-slider-testimonial.full .container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

.block-slider-testimonial .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Image Slider */
.block-slider-testimonial .testimonial-image {
    display: flex;
    justify-content: flex-start;
}

.block-slider-testimonial .image-slider {
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    margin-left: 0;
}

.block-slider-testimonial .image-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.block-slider-testimonial .image-wrapper {
    width: 255px;
    height: 255px;
    border-radius: 50%;
    border: none;
    overflow: hidden;
    margin-bottom: 20px;
}

.block-slider-testimonial .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-slider-testimonial .testimonial-image .name {
    display: block;
    text-align: center;
    width: 255px;
}

/* Right Column - Content */
.block-slider-testimonial .testimonial-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.block-slider-testimonial .title {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.block-slider-testimonial .quote-slider {
    width: 100%;
    overflow: hidden;
}

.block-slider-testimonial .quote-slider .swiper-wrapper {
    width: 100%;
}

.block-slider-testimonial .quote-slider .swiper-slide {
    width: 100%;
    box-sizing: border-box;
}

.block-slider-testimonial .quote {
    display: block;
    margin-bottom: 30px;
}

.block-slider-testimonial .navigation {
    display: flex;
    gap: 15px;
}

.block-slider-testimonial .swiper-prev,
.block-slider-testimonial .swiper-next {
    border: 1px solid var(--color-n-black);
    border-radius: 5px;
    padding: 5px;
    background-color: transparent !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.block-slider-testimonial .swiper-prev:hover,
.block-slider-testimonial .swiper-next:hover {
    background-color: #000 !important;
}

.block-slider-testimonial .swiper-prev:hover svg path,
.block-slider-testimonial .swiper-next:hover svg path {
    fill: #FFF;
}

@media only screen and (max-width: 991px) {
    .block-slider-testimonial .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .block-slider-testimonial .testimonial-image {
        justify-content: flex-start;
    }

    .block-slider-testimonial .image-slider {
        margin-left: auto;
        margin-right: auto;
    }

    .block-slider-testimonial .image-slider .swiper-slide {
        align-items: center;
        text-align: center;
    }

    .block-slider-testimonial .testimonial-content {
        text-align: center;
        align-items: center;
    }

    .block-slider-testimonial .navigation {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .block-slider-testimonial .image-wrapper {
        width: 150px;
        height: 150px;
    }

    .block-slider-testimonial .testimonial-image .name {
        width: 150px;
    }

    .block-slider-testimonial .title {
        margin-bottom: 20px;
    }

    .block-slider-testimonial .quote {
        margin-bottom: 20px;
    }
}
