.faq-header { margin-bottom: clamp(36px, 4vw, 56px); }
.faq-header .h2 { margin-top: 8px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: var(--c-text);
}
.faq-question:hover .faq-q-text { color: var(--c-blue); }
.faq-q-text {
  font-family: var(--f-head);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  transition: color 0.2s;
  flex: 1;
}
.faq-toggle {
  flex-shrink: 0;
  color: var(--c-blue);
  transition: transform 0.3s ease;
  display: flex;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 72ch;
}
.faq-answer-inner p { margin: 0 0 0.75em; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
