/*
  Testimonials page styles
  ------------------------------------------------------------------
  Kept separate from styles.css so the testimonials feature is fully
  self-contained (markup lives in index.html, data/rendering logic in
  testimonials.js, and styling here).

  Uses the same CSS variables defined in styles.css's :root block
  (--gold, --panel, --line, --text, --muted), so this file must be
  loaded AFTER styles.css.
*/
/* Testimonials
   ------------------------------------------------------------------ */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  justify-content: start;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.testimonial-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.testimonial-empty {
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 720px) {
  .testimonials-list {
    grid-template-columns: 1fr;
  }
}