.reviews-page {
    background: #f7f8fb;
    color: #111827;
}

.reviews-shell {
    width: min(1300px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 48px;
}

.reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.reviews-head span {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.reviews-head h1 {
    margin: 4px 0 0;
    color: #101828;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
}

.reviews-back,
.review-card-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: 8px;
    background: #415014;;
    color: #ffffff;
    padding: 0 14px;
    font-weight: 800;
    text-decoration: none;
}

.reviews-list {
    display: grid;
    gap: 14px;
}

.review-card,
.reviews-empty {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    padding: 22px;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.review-card-top span,
.review-card-top small,
.review-card-foot span {
    color: #667085;
    font-size: 13px;
}

.review-card h2 {
    margin: 4px 0;
    color: #101828;
    font-size: 20px;
    font-weight: 800;
}

.review-stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    white-space: nowrap;
}

.review-card p,
.reviews-empty p,
.review-reply p {
    margin: 14px 0 0;
    color: #475467;
    line-height: 1.7;
}

.review-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.review-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.review-images img {
    width: 78px;
    height: 78px;
    border-radius: 8px;
    object-fit: cover;
}

.review-reply {
    margin-top: 18px;
    border-left: 3px solid #111827;
    padding: 14px;
    background: #f9fafb;
}

.reviews-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.reviews-empty i {
    color: #98a2b3;
    font-size: 44px;
}

.reviews-empty strong {
    color: #101828;
    font-size: 22px;
    font-weight: 800;
}

.reviews-pagination {
    margin-top: 22px;
}

@media (max-width: 640px) {
    .reviews-shell {
        width: min(100% - 20px, 980px);
    }

    .reviews-head,
    .review-card-top,
    .review-card-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .reviews-back {
        width: 100%;
    }
}
