.b-reviews {
    display: flex;
}

.b-reviews__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px;
}

.b-reviews-left {
    max-width: 280px;
    flex: 0 0 280px;
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(116, 118, 122, 0.3);
}

.b-review-video {
    position: relative;
    max-height: 467px;
}

.b-review-video video {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 16px;
}

.play-review {
    display: flex;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.b-reviews-right {
    max-width: 823px;
    overflow: hidden;
}

.b-review-gallery:not(.swiper-initialized) .b-review-gallery__item {
    margin-right: 16px;
}

.b-review-gallery__item.swiper-slide {
    position: relative;
    height: 468px;
    width: 263px;
    padding: 16px;
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.open-gallery {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .b-reviews {
        display: block;
    }

    .b-reviews-left {
        max-width: 100%;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 24px;
    }

    .b-review-gallery__item.swiper-slide {
        height: 140px;
        width: 96px;
        padding: 10px 6px;
        border-radius: 4px;
    }
}