
.wp-block[data-type="custom-plus-minus/plus-minus"]::before {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    background: url('assets/preview.jpg') no-repeat center center;
    background-size: cover;
}

.comment-form {
    padding: 20px;
    border-radius: 10px;
    display: none;
}
.comment-form__form {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 10px;
    justify-content: space-between;
}
.comment-form__item {
    width: 100%;
}
.comments__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

h2{
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.comments__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

.comments__score .rating {
    margin: 0 13px;
}

.rating i {
    margin: 0 3px;
    font-style: normal;
    color: #ffb543;
    position: relative;
    font-size: 16px;
    line-height: 20px;
}

.comment, .comment-form {
    background: #313131;
}

.comment {
    margin: 12px 0;
    padding: 20px;
    background: #313131;
    border: 1px solid #313131;
    border-radius: 12px;
}

.comment__header {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.comment-form, .comment-form .checkbox span, .comment-form h3, .comment-form label, .comment__author, .comments__list {
    color: #fff;
}

.comment__date {
    margin-left: 16px;
    font-size: 14px;
}

.comment__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #ffb543;
}

.comment__score .rating {
    margin-right: 9px;
}

.comment-form__item.w33 {
    width: calc((100% - 40px) / 3);
}

.comment-form input:not(.rating-form__value), .comment-form textarea {
    width: 100%;
    padding: 12px 16px 11px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    resize: none;
    font-family: inherit;
    color: #fff;
    border: 1px solid;
    background: 0 0;
}
.comment-form__rating-descr {
    margin-left: 24px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}
.rating-form {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-left: 10px;
}
.rating-form__stars svg:has(~ svg:hover), .rating-form__stars svg:hover,
.rating-form__stars svg:has(~ svg:active), .rating-form__stars svg:active  {
    fill: #ff912c;
}
@media screen and (max-width: 576px) {
    .comments__header {
        display: block;
    }
    .comment-form__form {
        display: block;
    }
    .comment-form__item.w33 {
        width: 100%;
    }
    .comment-form__rating-descr {
        display: none;
    }
    .comment-form__rating {
        width: 100%;
        display: block;
    }
    .rating-form {
        margin-top: 10px;
        margin-left: 0;
    }
}