.slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 40px 0; /* espacement top/bottom */
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

/* Chaque avis */
.testi {
  flex: 0 0 33.33%; /* 3 par écran */
  box-sizing: border-box;
  padding: 20px;
  margin-right: 0; /* éviter chevauchement */
}

/* Bordure / style des cartes */
.testi {
  background-color: #111; /* exemple fond sombre */
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  min-height: 250px;
}

/* Étoiles */
.t-stars {
  color: gold;
  margin-bottom: 15px;
}

/* Texte avis */
.t-txt {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Auteur */
.t-auth {
  display: flex;
  align-items: center;
}

.t-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

/* Nom et rôle */
.t-name {
  font-weight: bold;
}

.t-role {
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .testi { flex: 0 0 50%; }
}

@media (max-width: 600px) {
  .testi { flex: 0 0 100%; }
}