.reviews {
    overflow: hidden;
}

.reviews__text {
    line-height: 1.5;
}

.reviews__row {
    overflow: visible;
    position: relative;
}

.reviews__row-gradient {
    content: '';
    background: linear-gradient(90deg, rgba(12, 12, 12, 0) 0%, #0c0c0c 90%);
    width: 428px;
    height: 203px;
    position: absolute;
    top: -10px;
    z-index: 3333;
}

.swiper-wrapper .swiper-slide:last-child {
    position: relative;
}

.reviews__swiper-slide-inner {
    border: 1px solid #ed74ff;
    border-radius: 16px;
    min-height: 185px;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0 0 6px 0 rgba(237, 116, 255, 0.8);
    background: linear-gradient(360deg, rgba(234, 93, 255, 0.15) 0%, rgba(234, 93, 255, 0.05) 100%);
}

.reviews__item-header {
    background: #0c0c0c;
    border: 1px solid #f105ef;
    border-radius: 24px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    margin-bottom: 10px;
}

.reviews__item-photo {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.reviews__item-name {
    padding: 9px 24px 9px 10px;
}

.reviews__item-text {
    font-style: italic;
}

.reviews__bottom-text {
    max-width: 664px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reviews__swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid white;
    margin: 0!important;
    opacity: unset;
}

.swiper-pagination-bullet-active {
    border: 0;
    width: 13px;
    height: 13px;
    background: center / contain no-repeat url("/wp-content/uploads/2025/02/sliding-dots.svg");
}


@media screen and (min-width: 992px) {
    .reviews__text {
        margin-bottom: 40px;
    }

    .reviews__row {
        margin-bottom: 40px;
    }

    .reviews__swiper-pagination {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991.98px) {
    .reviews__text {
        margin-bottom: 20px;
    }

    .reviews__row {
        margin-bottom: 12px;
    }

    .reviews__swiper-pagination {
        margin-bottom: 20px;
    }

    .reviews__row-gradient {
        width: 60px;
    }
}