.rt-testimonial-wrapper {
    padding: 20px 40px;
    position: relative;
}

.rtSwiper {
    padding: 20px 10px 60px;
}

/* Ensure all slides have equal height */
.rtSwiper .swiper-wrapper {
    align-items: stretch;
}

.rtSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Card Layout */
.rt-card {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

/* Quotes */
.rt-quote {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    margin-bottom: 10px;
    align-self: flex-start;
}

.rt-quote-right {
    transform: rotateY(180deg);
    margin-top: 10px;
    margin-bottom: 0;
    align-self: flex-end;
}

/* Testimonial Content */
.rt-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 30px;
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.rt-content p {
    margin: 0;
}

/* User Section */
.rt-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.rt-user img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rt-user h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.rt-user span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #777;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    width: 45px;
    height: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

/* Large Laptop */
@media (max-width: 1366px) {
    .rt-card {
        min-height: 390px;
        padding: 40px 30px;
    }

    .rt-content {
        -webkit-line-clamp: 7;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .rt-testimonial-wrapper {
        padding: 20px;
    }

    .rt-card {
        min-height: 360px;
        padding: 35px 25px;
    }

    .rt-content {
        font-size: 14px;
        line-height: 1.8;
        -webkit-line-clamp: 6;
    }

    .rt-quote {
        font-size: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .rt-testimonial-wrapper {
        padding: 15px;
    }

    .rt-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .rt-content {
        font-size: 14px;
        line-height: 1.7;
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }

    .rt-user h4 {
        font-size: 14px;
    }

    .rt-user span {
        font-size: 13px;
    }

    .rt-quote {
        font-size: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .rt-card {
        padding: 25px 18px;
    }

    .rt-user {
        gap: 10px;
    }

    .rt-user img {
        width: 50px !important;
        height: 50px !important;
    }

    .rt-content {
        font-size: 13px;
    }
}