.page-comments {
    display: flex;
    gap: 32px;
}

.page-comments > div {
    flex-grow: 1;
    margin-top: 40px;
    min-width: 540px;
}

.page-comments__content {
    width: 100%;
}

.body_reviews .title {
    margin-bottom: 40px;
}

.comments__item {
    background: #f1f1eb;
    border-radius: 16px;
    margin-bottom: 32px;
    overflow: hidden;
    padding: 20px 20px 72px 106px;
    position: relative;
}

.comments__item__photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
    bottom: auto;
    height: 72px;
    left: 20px;
    position: absolute;
    right: auto;
    top: 20px;
    width: 72px;
}

.comments__item__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.comments__item__message {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.comments__item-rating {
    bottom: 20px;
    left: 20px;
    position: absolute;
    right: auto;
    top: auto;
}

.comments__item-rating div {
    background-image: url(/images/new-frontend/icons/star.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
    height: 32px;
    margin-right: 12px;
    width: 32px;
}

.comments__item-rating div.inactive {
    background-image: url(/images/new-frontend/icons/star_inactive.svg);
}

.comments__list-loader {
    width: 80px;
    height: 40px;
    background: url(/images/new-frontend/icons/active-loader.svg) no-repeat 50% 50%;
}

.comments__list-more {
    display: inline-block;
}

@media (max-width: 991px) {
    .page-comments {
        display: block;
    }

    .page-comments > div {
        margin-top: 32px;
        min-width: auto;
    }

    .comments__item {
        margin-bottom: 16px;
        padding: 16px 16px 48px 82px;
    }

    .comments__item__name {
        font-size: 18px;
        line-height: 24px;
    }

    .comments__item__message {
        font-size: 14px;
        line-height: 22px;
    }

    .comments__item__photo {
        height: 48px;
        width: 48px;
    }

    .comments__item-rating {
        bottom: 16px;
        left: 82px;
    }

    .comments__item-rating div {
        height: 20px;
        width: 20px;
    }

    .comments__list-more {
        display: block;
    }

    .page-comments .form__actions {
        background: inherit;
        padding: 16px 0 0 0;
        position: relative;
    }
}
