.reviews {
    margin: 80px 0 72px;
}

.reviews__subtitle {
    margin-bottom: 10px;
    text-align: center;
}

.reviews__title {
    margin-top: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.reviews__list {
    padding-top: 42px;
}

.review-card {
    background: #F8FBFF;
    border-radius: 15px;
    padding: 25px 30px 30px 23px;
    position: relative;
    width: 100%;
    min-height: 203px;
}

.review-card__photo {
    position: absolute;
    top: -40px;
    left: auto;
    right: 27px;
    width: 98px;
    height: 98px;
    min-width: 98px;
    min-height: 98px;
    border-radius: 50%;
    overflow: hidden;
}

.review-card__photo img {
    width: 100%;
    height: 100%;
    min-width: 98px;
    min-height: 98px;
    object-fit: cover;
}

.review-card__name {
    font-family: 'Satoshi', sans-serif;
    font-size: 26px;
    line-height: 100%;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.review-card__stars {
    font-size: 22px;
    color: #F39C12;
    margin-bottom: 18px;
}

.review-card__text {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    color: #000000;
}

@media (max-width: 1024px) {
    .reviews {
        margin: 68px 0 26px;
    }
    .reviews__subtitle {
        margin-bottom: 10px;
        text-align: left;
    }
    .reviews__title {
        margin-top: 10px;
        margin-bottom: -14px;
        text-align: left;
    }
    .reviews__list {
        gap: 0;
    }

    .review-card {
        width: 100%;
        min-height: 168px;
        padding: 23px 30px 30px 20px;
    }

    .review-card__photo {
        position: absolute;
        top: -15px;
        left: auto;
        right: 14px;
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        border-radius: 50%;
        overflow: hidden;
    }

    .review-card__photo img {
        width: 100%;
        height: 100%;
        min-width: 70px;
        min-height: 70px;
        object-fit: cover;
    }

    .review-card__name {
        font-size: 18px;
    }

    .review-card__text {
        font-size: 18px;
        line-height: 26px;
    }
}