/* sections/privacy.css
 *
 * /privacy legal page — Figma node 188:13137.
 *
 * 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
 * /privacy:
 *   - Section 11 "Contact" stacks a 3-line contact block (company /
 *     email / website) tighter than the default block gap so the
 *     identification reads as one unit.
 *   - Section 1 "Information" has a sub-bullet list under "Payment
 *     information" (iOS / Android Customers) that needs a slight
 *     negative top margin to read as a nested list under the labeled
 *     paragraph above it.
 *
 * Load order in Layout.astro: after cookies.css.
 */

/* ── Payment sub-bullets (section 1) ──
 * iOS / Android Customers sit under the "Payment information" labeled
 * paragraph. The shared `.ays-legal-bullets` rules handle the disc
 * marker and indent; this override adds slight breathing so the
 * sublist reads as nested rather than continuing the parent list. */
.ays-privacy-info-payment-list {
  margin-top: -4px;
}

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