/* ═══ FAQ SECTION — Dark theme ═══ */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px var(--section-px);
  background: var(--noir-bg);
}

.faq-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.faq-section__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #5B6D7E;
}

.faq-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.faq-section__title-bold {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.faq-section__title-italic {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.faq-section__list {
  width: 100%;
  max-width: 800px;
}

/* ── Tablet ── */
@media (min-width: 768px) {
  .faq-section {
    padding: 96px var(--section-px);
    gap: 48px;
  }

  .faq-section__title-bold {
    font-size: 40px;
  }

  .faq-section__title-italic {
    font-size: 40px;
  }
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .faq-section {
    padding: 96px 120px;
  }

  .faq-section__title-bold {
    font-size: 44px;
  }

  .faq-section__title-italic {
    font-size: 44px;
  }
}
