.testimonials {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-4);
  align-items: center;
}

.testimonials-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.testimonials-heading svg { width: 24px; height: 24px; stroke: var(--gold-500); flex-shrink: 0; margin-top: 4px; }
.testimonials-heading h3 { font-size: 1.3rem; line-height: 1.25; }

.testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.testimonial-quote {
  font-size: 0.88rem;
  color: var(--ink-700);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--gold-500);
  padding-left: 14px;
}

.testimonial-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  color: var(--green-800);
  font-size: 0.82rem;
}

.testimonials-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  justify-self: center;
}
.testimonials-next svg { width: 18px; height: 18px; }

@media (max-width: 1080px) {
  .testimonials-inner { grid-template-columns: 1fr; }
  .testimonials-next { justify-self: flex-start; }
  .testimonials-list { grid-template-columns: 1fr; }
}
