.reviews__container {
    display: grid;
    grid-template-columns: calc(30% - (var(--spacing-md) / 2)) calc(70% - (var(--spacing-md) / 2));
    gap: var(--spacing-md);
}
.reviews__right {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.reviews__header-pagination-wrapper .global__header-wrapper {
    margin-bottom: 0;
}

.reviews__header-pagination-wrapper {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.reviews__navigation > div {
    width: 45px;
    height: 45px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews span.swiper-pagination-bullet::after {
    border-bottom-color: var(--fade-background);
}

.reviews__navigation {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
}

.reviews__swiper-container {
    position: relative;
}

.swiper-button-disabled {
    opacity: 0.3;
}

.reviews__pagination {
    display: flex;
    row-gap: 10px;
    justify-content: end;
}

.reviews-bottom-pagination {
    display: none;
}

.reviews__navigation > div:hover {
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .reviews-bottom-pagination {
        display: block;
        margin-top: 10px;
        width: 100%;
    }
    
    .reviews-bottom-pagination span.swiper-pagination-bullet {
        width: 100%;
        flex: 1;
    }
    
    .reviews-top-pagination {
        display: none;
    }
    
    .reviews__pagination_bottom {
        display: flex;
        gap: 5px;
    }
}

.reviews__pagination_bottom span.swiper-pagination-bullet {
    margin: 0 !important;
}

.reviews-swiper-button-prev {
    display: none !important;
}

.reviews__review {
    padding: 20px;
    background: var(--fade-background);
    height: 100%;
}

@media screen and (max-width: 992px) {
    .reviews__container {
        display: flex;
        flex-direction: column-reverse;
    }
    .reviews__left {
        margin-left: calc(-1 * var(--padding));
        margin-right: calc(-1 * var(--padding));
    }
    .reviews__left {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 20px;
        min-height: 400px;
    }
    .reviews__left::before {
        border-width: 0 0 70px 70px !important;
        border-color: transparent var(--background-light) !important;
        left: -2px;
        top: -2px !important;
        right: unset !important;
    }
    .reviews__left::after {
        border-width: 0 0 70px 70px !important;
    }
}

.reviews__stars {
    margin-bottom: 10px;
}

.reviews__review-content {
    color: black;
    font-size: var(--font-size-small);
    margin-bottom: 15px;
}

.reviews__review-client {
    color: black;
    font-size: var(--font-size-small);
    font-weight: 600;
}

.reviews__left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--color);
    padding: 20px;
    min-height: 400px;
    margin-left: calc(-1 * max(var(--padding), calc((100vw - var(--width)) / 2)));
    padding-left: max(var(--padding), calc((100vw - var(--width)) / 2));
}


.reviews__swiper-container .swiper-slide {
    align-self: stretch !important;
    height: auto;
}
.reviews__swiper-container .swiper-wrapper {
    align-items: stretch;
}

.reviews__left::before {
    content: '';
    position: absolute;
    width: 0;
    z-index: 5;
    height: 0;
    border-style: solid;
    display: block;
    position: absolute;
    top: -2px;
    right: -2px;
    border-width: 100px 0 0 100px;
    border-color: var(--background-light) transparent transparent transparent;
}
.reviews__left::after {
    content: '';
    position: absolute;
    width: 0;
    z-index: 5;
    height: 0;
    border-style: solid;
    display: block;
    bottom: -2px;
    right: -2px;
    border-width: 0 0 100px 100px;
    border-color: transparent transparent var(--background-light) transparent;
}

.reviews__quote {
    color: white;
    font-size: var(--font-size-h4);
    line-height: 120%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reviews__quote p {
    display: inline;
}

.quote-sign {
    font-size: 1.5em;
    font-weight: bold;
}

.reviews__stars {
    display: flex;
    height: 25px;
}
.reviews__stars svg {
    height: 100%;
    width: auto;
}
.reviews__header-wrapper.global__header-wrapper::before {
    content: none;
}
.reviews__stars svg {
    color: var(--color);
}