.trs-slider-wrap {
    width: 100%;
    margin: 0;
    position: relative;
}

.trs-swiper {
    width: 100%;
    padding: 10px 36px;
}

.trs-swiper .swiper-slide {
    height: auto;
}

.trs-review-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.trs-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.trs-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 56px;
}

.trs-review-author {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.trs-review-date {
    font-size: 13px;
    color: #6c757d;
    margin-top: 4px;
}

.trs-review-rating {
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 2px;
}

.trs-review-title {
    font-size: 19px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
}

.trs-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
}

.trs-review-extra {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f3f5;
}

.trs-review-tripinfo,
.trs-review-product {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}

.trs-review-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
}

.trs-review-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.trs-swiper .swiper-button-prev,
.trs-swiper .swiper-button-next {
    color: #212529;
    width: 34px;
    height: 34px;
    margin-top: -17px;
}

.trs-swiper .swiper-button-prev:after,
.trs-swiper .swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .trs-swiper {
        padding: 10px 28px;
    }

    .trs-review-card {
        min-height: auto;
        padding: 20px;
    }

    .trs-review-title,
    .trs-review-text {
        min-height: auto;
        height: auto;
        max-height: none;
    }
}