.testimonialsReview {
    padding: 60px 0 50px;
    /* background: #f4f9ff9e; */
    background: #eaf0f8;
    /* overflow: hidden;
    background: radial-gradient(700px 420px at 15% 38%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%), radial-gradient(800px 480px at 58% 35%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%), radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%), linear-gradient(#ffffff, #ffffff); */
}

.testimonialsReview__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonialsReview h2 {
    margin: 0;
    text-align: center;
    font-family: var(--ff-serif);
    font-size: 45px;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: normal;
    color: #101010;
}

.testimonialsReview__sub {
    color: #444;
    font-size: 16px;
    padding-top: 8px;
}

.testimonialsReview__rating {
    text-align: right;
}

.rating-top {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.rating-text {
    font-weight: 600;
}
.rating-bottom {
    font-size: 14px;
    color: #444;
    padding-top: 36px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
span.trustStartAndIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rating-top {
    position: relative;
    top: 8px;
}
/* CARD */
.testimonialsReview__card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 9%);
    height: 100%;
    max-width: 360px;
    /* margin:0 auto; */
    margin-bottom: 40px;
    max-width: 96%;
}
.testimonialsReview__slider.slick-initialized.slick-slider .slick-slide > div {
    text-align: center;
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-name {
    font-weight: 600;
}

.weight-badge {
        background: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #E1E1E1;
}

/* IMAGES */
.card-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.img-box {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 248px;
    object-fit: cover;
}

.img-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #092e45ad;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #616161;
    min-width: 66px;
    text-align: center;
}

/* TEXT */
.card-text {
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px;
    text-align: left;
    font-weight: 500;
}

/* STARS */
.card-stars {
    display: flex;
    gap: 4px;
}

/* NAV */
.testimonialsReview__nav {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    gap: 12px;
}
.testimonialsReview__nav button.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    transition: all 0.3s ease-in-out;
}
.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
        cursor: pointer;
    border: 1px solid #B9B9B9;
    color: var(--green);
}

.nav-btn.next {
    background: var(--green);
    color: #fff;
}
.testimonialsReview__nav button.nav-btn:hover {
    background: var(--green);
    color: #ffffff;
}

.testimonialsReview__nav button.nav-btn.next:hover {
    background: #fff;
    color: var(--green);
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonialsReview__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonialsReview__rating {
        text-align: left;
    }
    .testimonialsReview__rating {
    display: none;
}
.testimonialsReview__card {
    max-width: 325px;
}
.testimonialsReview__nav {
    display: flex !important;
}
}
@media(max-width:767px) {
    .testimonialsReview h2 {
        margin: 0;
        text-align: center;
        font-family: var(--ff-serif);
        font-size: 28px;
        font-weight: 500;
        letter-spacing: -0.4px;
        line-height: normal;
        color: #101010;
        width: 100% !important;
        max-width: 100%;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .testimonialsReview__title {
        font-size: 24px;
    }

    .img-box img {
        height: 240px;
    }
}