/* Testimonial component — see /components/testimonial.js */
.testimonial-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  background-color: var(--color-background);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.testimonial-quote {
  position: relative;
  margin: 0 0 var(--space-xl);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: var(--color-text);
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  top: -2rem;
  left: -2rem;
  font-family: serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-primary-light);
  opacity: 0.2;
  pointer-events: none;
}

.testimonial-quote p {
  margin: 0;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-name {
  font-style: normal;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.testimonial-source {
  margin-top: 2px;
  width: fit-content;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent-dark);
}

.testimonial-source:hover {
  text-decoration: underline;
}

