.stat-card > span {
  color: var(--accent);
  font-weight: 700;
}

.review-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-item {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-author {
  color: var(--text);
  font-weight: 600;
}

.review-author > span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.review-author a,
.review-source {
  text-decoration: underline;
}

.star-rating {
  margin-top: 0.25rem;
  color: var(--accent);
  font-weight: 700;
}

.review-date,
.review-item time,
.review-source {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-text {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .review-header {
    flex-direction: column;
  }
}
