.reviews {
    overflow: hidden;
}
.reviews__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.reviews__titles {
    display: flex;
    flex-direction: column;
}
.reviews__title {
    margin-bottom: 16px;
}
.reviews__wrapper {
    transition-timing-function: linear !important;
}
.reviews__slider {
    margin-top: 80px;
}
.reviews-slider__slide {
    width: 500px;
}
.reviews-slider {
    overflow: visible;
}
.review-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    background: rgba(6, 3, 12, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.review-card__head {
    display: flex;
    justify-content: space-between;
}
.review-card__user {
    display: flex;
    gap: 16px;
    align-items: center;
}
.review-card__img {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
}
.review-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-card__meta {
    display: flex;
    flex-direction: column;
}
.review-card__name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18px;
    line-height: 1.36;
}
.review-card__date {
    color: var(--grey);
    position: relative;
    padding-left: 24px;
    line-height: 1.26;
    font-size: var(--font-body-small);
    letter-spacing: var(--letter-spacing-normal);
}
.review-card__date::after {
    content: "";
    background-image: url("/wp-content/uploads/2024/01/date.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
}
.review-card__rating {
    display: flex;
    gap: 8px;
}
.review-card__rating img {
    width: 24px;
    height: 24px;
}
.review-card__content {
    font-size: var(--font-body-small);
    line-height: 1.26;
    letter-spacing: var(--letter-spacing-normal);
}
.reviews-navigation {
    margin-top: 40px;
}
@media (max-width: 1170px) {
    .reviews__heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .reviews__slider {
        margin-top: 40px;
    }
}
@media (max-width: 478px) {
    .review-card__head {
        flex-direction: column;
        gap: 9px;
    }
    .review-card__user {
        flex-direction: column;
        align-items: flex-start;
    }
}
