/* ==========================================================================
   H2G — FAQ (h2g/faq + h2g/faq-item)
   Accordion 1-op-1 met de Lijndraad-ontwerpbron (Website Tilburg.dc.html):
   kop-rij met label links/rechts, rijen met border-top, grote uppercase
   vraag, mono +/–-teken, één item tegelijk open, sluitrand onderaan.
   ========================================================================== */

.h2g-faq {
  padding: 0 var(--gutter) 130px;
  color: var(--color-accent);
}

/* --- Kop-rij: label links, label rechts (baseline, uppercase 14px) -------- */
.h2g-faq__kop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* De linker sectietitel is semantisch een h2, maar houdt de labeltypografie. */
.h2g-faq__kop-links {
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

/* --- Items: border-top per rij + sluitrand onderaan ----------------------- */
.faq-item {
  border-top: 2px solid var(--color-accent);
}

.h2g-faq__einde {
  border-top: 2px solid var(--color-accent);
}

/* --- Vraag-rij (volle-breedte knop) ---------------------------------------- */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-heading);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  opacity: 0.7;
}

.faq-question:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 6px;
}

.faq-question-text {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* Mono +/–-teken: + dicht, – open (teken via content, span blijft leeg). */
.faq-icon {
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.faq-icon::before {
  content: "+";
}

.faq-item.open .faq-icon::before {
  content: "\2013";
}

/* --- Antwoord --------------------------------------------------------------- */
.faq-answer {
  margin: 0;
  padding: 0 0 26px;
  max-width: 66ch;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-accent);
}

.faq-answer p {
  margin: 0;
}

.faq-answer[hidden] {
  display: none;
}
