.reviews, .reviews-list {
    background: #fffcfc;
}
.reviews-list h1 {
    font-size: 48px;
    line-height: 44px;
    font-weight: 400;
    margin-bottom: 60px;
    width: fit-content;
    position: relative;
    font-family: 'Appetite';
}
.reviews-list h1::before {
    content: '';
    position: absolute;
    bottom: -15px;
    background: #F33030;
    width: 100%;
    height: 4px;
}
.reviews-list .wrapper {
    max-width: 600px;
}
.reviews-list .list .item {
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}
.reviews-list .list .item .head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.reviews-list .list .item .stars {
    display: flex;
    gap: 5px;
}
.reviews-list .list .item .stars span::before {
    content: '\e948';
    font-family: 'icon';
    font-size: 24px;
    color: #eee;
}
.reviews-list .list .item .stars span.active::before {
    color: #f2994a;
}
.reviews-list .list .item .body p {
    line-height: 20px;
}
.reviews-list .list .item .body .h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}
.reviews .review-form p {
    font-family: 'Appetite';
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 25px;
}
.reviews .review-form span {
    color: #5b5b5b;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
}
.reviews .review-form .stars {
    margin-bottom: 45px;
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.reviews .review-form .stars input {
    display: none;
}
.reviews .review-form .stars label::after {
    content: '\e948';
    font-family: 'icon';
    font-size: 24px;
    color: #eee;
    cursor: pointer;
}
.reviews .review-form .stars input:checked ~ label::after {
    color: #f2994a;
}
.reviews .review-form .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px 30px;
    margin-bottom: 40px;
}
.reviews .review-form .inputs input {
    background: #fffcfc;
}
.reviews .review-form .inputs textarea {
    grid-column: 1/3;
    height: 120px;
    background: #fffcfc;
}
.reviews .review-form input[type="submit"].btn {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
    max-width: 200px;
    width: 100%;
    background: #f33030;
    border-radius: 20px;
    margin: 0 auto 80px;
}
@media (max-width: 578px) {
    .reviews .review-form .inputs input {
        grid-column: 1/3;
    }
}