/* faq.css — Haeufige Fragen (Sektion _sections/faq.php). Alles unter .faq
   gescoped, um Klassenkollisionen mit anderen Sektionen zu vermeiden. */
.faq {
  padding: 84px 0;
}
.faq .section-head {
  max-width: 62ch;
  margin: 0 0 34px;
}
.faq .section-head .lede {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.5;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: color-mix(in srgb, var(--bg) 92%, var(--ink) 8%);
  overflow: hidden;
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--accent-strong);
  transition: transform .2s ease;
  flex: none;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > summary:hover { color: var(--accent-strong); }
.faq-item > p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > summary::after { transition: none; }
}
