/* ============================================================
   reviews.css
   ============================================================ */

.block-title {
  font-size: 1.75rem;
  text-align: center;
  color: var(--heading-accent);
}
.yandex-widget {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 760px;
  height: 480px;
  margin-bottom: 2rem;
  margin: 0 auto;
}
.yandex-widget iframe { width: 100%; height: 100%; border: none; }
.widget-placeholder {
  background: #000; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); font-size: 0.88rem;
}
.leave-review-block {
  text-align: center;
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.leave-review-block h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--heading-accent);
}
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.review-header {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 12px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-dark);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
}
.review-meta span { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { font-size: 1rem; color: #f5a623; letter-spacing: 2px; flex-shrink: 0; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }

