#testimonials {
  padding: 120px 60px;
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 72px;
}

.testimonial {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s;
}

.testimonial:hover {
  background: var(--graphite);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--blue);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
}

.quote-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.quote-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.quote-author strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
