.testimonial-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 96px 48px;
  text-align: center;
}

.testimonial-quote {
  position: relative;
  padding: 0 24px;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 120px;
  line-height: 1;
  background-image: var(--atlas-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.testimonial-text {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: balance;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 64px 32px;
  }
  .testimonial-text {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .testimonial-section {
    padding: 48px 12px;
  }
  .testimonial-text {
    font-size: 20px;
  }
}