.product-reviews__slider {
    width: calc(100% + 40px);
    padding-right: 20px;
    margin-left: -20px;
    padding-left: 20px;
}
@media (max-width: 380px) {
    .product-reviews__slider .stars-review {
        font-size: 18px;
    }
}

.product-reviews__slider .swiper-slide {
    height: auto;
}

.product-review__slide {
    max-width: 475px;
    width: fit-content;
}

.product-review {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 15px;
    padding: 16px 20px;
    /*min-height: 310px;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}


.product-review__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-review__logo {
    max-width: 85px;
}
@media (max-width: 460px) {
    .product-review__logo {
        max-width: 72px;
    }
}

.product-review__stars {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.product-review__star + .profile-review__star {
    margin-right: 4px;
}

.product-review__title {
    padding-top: 20px;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-review__text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    position: relative;
}

.product-review__text {
    padding-top: 9px;
    font-size: 14px;
    line-height: 20px;
    color: #3E3E3E;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
    position: relative;
}
.product-review__text--gradient:before {
    content:"";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 16px;
    /*background: linear-gradient(to left, #fff, transparent);*/
    /*background: linear-gradient(315deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));;*/
    background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2))

}

.product-review__name {
    display: flex;
    flex-direction: row;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.product-review__date {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: right;
    color: #000000;
    opacity: 0.45;
}

.product-review__watch-more {
    outline: none;
    background: inherit;
    border: none;
    color: var(--orange);
    font-weight: 400;
    cursor: pointer;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    background: var(--white);
    right: 0;
}

.product-reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .product-reviews__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.product-reviews__grid .product-review {
    width: 100%;
    max-width: 100%;
}


