/* ============================================================
   SIMPLEK — /reviews/ page (page-reviews.php)
   Loaded ONLY on the reviews template (inc/reviews-page.php).
   Scoped under .rv-* so nothing leaks into the rest of the site.
   Mobile-first. Uses the theme's CSS custom properties.
   ============================================================ */

/* ── Hero (extends .service-hero) ───────────────────────── */
.rv-hero { min-height: auto; padding: 130px 20px 56px; }
.rv-hero .service-h1 .grad {
  background: linear-gradient(135deg, var(--blue-bright), var(--warm-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rv-hero .service-intro { margin-bottom: 28px; }

.rv-score {
  display: inline-flex; align-items: center; gap: 18px;
  margin: 4px auto 26px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  text-align: right;
}
.rv-score-num {
  font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -2px;
  background: linear-gradient(135deg, #FFD700, #FF6B1A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'tnum';
}
.rv-score-stars { font-size: 20px; color: #FFD700; letter-spacing: 2px; line-height: 1; margin-bottom: 6px; }
.rv-score-count { font-size: 15px; color: var(--muted-dark); }
.rv-score-count strong { color: var(--paper); font-weight: 800; font-size: 17px; }
.rv-score .tst-live-badge { margin-top: 8px; }

/* ── Light list section ─────────────────────────────────── */
.rv-list {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 64px 20px 72px;
}
.rv-list-inner { max-width: 1120px; margin: 0 auto; }
.rv-list-head { text-align: center; margin-bottom: 32px; }
.rv-list-head .section-title { font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; }
.rv-list-note {
  margin: 16px auto 0; max-width: 620px;
  font-size: 16px; line-height: 1.7; color: var(--muted);
}

.rv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.rv-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  box-shadow: 0 6px 24px rgba(7,9,15,0.05);
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rv-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(46,107,255,0.12);
}

.rv-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-weight: 800; font-size: 18px;
}
.rv-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-who { flex: 1; min-width: 0; }
.rv-author { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.rv-time { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }
.rv-g {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line-light); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #4285F4;
}

.rv-stars { color: #F2A900; font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; line-height: 1; }
.rv-text { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.rv-text-empty { color: var(--muted); font-style: italic; }

.rv-more { text-align: center; margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.rv-more .btn { min-height: 56px; }
.rv-write {
  font-size: 15px; font-weight: 700; color: var(--blue);
  text-decoration: underline; text-underline-offset: 4px;
  padding: 12px 8px; /* comfortable tap target */
}
.rv-write:hover { color: var(--warm); }

.rv-empty { text-align: center; padding: 40px 12px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.rv-empty-star { font-size: 44px; color: #F2A900; margin-bottom: 8px; }

/* ── CTA (extends .cta-strip) ───────────────────────────── */
.rv-cta { padding: 72px 20px; }
.rv-cta .cta-actions .btn { min-height: 56px; }
.rv-btn-wa { background: #25D366; box-shadow: 0 12px 40px rgba(37,211,102,0.35); }
.rv-cta .btn-secondary { color: var(--paper); }

/* ── Tablet / desktop ───────────────────────────────────── */
@media (min-width: 700px) {
  .rv-hero { padding: 160px 36px 72px; }
  .rv-list { padding: 90px 36px 100px; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .rv-card { padding: 26px 26px 28px; }
  .rv-more { flex-direction: row; justify-content: center; gap: 28px; }
}
@media (min-width: 1100px) {
  .rv-grid { grid-template-columns: repeat(3, 1fr); }
}
