.reviews-v2 > .boxed {
    display: flex;
    justify-content: center;
    padding: 96px 64px 0 64px !important;
}

.reviews-v2 > .boxed > .items {
    width: 100%;
    max-width: 394px;
}

.reviews-v2 .review {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-v2 .review .quote {
    position: relative;
    max-width: fit-content;
    padding: 16px 24px;
    border-radius: 8px;
    background-color: var(--light-blue);
    font-size: 14px;
}

.reviews-v2 .review .quote > .content {
    font-size: 14px;
    font-weight: 330;
    color: #162032;
    line-height: 24px;
}

.reviews-v2 .review .quote::after {
    position: absolute;
    bottom: -16px;
    left: 48px;
    content: url('images/review-quote.png');
}

.reviews-v2 .review .author {
    display: flex;
    padding: 8px 0 0 30px;
    gap: 16px;
}

.reviews-v2 .review .author .info {
    display: flex;
    flex-direction: column;
}

.reviews-v2 .author .info .name {
    font-size: 14px;
    color: #1A2233;
    line-height: 24px;
}

.reviews-v2 .author .info .sub-label {
    font-size: 14px;
    color: #636A75;
    line-height: 24px;
}

.reviews-v2 .author .image img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    object-fit: cover;
}

.reviews-v2 .author .image::after {
    position: absolute;
    bottom: -2px;
    left: 2px;
    z-index: -1;
    width: 48px;
    height: 48px;
    content: '';
    background-image: url('images/image-background.svg');
    background-size: cover;
}

.reviews-v2 .boxed .splide__slide img {
    vertical-align: initial;
}

.reviews-v2 .boxed .items .review .author .image {
    position: relative;
    width: 50px;
    min-width: 50px;
    height: 48px;
}

.reviews-v2 .boxed .items .splide .splide__pagination {
    margin-top: 24px;
    gap: 8px;
}

.reviews-v2 .boxed .items .splide .splide__pagination li {
    padding-left: 0;
}

.reviews-v2 .boxed .items .splide .splide__pagination li button.is-active {
    border: none;
    background: var(--black);
}

.reviews-v2 .boxed .items .splide .splide__pagination li button {
    border: 2px solid #636A75;
    background: transparent;
}

.reviews-v2 .boxed .items .splide .splide__pagination li::before {
    content: none;
}

.reviews-v2 .boxed .items .splide .splide__track .splide__list .splide__slide.review {
    display: flex;
    margin: 0 0 40px 0;
    padding: 0;
}


@media (max-width: 768px) {
    .reviews-v2 .boxed {
        padding: 64px 24px 0 24px !important;
    }

    .reviews-v2 > .boxed > .items {
        max-width: 576px;
    }

    .reviews-v2 .boxed .items .review {
        margin: 0 auto;
    }

    .reviews-v2 .review {
        gap: 4px;
    }

    .reviews-v2 .author .image {
        height: 40px;
    }

    .reviews-v2 .boxed .items .review .author .image {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .reviews-v2 .author .image img {
        width: 40px;
        height: 40px;
    }

    .reviews-v2 .author .image::after {
        width: 40px;
        height: 40px;
    }

    .reviews-v2 .author .info .name,
    .reviews-v2 .author .info .sub-label {
        font-size: 12px;
        line-height: 20px;
    }

    .reviews-v2 .review .author {
        padding-left: 34px;
        gap: 8px;
    }

    .reviews-v2 .boxed .items .splide .splide__pagination li button {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 576px) {
    .reviews-v2 > .boxed > .items {
        max-width: 100%;
    }
}