.eds-toggle {
    display: block;
  }
  
  /* Boutons = uniquement l'image, aucun style bouton */
  .eds-toggle__btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .eds-toggle__content {
    font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    word-wrap: break-word;
    line-height: 1.7em;
    font-weight: 500;
  }
  
  /* Taille des icônes */
  .eds-toggle__img {
    width: 34px;   /* ajuste si besoin */
    height: 34px;  /* ajuste si besoin */
    display: block;
  }
  
  /* Bouton haut */
  .eds-toggle__btn--open {
    margin-bottom: 12px; /* espace avant le panneau quand il s'ouvre */
  }
  
  /* Panel animé en "slide" */
  .eds-toggle__panel {
    overflow: hidden;
    height: 0;
    transition: height 260ms ease;
    will-change: height;
  }
  
  /* Quand ouvert, JS mettra une hauteur précise puis "auto" en fin d'anim */
  .eds-toggle.is-open .eds-toggle__panel {
    /* height piloté par JS */
  }
  
  /* Bouton bas : après le texte */
  .eds-toggle__btn--close {
    margin-top: 14px;
  }
  
  /* Nettoyage marges contenu */
  .eds-toggle__content > :first-child { margin-top: 0; }
  .eds-toggle__content > :last-child  { margin-bottom: 0; }