.testimonial-card {
    position: relative;
    padding: 2rem;
    z-index: 10;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-about {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.testimonial-icon-color-1 {
  background-image: linear-gradient(to bottom right, #4f46e5, #9333ea);
}

.testimonial-icon-color-2 {
  background-image: linear-gradient(to bottom right, #2563eb, #4f46e5);
}

.testimonial-icon-color-3 {
  background-image: linear-gradient(to bottom right, #9333ea, #db2777);
}

.testimonial-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.75rem;
}

.testimonial-title {
  font-weight: 600;
  color: #ffffff;
}

.testimonial-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
}

.testimonial-text {
  color: #9ca3af;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  margin-bottom: 1rem;
}

.testimonial-stars-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
}

.testimonial-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
