/* Style pour le témoignage moderne */
.testimonial-modern {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-modern:hover {
  transform: translateY(-5px);
}

.testimonial-columns {
  gap: 30px !important;
}

.testimonial-image-column {
  flex: 0 0 200px !important;
}

.testimonial-avatar {
  border-radius: 50%;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
}

.testimonial-content-column {
  flex: 1 !important;
}

.testimonial-quote {
  border-left: 4px solid #0073aa;
  padding-left: 20px;
  margin: 0 0 20px 0;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #0073aa;
  margin: 0;
}

/* Style pour le témoignage classique */
.testimonial-classic {
  border-radius: 8px;
  background-color: #f8f9fa !important;
}

.testimonial-quote-classic {
  text-align: center;
  margin-bottom: 30px !important;
}

.testimonial-text-classic {
  font-size: 24px !important;
  line-height: 1.5;
  color: #2c3338;
  font-style: italic;
}

.testimonial-author-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar-classic {
  border-radius: 50%;
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
}

.testimonial-author-classic {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonial-columns {
    flex-direction: column !important;
  }

  .testimonial-image-column {
    flex: 0 0 auto !important;
    text-align: center;
  }

  .testimonial-text-classic {
    font-size: 20px !important;
  }
}

.testimonial-minimal {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-minimal:hover {
  transform: translateY(-5px);
}

.testimonial-minimal-columns {
  gap: 40px;
}

.testimonial-minimal-text {
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
}

.testimonial-minimal-author {
  margin-bottom: 5px !important;
}

.testimonial-minimal-position {
  margin: 0 !important;
}

.testimonial-minimal-avatar {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover;
}

@media (max-width: 768px) {
  .testimonial-minimal-columns {
    flex-direction: column-reverse !important;
  }

  .testimonial-minimal-content,
  .testimonial-minimal-image {
    width: 100% !important;
  }

  .testimonial-minimal-avatar {
    margin: 0 auto 20px !important;
  }
} 