/* BoulderSesh – Rechtstexte & Landing. Bewusst schlicht: schnelle Ladezeit,
   keine externen Ressourcen, lesbar auf dem Handy (Links werden aus der App
   im In-App-Browser geöffnet). */
:root {
  --blue: #208aef;
  --ink: #1c2733;
  --muted: #5b6b7b;
  --bg: #ffffff;
  --rule: #e4eaf0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eef4;
    --muted: #9fb0c0;
    --bg: #10171f;
    --rule: #263340;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
header.site {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 1.25rem;
}
header.site a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
h1 { font-size: 1.7rem; line-height: 1.25; margin: 0 0 0.25rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 0.5rem; }
h3 { font-size: 1rem; margin: 1.5rem 0 0.25rem; }
p.updated { color: var(--muted); font-size: 0.9rem; margin-top: 0; }
a { color: var(--blue); }
ul { padding-left: 1.25rem; }
footer.site {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1.25rem;
  text-align: center;
}
footer.site a { color: var(--muted); }
.placeholder {
  background: rgba(255, 200, 0, 0.25);
  padding: 0 0.2em;
  border-radius: 3px;
}
