/* .reviews-text {
    width: 750px;
    padding: 30px 40px;
    background-color: var(--background);
    min-height: 500px;
}
.reviews-image {
    min-height: 500px;
    position: relative;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews-text__top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.reviews__name {
    font-size: var(--font-size-16-20);
    font-weight: 700;
    line-height: 120%;
    color: var(--black);
}
.reviews__date {
    font-weight: 500;
    font-size: var(--font-size-14);
    color: var(--stoke-2);
    line-height: 120%;
}
.reviews-text__text--wrapper {
    margin-bottom: 35px;
}
.reviews-text__text p {
    font-size: var(--font-size-14-16);
    color: var(--txt);
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px;
}
.reviews-text__text p:empty {
    display: none;
}
.reviews-text__text.hide {
    -webkit-line-clamp: 8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reviews-text-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.reviews-text-gallery {
    display: flex;
    gap: 10px;
}
.reviews-text-gallery__image--wrapper {
    max-width: 150px;
    max-height: 100px;
    width: 100%;
    height: 100%;
}
.reviews-text-gallery__image--wrapper:hover .reviews-text-gallery__image {
    transform: scale(1.2);
}
.reviews-image__date {
    position: absolute;
    padding: 10px 15px;
    background-color: var(--white);
    right: 15px;
    top: 15px;
    z-index: 3;
}
.reviews-image--wrapper {
    max-width: 360px;
    max-height: 450px;
    margin-bottom: 20px;
}
.reviews-image:hover .reviews-image__image {
    transform: scale(1.2);
}
.reviews-image__image {
    width: 100%;
    height: 100%;
    transition: all .3s;
}
#reviews-block .btn  {
    max-width: 288px;
    width: 100%;
}
@media (max-width: 1570px) {
    .reviews-text,
    .reviews-image {
        width: 100%;
    }
    .reviews-image--wrapper {
        max-width: 100%;
    }
    .reviews-text__text.hide {
        -webkit-line-clamp: 12;
    }
    .reviews-text {
        padding: 20px;
    }
    .reviews-image--wrapper {
        max-height: 510px;
    }
}
@media (max-width: 1200px) {
    .reviews-text {
        min-height: 490px;
    }
    .reviews-image {
        min-height: 490px;
    }
    .reviews-image--wrapper {
        max-width: 500px;
    }
}
@media(max-width: 1024px) {
    .reviews-text__text.hide {
        -webkit-line-clamp: 10;
    }
    .reviews-image--wrapper {
        max-height: 450px;
    }
}
@media (max-width: 768px) {
    .reviews-image--wrapper {
        max-width: 100%;
    }
    .reviews-text__text.hide {
        -webkit-line-clamp: 11;
    }
    .reviews-text {
        min-height: 500px;
    }
    .reviews-image {
        min-height: 500px;
    }
    .reviews-image--wrapper {
        max-width: 100%;
        height: 100%;
        max-height: 480px;
    }
}
@media(max-width: 500px) {
    #reviews-block .btn {
        max-width: 100%;
    }
} */