div.news-list {
    word-wrap: break-word;
}

div.news-list img.preview_picture {
    float: left;
    margin: 0 4px 6px 0;
}

.news-date-time {
    color: #486DAA;
}

.item-rev {
    width: 305px;
    height: 235px !important;
    background-color: #fff;
    border-radius: 30px / 22px;
    padding: 20px 25px 15px;
    position: relative;
    display: block;
}

.item-rev:hover {
    color: #000;
}

.item-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.line-rev-info {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: 83%;
    color: #898989;
}

.line-rev-info a {
    color: #898989;
    display: flex;
    align-items: center;
}

.stars {
    margin-top: -2px;
    display: flex;
}

.leave-where {
    display: flex;
    column-gap: 5px;
}

/* Swiper сам управляет layout (swiper-wrapper + spaceBetween).
   Важно: НЕ ставить width:max-content на контейнер, иначе он раздувается до ширины ленты. */
.review-carousel.swiper {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.review-text {
    font-size: 14px;
    line-height: 17px;
}

.author-name {
    font-weight: 700;
}

.leave-where img {
    width: 11px;
    margin-left: 5px;
}

.review-carousel.swiper .swiper-wrapper {
    width: 100%;
    overflow: visible;
    padding: 10px 0;
}

.review-items {
    overflow: visible;
    padding: 10px 0;
}

.review-carousel:hover {
    animation-play-state: paused;
    /* Остановка анимации при наведении */
}

.leave-where span {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 769px) {
    .item-rev {
        width: 70%;
        height: 206px !important;
        border-radius: 10px;
        padding: 15px;
        position: relative;
        box-shadow: 0px 0px 10px 0px #00000033;
    }

    .content-tab-rev.btn.review-btn.review-btn-mob {
        width: 100%;
        margin-bottom: 10px;
    }

    .stars img {
        width: 10px !important;
        height: 10px !important;
    }

    .author-name {
        font-size: 13px;
    }

    .item-title {
        align-items: center;
        margin-bottom: 0px;
    }

    .review-text {
        font-size: 12px;
        line-height: 10px;
    }

    .line-rev-info {
        flex-direction: column;
    }

    .leave-where {
        font-size: 12px;
        text-transform: lowercase;
    }

    .leave-when {
        font-size: 12px;
        line-height: 7px;
    }

    .leave-where img {
        width: 8px !important;
        height: 8px !important;
    }
}

@media (max-width: 350px) {
    .review-tab .content-tab-rev {
        padding: 10px 10px !important;
    }

}

@keyframes scroll-rev {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}