    /* =========================================
   Reviews
========================================= */

.reviews-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--bg);
}

.reviews-header {
    text-align: center;
    margin-bottom: 45px;
}

.reviews-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.reviews-tag__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.reviews-heading h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
}

.reviews-heading__line {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.reviews-heading__line span {
    display: block;
    width: 45px;
    height: 1px;
    background: currentColor;
}


/* =========================================
   Slider
========================================= */

.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.review-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}


/* =========================================
   Review Card
========================================= */

.review-card {
    max-width: 760px;
    margin: 0 auto;
}

.review-card__content {
    background: #fff;
    padding: 50px 60px 45px;
    text-align: center;
    box-sizing: border-box;
}

.review-card__text {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1.7;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
}

.review-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__author {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}


/* =========================================
   Navigation
========================================= */

.reviews-nav {
    position: absolute;
    top: 50%;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid currentColor;
    border-radius: 50%;

    background: transparent;
    color: inherit;

    cursor: pointer;

    transform: translateY(-50%);
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.reviews-nav:hover {
    background: currentColor;
    color: #fff;
}

.reviews-nav--prev {
    left: 0;
}

.reviews-nav--next {
    right: 0;
}

.reviews-nav span {
    font-size: 18px;
    line-height: 1;
}


/* =========================================
   Dots
========================================= */

.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.3;
    cursor: pointer;
    transition:
        width 0.3s ease,
        opacity 0.3s ease;
}

.reviews-dot.is-active {
    width: 24px;
    border-radius: 10px;
    opacity: 1;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

    .reviews-section {
        padding: 65px 0;
    }

    .reviews-heading h2 {
        font-size: 34px;
    }

    .review-card__content {
        padding: 40px 45px;
    }

    .reviews-nav--prev {
        left: 5px;
    }

    .reviews-nav--next {
        right: 5px;
    }

}


@media (max-width: 575px) {

    .reviews-section {
        padding: 50px 0;
    }

    .reviews-heading h2 {
        font-size: 30px;
    }

    .review-card__content {
        padding: 35px 25px;
    }

    .review-card__text {
        font-size: 17px;
        line-height: 1.6;
    }

    .reviews-nav {
        width: 38px;
        height: 38px;
    }

}