/* Legal pages (terms, privacy) — long-form prose on the app design
   system (static/css/app/ tokens, light/dark). Unlayered: app base.css /
   components.css are unlayered too, so these compete by specificity. */
.legal-page {
  max-width: 72ch;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-page h1 {
  margin-bottom: 0.25em;
}
.legal-updated {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
}
.legal-page p,
.legal-page li {
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
/* app base.css resets list-style to none for the shell — restore bullets. */
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
}
.legal-page th,
.legal-page td {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 0.75rem 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
/* Owner-owned placeholder values (entity, KvK, address) — visibly marked
   until filled so an unfinished page can never read as final. */
.legal-placeholder {
  background: var(--accent-soft);
  border-radius: 3px;
  padding: 0 0.25em;
}
