/* ── Support page ───────────────────────────────────────────
   Reuses the legal column and the landing FAQ accordion; only the jump list
   and the contact card are its own. */

.support-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 4px;
  border-bottom: 1px solid var(--line);
}

.support-toc-link {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease), background 0.16s var(--ease);
}

.support-toc-link:hover {
  color: var(--text);
  border-color: var(--line-hi);
  background: var(--surface);
}

/* Scrolled-to sections need room under the heading the jump list lands on. */
.legal-section[id] { scroll-margin-top: 24px; }

.support-contact {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-contact h2 { font-size: 19px; letter-spacing: -0.015em; }
.support-contact p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.support-contact .btn { align-self: auto; }
