.small-review-slider {
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding: 14px 64px 14px 14px;
    border: 1px solid var(--border);
    background: var(--background-soft);
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.small-review-slider__viewport {
    position: relative;
}

.small-review {
    display: none;
}

.small-review.is-active {
    display: block;
    animation: smallReviewFade .25s ease;
}

.small-review__top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}

.small-review__avatar {
    display: block;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f3f4;
}

.small-review__author {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.small-review__author strong {
    display: flex;
    gap: 4px;
    color: #172d3a;
    font-size: 15px;
    font-weight: 700;
}

.small-review__author span {
    display: flex;
    gap: 4px;
    margin-top: 2px;
    color: #7b858b;
    font-size: 13px;
}

.small-review__content {
    color: #263a45;
    font-size: 14px;
}

.small-review-slider__nav {
    position: absolute;
    top: 50%;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    transform: translateY(-50%);
}

.small-review-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 34px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #244456;
    cursor: pointer;
    transition:
        background-color .18s ease,
        opacity .18s ease;
}

.small-review-slider__arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes smallReviewFade {
    from {
        opacity: 0;
        transform: translateX(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .small-review-slider {
        padding: 15px 70px 15px 15px;
    }

    .small-review__avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .small-review__author strong {
        font-size: 14px;
    }

    .small-review__author span {
        font-size: 12px;
    }

    .small-review-slider__nav {
        right: 10px;
        gap: 3px;
    }

    .small-review-slider__arrow {
        width: 27px;
    }
}

@media (min-width: 1024px) {
    .small-review-slider {
        padding: 16px 76px 16px 16px;
    }

    .small-review__top {
        gap: 10px;
        margin-bottom: 9px;
    }

    .small-review__author strong {
        font-size: 15px;
    }

    .small-review-slider__nav {
        right: 14px;
        gap: 4px;
    }

    .small-review-slider__arrow {
        width: 28px;
    }

    .small-review-slider__arrow:hover {
        background: #f2f5f6;
    }

    .small-review-slider__arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 1200px) {
    .small-review-slider {
        padding: 16px 78px 16px 16px;
    }
}