/* ==========================================================================
   WalliSend Testimonials
   Cards horizontales avec metrique a gauche
   ========================================================================== */

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-smooth);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

/* Metric Circle */
.testimonial__metric {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  color: var(--color-white);
  text-align: center;
}

.testimonial__metric-value {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.testimonial__metric-label {
  font-size: var(--font-size-xs);
  opacity: 0.9;
  line-height: 1.2;
}

/* Content */
.testimonial__content {
  flex: 1;
  min-width: 0;
}

.testimonial__quote {
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-sm) 0;
}

/* Author */
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.testimonial__role {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
}

.testimonial__sep {
  opacity: 0.5;
}

.testimonial__duration {
  color: var(--color-text-muted);
}

/* ===== TABLET & DESKTOP ===== */

@media (min-width: 768px) {
  .testimonials {
    gap: var(--space-lg);
  }

  .testimonial {
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .testimonial__metric {
    width: 110px;
    height: 110px;
  }

  .testimonial__metric-value {
    font-size: var(--font-size-2xl);
  }

  .testimonial__metric-label {
    font-size: var(--font-size-sm);
  }

  .testimonial__quote {
    font-size: var(--font-size-md);
  }
}

@media (min-width: 1024px) {
  .testimonial__metric {
    width: 120px;
    height: 120px;
  }

  .testimonial__metric-value {
    font-size: var(--font-size-3xl);
  }
}
