/* Boîte texte repliée */
.rmtfr-box {
  max-height: 120px;     /* hauteur initiale */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

/* Boîte texte ouverte */
.rmtfr-box.open {
  max-height: none;    /* affiche tout */
}

/* Le "bouton" est en fait un span stylisé comme un lien */
.rmtfr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  cursor: pointer;
  color: #929292;         /* gris demandé */
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;  /* pas de soulignement */
}

.rmtfr-toggle i {
  font-size: 16px;
}