.testimonials {
  text-align: center;
  padding: 60px 5%;
  background: #fff;
}

.testimonials p {
  padding: 0px;
}

#testimonialCard {
  max-width: 700px;
  margin: 40px auto 0;
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  min-height: 180px;
}

#testimonialCard.active {
  opacity: 1;
  transform: translateY(0);
}

#testimonialCard p {
  margin-bottom: 20px;
  color: var(--color-text);
}

#testimonialCard .author {
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  color: var(--color-text);
}

#testimonialCard .role {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
