.reviews {
    position: relative;
    padding: var(--block-padding) 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    background-color: var(--color-levander);
}

    .reviews__left,
    .reviews__right {
        position: absolute;
        top: 50%;
        transform: translateY(50%);
        z-index: 1;
        width: 72px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
                    0 2px 6px rgba(0, 0, 0, 0.08);
        font-size: 24px;
        color: var(--color-dark);
        transition: var(--transition);
        cursor: pointer;
    }

    .reviews__left:hover,
    .reviews__right:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
                    0 4px 10px rgba(0, 0, 0, 0.12);
        transform: translateY(50%) scale(1.05);
    }

    .reviews__left {
        left: calc(((100% - var(--inner-width)) / 2) - 36px);
    }

    .reviews__right {
        right: calc(((100% - var(--inner-width)) / 2) - 36px);
    }

    .reviews__inner {
        padding-right: 0;
        width: var(--inner-width);
        display: flex;
        gap: 48px;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .reviews__inner::-webkit-scrollbar {
        display: none;
    }

        .reviews__item {
            position: relative;
            padding: 48px 24px;
            width: calc((100% - 96px) / 3);
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            align-items: center;
            background-color: #fff;
            border-radius: 12px 80px 12px 12px;
            box-shadow: 0 4px 25px 0 rgba(183, 183, 183, 0.15);
            scroll-snap-align: start;
        }

        .reviews__inner, .reviews__item {
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
        }

            .reviews__item > i {
                position: absolute;
                top: 24px;
                left: 24px;
                font-size: 20px;
                color: #1877F2;

            }

            .reviews__item-picture {
                margin-bottom: 32px;
                width: 128px;
                height: 128px;
                border-radius: 50%;
                overflow: hidden;
            }

                .reviews__item-picture > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .reviews__item-author {
                    margin-bottom: 8px;
                    font-size: 16px;
                    font-weight: 300;
                }

                .reviews__item-rating {
                    display: flex;
                    gap: 4px;
                }

                    .reviews__item-rating > i {
                        font-size: 16px;
                        color: #FF8A00;
                    }

            .reviews__item-content {
                margin-top: 32px;
                font-size: 16px;
                font-weight: 300;
                text-align: center;
            }

@media screen and (max-width: 1023px) {
    .reviews__inner {
        gap: 24px;
        align-items: center;
    }

        .reviews__left,
        .reviews__right {
            display: none;
        }

        .reviews__item {
            padding: 32px 16px;
            width: 80%;
            height: fit-content;
        }

            .reviews__item-picture {
                margin-bottom: 24px;
                width: 72px;
                height: 72px;
            }

            .reviews__item-content {
                margin-top: 24px;
                font-size: 14px;
            }
}