/* Conteneur principal des avis */
.avis-client-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Bloc de chaque avis */
.cr-review {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background-color: #fdfdfd;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Titre ou nom de l’auteur */
.cr-review-author {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
  color: #2c3e50;
}

/* Date de l’avis */
.cr-review-date {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
}

/* Texte de l’avis */
.cr-review-content {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

/* Étoiles */
.cr-stars {
  color: #f39c12; /* jaune */
  margin-bottom: 10px;
}

/* Centrer le titre */
.avis-client-wrapper h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}
