.miko-double-swiper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
}
.miko-double-swiper::after{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0F3D3E 0%, rgba(183, 197, 197, 0) 28%, rgba(183, 197, 197, 0) 71%, #0F3D3E 100%);
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.testimonial-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: fit-content!important;
}
.testimonial-content {
    position: relative;
}
.testimonial-content .testimonial-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.author-name {
    font-weight: 600;
    margin: 0;
}
.author-position {
    color: #9FAE2E;
    font-size: 14px;
}
.testimonial-swiper-left, .testimonial-swiper-right {
    height: 540px;
}
@media screen and (max-width: 1024px) {
    .testimonial-item{
        padding: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .testimonial-item{
        height: auto!important;
    }
}
