/* sections/terms.css
 *
 * /terms legal page — Figma node 188:11180.
 *
 * Shared legal-page primitives (container, block, block-title with
 * CSS counter, bullets, table, links, labeled, subgroup) live in
 * `sections/legal.css`. This file only keeps rules that are unique to
 * /terms:
 *   - Section 17 "Contact" stacks a 2-line contact block (email /
 *     website) tighter than the default block gap. Mirrors /privacy's
 *     contact-block treatment (3-line there, 2-line here — no
 *     "Company" line because /terms identifies the company in the
 *     intro instead).
 *
 * /terms is the largest legal page (17 numbered sections, 4-paragraph
 * intro, section 4 with 6 internal sub-groups) but inherits all of
 * the visual scaffolding from `legal.css` — this file ends up being
 * the smallest per-page legal CSS in the cohort.
 *
 * Load order in Layout.astro: after privacy.css.
 */

/* ── Contact block (section 17) ──
 * Two lines stacked: email / website. Tighter gap so the
 * identification reads as one card. Border-top sets it apart from the
 * section intro paragraph above. Mirrors /privacy's
 * `.ays-privacy-contact-block` structure. */
.ays-light .ays-terms-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--ays-border-base);
  margin-top: 8px;
}
