
.hh-reviews {
    position: relative;
    width: calc(100% - 32px);
    margin: 0 auto;
    box-sizing: border-box;
    background: #fffcf7;
}

.hh-reviews__heading {
    margin: 0 0 10px;
    color: #262626;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.hh-reviews__subheading {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #666;
    text-align: center;
    font-size: 17px;
    line-height: 1.55;
}

.hh-reviews__viewport {
    overflow: hidden;
}

.hh-reviews__track {
    --hh-review-columns: 3;
    --hh-review-gap: 24px;
    display: flex;
    gap: var(--hh-review-gap);
    transition: transform .4s ease;
    will-change: transform;
}

.hh-reviews:not(.hh-reviews--carousel) .hh-reviews__track {
    display: grid;
    grid-template-columns: repeat(var(--hh-review-columns), minmax(0, 1fr));
}

.hh-reviews__card {
    flex: 0 0 calc((100% - ((var(--hh-review-columns) - 1) * var(--hh-review-gap))) / var(--hh-review-columns));
    min-width: 0;
    padding: 28px 30px 26px;
    border: 1px solid #eee8de;
    border-radius: 9px;
    background: #fffcf7;
    text-align: center;
    box-sizing: border-box;
}

.hh-reviews__stars {
    margin-bottom: 15px;
    color: #c99a36;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .12em;
}

.hh-reviews__quote {
    margin: 0;
    color: #4f4f4f;
    font-size: 16px;
    font-style: normal;
    line-height: 1.65;
}

.hh-reviews__customer {
    margin-top: 18px;
}

.hh-reviews__name {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hh-reviews__location {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
    line-height: 1.3;
}

.hh-reviews__arrow {
    position: absolute;
    top: 58%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0 0 3px;
    border: 1px solid #6f7f55;
    border-radius: 7px;
    background: #fffcf7;
    color: #6f7f55;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.hh-reviews__arrow:hover {
    background: #6f7f55;
    color: #fff;
}

.hh-reviews__arrow:disabled {
    opacity: .3;
    cursor: default;
}

.hh-reviews__arrow--prev {
    left: -18px;
}

.hh-reviews__arrow--next {
    right: -18px;
}

@media (max-width: 767px) {
    .hh-reviews {
        width: calc(100% - 20px);
    }

    .hh-reviews__heading {
        font-size: clamp(32px, 10vw, 42px);
    }

    .hh-reviews__subheading {
        margin-bottom: 22px;
        font-size: 16px;
    }

    .hh-reviews__card {
        padding: 24px 22px;
    }

    .hh-reviews__arrow {
        top: auto;
        bottom: -48px;
    }

    .hh-reviews__arrow--prev {
        left: calc(50% - 46px);
    }

    .hh-reviews__arrow--next {
        right: calc(50% - 46px);
    }

    .hh-reviews--carousel {
        margin-bottom: 48px;
    }
}
