/* 评价列表 - 与 room-detail-page 同宽对齐 */
.room-reviews {
  margin-top: 48px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dark .room-reviews {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.room-reviews__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 32px;
}

.room-reviews__columns {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.room-reviews__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 单条评论 */
.review-item {
  margin: 0;
}

.review-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.review-item__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #717171;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.review-item__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-item__meta {
  min-width: 0;
}

.review-item__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  margin: 0 0 2px;
}

.dark .review-item__name {
  color: #f3f4f6;
}

.review-item__joined {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6b7280;
  margin: 0;
}

.dark .review-item__joined {
  color: rgba(255, 255, 255, 0.55);
}

.review-item__rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.review-item__stars {
  color: #222;
  letter-spacing: 1px;
}

.dark .review-item__stars {
  color: #f3f4f6;
}

.review-item__stay {
  color: #6b7280;
}

.dark .review-item__stay {
  color: rgba(255, 255, 255, 0.55);
}

.review-item__content {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #484848;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.dark .review-item__content {
  color: rgba(255, 255, 255, 0.8);
}

.review-item__more {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
  text-decoration: underline;
  cursor: pointer;
}

.review-item__more:hover {
  opacity: 0.75;
}

.dark .review-item__more {
  color: #f3f4f6;
}

@media (max-width: 768px) {
  .room-reviews__columns {
    flex-direction: column;
    gap: 48px;
  }

  .room-reviews__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
