/* ── Page hero ── */
.testimonials-hero { padding-bottom: 48px; }

.testimonials-hero-lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
}

/* ── Testimonials grid ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Testimonial card ── */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 26, 20, 0.09);
  border-color: var(--moss);
}

.testimonial-quote-mark {
  width: 28px;
  height: 28px;
  color: var(--moss);
  flex-shrink: 0;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  margin: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-divider {
  height: 1px;
  background: var(--line-strong);
  margin-bottom: 4px;
}

.testimonial-author {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.testimonial-dog {
  font-size: 13px;
  color: var(--ink-faint);
}

.testimonial-chip {
  margin-top: 4px;
  cursor: default;
  align-self: flex-start;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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