/* Shared layout for the five legal pages: a single centred document column,
   loaded alongside tokens.css and base.css. Nothing here touches the loop
   page's own selectors (.bar, #reel, .well, etc), so this file is safe to
   include only where it is needed. */

.legal-page {
  max-width: 70ch;
  margin: 0 auto;
  padding: 8vh 6vw 6vh;
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 120ms;
}

.legal-page .back-link:hover,
.legal-page .back-link:focus-visible {
  color: var(--accent);
}

.legal-page .back-link::before {
  content: "\2190";
}

.legal-page h1 {
  margin-top: 28px;
  font-size: clamp(32px, 6vw, 52px);
}

.legal-page .legal-updated {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 36px;
}

.legal-page h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin-top: 40px;
}

.legal-page p {
  max-width: 70ch;
}

.legal-page ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-page li {
  margin-bottom: 8px;
  max-width: 66ch;
}

.legal-page strong {
  color: var(--text-strong);
}

/* Marked placeholders: a real world detail (jurisdiction, an email address)
   that is unknown at this stage of the build, called out visibly rather
   than invented. Tracked in PROGRESS.md until filled in. */
.legal-placeholder {
  color: var(--warn);
  font-family: var(--font-num);
  font-size: 0.92em;
  letter-spacing: 0.02em;
}

@media (max-width: 620px) {
  .legal-page {
    padding: 7vh 6vw 5vh;
  }
}
