/* ── C-07 — Accordéon ─────────────────────────────────────────────────────────── */

.bloc-c07 {
  background-color: var(--bloc-bg, var(--color-bg));
  padding: 60px 0;
}

.bloc-c07__heading {
  color: var(--bloc-title, var(--color-text));
  font-family: var(--font-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

/* Liste — cards empilées avec gap */
.bloc-c07__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card item — border sur 4 côtés + border-radius */
.bloc-c07__item {
  border: 1px solid var(--bloc-border, #4F5A2A);
  border-radius: 8px;
  padding: 0 24px;
}

/* Wrapper h3 sémantique — pas de style propre, le rendu reste porté par .bloc-c07__question */
.bloc-c07__question-title {
  margin: 0;
  font: inherit;
  font-weight: inherit;
}

/* Bouton question */
.bloc-c07__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--bloc-text, var(--color-text));
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* Icône + / − */
.bloc-c07__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--bloc-border, #4F5A2A);
}

.bloc-c07__icon::before {
  content: '+';
}

.bloc-c07__item--open .bloc-c07__icon::before {
  content: '−';
}

/* Réponse — animation max-height */
.bloc-c07__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.bloc-c07__answer-inner {
  padding-bottom: 24px;
}

.bloc-c07__answer-inner p {
  color: var(--bloc-text, var(--color-text));
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1em;
}

.bloc-c07__answer-inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .bloc-c07 {
    padding: 80px 0;
  }

  .bloc-c07__question {
    font-size: 18px;
    padding: 26px 0;
  }
}
