/* ==========================================================================
   Superior Gym – legal.css
   Impressum, Datenschutz. Header, mobile menu and footer are the exact
   markup/CSS from index.html (site-header, mobile-menu, site-footer in
   css/base.css) — nothing to add for those here.

   This file only adds what base.css does not already cover: the readable
   text-column layout for the legal prose (spacing, list bullets, the
   [TODO: …] placeholder style). Uses only tokens defined in base.css
   :root (no local --c-* tokens).
   Mobile-first. Reference widths: 390px (mobile), 1440px (desktop).
   ========================================================================== */

/* ---------- Readable content column ---------- */
/* Text lines max. ~65 characters wide, per the task's content-area spec. */
.legal-content {
  max-width: 65ch;
  padding-top: 8px;
}

.legal-content h2 {
  margin: 40px 0 12px;
}
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-2);
  margin: 0 0 16px;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  text-underline-offset: 3px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.legal-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-2);
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--red-text);
  transform: rotate(45deg);
}

/* Contact/authority data blocks reuse .module + .kv (see base.css, shared
   with the Footer and Kontakt "Oder direkt" module). */
.legal-content .module {
  margin: 16px 0 24px;
}

/* ---------- [TODO: …] placeholders ----------
   Visibly flagged so open points can't ship unnoticed, without red
   (red is reserved for the site's calls to action / errors). */
.todo {
  display: inline-block;
  padding: 0.05em 0.55em;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-1);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.85em;
  line-height: 1.5;
}
