/* Conteneur */
.vb-faq {
  max-width: 860px;
  margin: 0 auto;
}

/* Question / bouton */
.vb-faq-question {
  margin: 0;
}
.vb-faq-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 1rem 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--nm-color-heading, #222);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.vb-faq-toggle:focus {
  outline: 2px solid #8aa;
  outline-offset: 2px;
}

/* Icône + / – */
.vb-faq-toggle-icon {
  font-weight: 600;
  transition: transform 0.2s ease;
}
.vb-faq-toggle[aria-expanded="true"] .vb-faq-toggle-icon {
  transform: rotate(45deg);
} /* + devient × */

/* Réponse */
.vb-faq-answer {
  padding: 0.5rem 0 1rem;
}
.vb-faq-answer-inner {
  color: var(--nm-color-text, #444);
}
.vb-faq-answer p {
  margin: 0 0 0.8rem;
}

/* Intro */
.vb-faq-intro {
  margin: 0 0 1.25rem;
  color: var(--nm-color-text, #444);
}

/* Petites améliorations */
.vb-faq-item + .vb-faq-item .vb-faq-toggle {
  border-top: none;
}
