#reviews {
    background: var(--Primary-100);
}
.reviews-top {
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: center;
}
.reviews {
    width: calc(100% + 60px);
    padding-right: 60px;
}
.reviews .swiper-slide {
    width: 530px;
    height: auto;
}
.reviews-item {
    background: var(--Neutral-0);
    padding: 32px;
    gap: 24px;
    height: 100%;
}
.reviews-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews-item-info {
    width: calc(100% - 104px);
}
.reviews-item-info .name {
    margin-bottom: 13px;
    font-weight: 700;
}
.reviews-item-info .name:after {
    content: "";
    width: 130px;
    height: 1px;
    display: block;
    background: var(--Primary-1000);
    margin-top: 13px;
}

@media (max-width: 1439px) {
    .reviews-top {
        margin-bottom: 28px;
    }
}
@media (max-width: 1023px) {
    .reviews-top {
        margin-bottom: 21px;
    }
}
@media (max-width: 767px) {
    .reviews-top {
        margin-bottom: 4.1vw;
    }
    .reviews .swiper-slide {
        width: 89.79vw;
        margin-right: 3.07vw;
    }
    .reviews-item {
        padding: 5.12vw;
        gap: 4.1vw;
    }
    .reviews-item-img {
        width: 15.38vw;
        height: 15.38vw;
    }
    .reviews-item-info {
        width: calc(100% - 15.38vw - 4.1vw);
    }
    .reviews-item-info .name {
        margin-bottom: 2.05vw;
        font-weight: 500;
    }
    .reviews-item-info .name:after {
        margin-top: 2.05vw;
        width: 33.33vw;
        height: 0.25vw;
    }
    .reviews {
        width: calc(100% + 5.12vw);
        padding-right: 2.5vw;
    }
}