/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials--orange {
  background: var(--orange-bg, #ffeede);
}

.testimonials--white {
  background: #fff;
}

.testimonials--purple {
  background: var(--purple-bg, #f1efff);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card--white {
  background: #fff;
}

.testimonial-card--gradient {
  background: linear-gradient(135deg, #ffeede, #ffe8e7);
  border-color: var(--red-light);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.testimonial-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--red-light);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card__text {
  font-style: italic;
  font-size: 14.9px;
  line-height: 1.625;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.8px;
  color: var(--purple-dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.1px;
  color: var(--purple-dark);
}

.testimonial-card__location {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
