:root {
  --testimonial-bg-color: #fafafa;
  --testimonial-border-color: #e1e1e1;
  --testimonial-text-color: #333;
  --testimonial-muted-text: #666;
  --testimonial-light-text: #888;
  --testimonial-accent-color: #0073aa;
}

/* Grilles de témoignages */
.testimonials-grid,
.testimonials-author-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonials-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.testimonials-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cartes de témoignages */
.testimonial-card,
.testimonial-single {
  background: var(--testimonial-bg-color);
  border: 1px solid var(--testimonial-border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
}
a.testimonial-item-link::before {
  content: "";
  inset: 0;
  position: absolute;
}
.testimonial-card:hover,
.testimonial-single:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: var(--testimonial-accent-color);
}

/* Photo/avatar */
.testimonial-photo {
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-photo .testimonial-avatar,
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--testimonial-accent-color);
}

.testimonial-avatar {
  margin-right: 15px;
  border-width: 2px;
}

/* Contenu */
.testimonial-content,
.testimonial-text {
  text-align: center;
}

.testimonial-message,
.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
}

.testimonial-author h4,
.testimonial-author-info h3 {
  margin: 0 0 5px;
  color: var(--testimonial-accent-color);
  font-size: 16px;
  font-weight: bold;
}

.testimonial-organization,
.testimonial-author-info .organization {
  margin: 0 0 5px;
  color: var(--testimonial-muted-text);
  font-size: 12px;
  font-weight: 500;
}

.testimonial-country,
.testimonial-author-info .country {
  margin: 0;
  color: var(--testimonial-light-text);
  font-size: 13px;
}

/* En-tête auteur */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

/* Animations */
.testimonial-card {
  animation: fadeInUp 0.6s ease-in-out;
}

.testimonial-single {
  animation: fadeInLeft 0.6s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonial-card,
  .testimonial-single {
    padding: 15px;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-photo .testimonial-avatar,
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }

  .testimonial-card,
  .testimonial-single {
    padding: 12px;
  }
}
.tesmonial-post {
  border-radius: 8px !important;
  border: 1px solid #b4b4b4 !important;
}
