/* Reset bouton (évite le rendu bouton natif) */
.eds-faq__question{
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  
  /* Wrapper */
  .eds-faq {
    background: transparent;
    border-top: 1px solid #3a5c54; /* ligne haute comme maquette */
  }
  
  /* Item + séparateurs */
  .eds-faq__item {
    border-bottom: 1px solid #3a5c54;
  }
  
  /* Question row */
  .eds-faq__question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
  }
  
  /* Texte question */
  .eds-faq__qtext {
    font-family: 'Auraluxe Serif', Helvetica, Arial, Lucida, sans-serif;
    font-size: 30px;
    color: #12302c;
    line-height: 1.2;
  }
  
  /* Icone SVG */
  .eds-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  
  .eds-faq__svg line {
    stroke: #12302c;
    stroke-width: 2.5;
    stroke-linecap: round;
  }
  
  /* Transition + / - */
  .eds-faq__svg-v {
    transform-origin: 50% 50%;
    transition: opacity 200ms ease;
  }
  
  /* Ouvert => on cache la barre verticale (on obtient "-") */
  .eds-faq__question[aria-expanded="true"] .eds-faq__svg-v {
    opacity: 0;
  }
  
  /* Answer (animée) */
  .eds-faq__answer {
    overflow: hidden;
    height: 0;
    transition: height 280ms ease;
    padding: 0; /* padding déplacé dans inner */
  }
  
  /* Contenu réponse */
  .eds-faq__answer-inner {
    padding: 0 0 18px 0;
    font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    color: #222423;
    line-height: 1.6;
  }
  
  /* Accessibilité : respecte la préférence utilisateur */
  @media (prefers-reduced-motion: reduce) {
    .eds-faq__answer {
      transition: none;
    }
  }
  
  /* Mobile */
  @media (max-width: 980px) {
    .eds-faq__qtext {
      font-size: 20px;
    }
  }