.personal-reviews__slider {
    &:hover{
        .reviews-slider__prev{
            opacity: 1;
        }

        .reviews-slider__next{
            opacity: 1;
        }
    }

    .swiper-slide {
        width: 30%;
        min-height: 232px;
        height: auto;
        border-radius: 16px;
        padding: 16px 20px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        gap: 16px;
        background: #F7F5F6;

        .swiper-slide__text {
            font-family: "Montserrat", Arial;
            font-weight: 500;
            font-size: 15px;
            line-height: 130%;
            color: #2E2D2C;

            .swiper-slide__text-content {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 6;
                -webkit-box-orient: vertical;
            }
        }

        .swiper-slide__position {
            .swiper-slide__position-group {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .swiper-slide__position-image {
                flex: 0 0 48px;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .swiper-slide__position-info {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .swiper-slide__position-name {
                font-family: "Montserrat", Arial;
                font-weight: 600;
                font-size: 15px;
                line-height: 120%;
                color: #2E2D2C;
            }

            .swiper-slide__position-position {
                font-family: "Montserrat", Arial;
                font-weight: 500;
                font-size: 14px;
                line-height: 120%;
                color: #989798;
            }
        }
    }

    .personal-reviews__slider button {
        transition: .3s;
    }

    .personal-reviews__slider:hover button {
        opacity: 1;
    }

    .reviews-slider__prev {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-filter: drop-shadow(0 13px 32px rgba(0, 0, 0, .08)) drop-shadow(0 1.6278px 8.13901px rgba(0, 0, 0, .035));
        filter: drop-shadow(0 13px 32px rgba(0, 0, 0, .08)) drop-shadow(0 1.6278px 8.13901px rgba(0, 0, 0, .035));
        height: 56rem;
        justify-content: center;
        left: -24rem;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 56rem;
        z-index: 5;
        transition: .3s;
    }

    .reviews-slider__next {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-filter: drop-shadow(0 13px 32px rgba(0, 0, 0, .08)) drop-shadow(0 1.6278px 8.13901px rgba(0, 0, 0, .035));
        filter: drop-shadow(0 13px 32px rgba(0, 0, 0, .08)) drop-shadow(0 1.6278px 8.13901px rgba(0, 0, 0, .035));
        height: 56rem;
        justify-content: center;
        position: absolute;
        right: -24rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 56rem;
        z-index: 5;
        transition: .3s;
    }
}

@media (min-width: 768px) and (max-width: 1440px) {
    .personal-reviews__slider {
        .swiper-slide__text-content {
            font-size: 13px;
        }

        .swiper-slide {
            padding: 14px 16px;
        }
    }
}

@media (max-width: 768px) {
    .personal-reviews__slider {
        .swiper-slide__text {
            font-size: 12px !important;
        }

        .swiper-slide__text-content {
            font-size: 12px;
        }

        .swiper-slide {
            padding: 14px 16px;
            min-height: 200px;
        }

        .swiper-slide__position-image {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
        }
    }
}
