/* Reviews section */
.doctor-reviews {
    max-width: 980px;
    margin: auto;
    /* margin-bottom: 70px; */
    margin-top: 30px;
}
.doctor-reviews__slide {
    height: auto;
}

.doctor-reviews__item {
    border-radius: 10px;
    border: 1px solid rgba(38, 109, 211, 0.30);
    padding: 20px 10px;
    background-color: #fff;
    height: 100%;
}

.doctor-reviews__rating {
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
}

.doctor-reviews__rating::before {
    content: '';
    width: 15px;
    height: 15px;
    background: url('/wp-content/themes/dante/assets/icons/star.svg');
    background-size: contain;
}

.doctor-reviews__rating[data-rating="4"]::before {
    width: 65px;
}

.doctor-reviews__rating[data-rating="5"]::before {
    width: 81px;
}

.doctor-reviews__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 10px;
}

.doctor-reviews__name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
}