/* Heinerpost Rechtstexte — eigenständige Static-Seiten (planunabhängig von beehiiv) */
:root {
  --blau: #1A3E8C;
  --amber: #E8A33D;
  --text: #1c1c1c;
  --muted: #555;
  --line: #e7e2d8;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.625;
}
a { color: var(--blau); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--amber); }

.topbar {
  background: var(--blau);
  color: #fff;
}
.topbar .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand:hover { color: #fff; }
.brand img.logo {
  height: 30px;
  width: auto;
  display: block;
}
.topbar a.back {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.92;
}
.topbar a.back:hover { opacity: 1; text-decoration: underline; }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--blau);
}
h1 + .lead { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
  color: var(--blau);
}
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 28px 0 8px;
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }
.block { margin: 0 0 8px; }
.label { font-weight: 600; }
.note { color: var(--muted); font-size: 14px; }
hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
footer a { color: var(--muted); }
footer .links { margin-bottom: 6px; }
footer .links a { margin-right: 14px; }

@media (max-width: 520px) {
  body { font-size: 16px; }
  main { padding: 32px 18px 18px; }
  h1 { font-size: 28px; }
}
