/* ============================================================
   Support page – component-level styles
   Uses --dl-* tokens and thq-* base classes from thq-theme.css
   ============================================================ */

.support-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────────── */
.support-hero {
  background-color: var(--dl-color-theme-neutral-dark);
}

.support-hero-title {
  color: #faf9f6;
  font-style: normal;
}

.support-hero-description {
  color: var(--dl-color-theme-secondary1);
  max-width: 600px;
}

/* ── Sections ─────────────────────────────────────────────── */
.support-section-light {
  background-color: var(--dl-color-theme-neutral-light);
}

.support-section-dark {
  background-color: var(--dl-color-theme-neutral-dark);
}

.support-section-title {
  color: var(--dl-color-theme-neutral-dark);
  font-style: normal;
  margin-bottom: var(--dl-space-space-unit);
}

.support-section-description {
  color: var(--dl-color-theme-neutral-dark);
  max-width: 600px;
  margin-bottom: var(--dl-space-space-twounits);
}

/* Dark-section text overrides */
.support-text-light {
  color: #faf9f6;
}

.support-text-muted {
  color: var(--dl-color-theme-secondary1);
}

/* ── Buttons ──────────────────────────────────────────────── */
.support-button {
  text-decoration: none;
}

.support-button-outline {
  text-decoration: none;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.support-faq-list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--dl-space-space-twounits);
}

.support-faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--dl-space-space-halfunit);
  padding-bottom: var(--dl-space-space-twounits);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.support-faq-question {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}

.support-faq-answer {
  font-size: 16px;
  line-height: 1.7;
}

/* ── Troubleshooting ──────────────────────────────────────── */
.support-troubleshoot-list {
  display: flex;
  flex-direction: column;
  gap: var(--dl-space-space-twounits);
  max-width: 800px;
}

.support-troubleshoot-item {
  display: flex;
  flex-direction: column;
  gap: var(--dl-space-space-halfunit);
}

.support-troubleshoot-question {
  font-family: var(--dl-font-family-body);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  color: var(--dl-color-theme-neutral-dark);
}

.support-troubleshoot-answer {
  color: var(--dl-color-theme-neutral-dark);
  line-height: 1.7;
}

/* ── Bug report list ──────────────────────────────────────── */
.support-bug-list {
  max-width: 600px;
  margin: 0 0 var(--dl-space-space-twounits) var(--dl-space-space-oneandhalfunits);
  padding: 0;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: var(--dl-space-space-halfunit);
}

/* ── Footer overrides ─────────────────────────────────────── */
.support-footer-content {
  color: #faf9f6;
  display: inline-block;
}

.support-footer-action {
  color: #ffffff;
}

.support-footer-copyright {
  color: rgba(250, 249, 246, 0.6);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .support-hero-title {
    font-size: 28px;
  }
  .support-section-title {
    font-size: 24px;
  }
  .support-faq-question {
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .support-hero-title {
    font-size: 24px;
  }
  .support-section-title {
    font-size: 22px;
  }
}
