/* /support: FAQ-style answers + the contact form. The accordion styling
   (.faq-list) is global in styles.css; this file adds only what the homepage
   keeps in its inline styles plus page-local tweaks. */

.faq-list details { scroll-margin-top: 5rem; }

/* Read-on link out of an FAQ answer (mirrors the homepage's inline rules). */
.faq-more {
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
}
.faq-more a { color: var(--amber-ink); text-decoration: none; }
.faq-more span { display: inline-block; transition: transform 180ms ease; }
.faq-more a:hover span { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .faq-more span { transition: none; transform: none; }
}

#contact .container { max-width: 46rem; }

/* Breathing room between the form's button and the plain-email fallback line. */
.email-fallback { margin-top: 2rem; }
#contact noscript p { margin-top: 2rem; }
