/* Testimonial grid layout */

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  margin-top: 2rem;
}

.testimonial {
  position: relative;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial .quote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 4rem;
  opacity: 0.15;
  font-family: Georgia, serif;
}

.author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-color);
  margin-top: 0.5rem;
}

.author::before {
  content: "— ";
}
