@media (max-width: 767px) {
  body {
    background: yellow !important;
  }
}

@media (max-width: 767px) {
  /* Désactive le flex-1 qui écrase les témoignages */
  .testimonial-card,
  .card-avis,
  .flex-1.flex.flex-col {
    flex: initial !important;   /* au lieu de 1 1 0% */
    height: auto !important;    /* prend la hauteur du contenu */
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Ajuste le texte */
  .testimonial-card p,
  .card-avis p,
  blockquote {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}