.review-page {
    width: 1200px;
    max-width: calc(100% - 32px);
    margin: 90px auto 60px;
    color: #243043;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7eaf0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.review-user h1 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
}

.review-summary {
    display: flex;
    gap: 18px;
    font-size: 15px;
    color: #5c6678;
}

.review-tabs {
    display: flex;
    gap: 10px;
    margin: 24px 0;
}

.review-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 36px;
    border: 1px solid #cfd6e2;
    border-radius: 4px;
    color: #425069;
    text-decoration: none;
}

.review-tabs a.active {
    border-color: #2176ff;
    background: #2176ff;
    color: #fff;
}

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

.review-item {
    padding: 18px 0;
    border-bottom: 1px solid #edf0f5;
}

.review-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    color: #6b7485;
    font-size: 14px;
}

.review-type {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    background: #eef7f0;
    color: #228547;
    font-weight: 600;
}

.review-type.bad {
    background: #fff0f0;
    color: #c13a3a;
}

.review-content {
    margin: 0;
    color: #243043;
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
    color: #8a93a3;
    font-size: 13px;
}

.review-empty {
    padding: 42px 0;
    color: #8a93a3;
    text-align: center;
    border-bottom: 1px solid #edf0f5;
}

.review-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.review-pagination a,
.review-pagination span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #cfd6e2;
    border-radius: 4px;
    color: #425069;
    text-decoration: none;
}

.review-pagination span {
    color: #9aa3b3;
}

@media (max-width: 768px) {
    .review-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-summary,
    .review-item-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
