/* ========================================================================
   bk-innosoft · Druck-Stylesheet für Download-Assets (Checklisten/Vorlagen)
   Eigenständige HTML-Dateien unter /downloads/*.html linken hierauf.
   Ziel: am Bildschirm lesbar, beim Drucken (-> "Als PDF speichern") sauber.
   Dependency-frei: System-Fonts, keine externen Ladungen.
   ======================================================================== */

:root {
  --ink: #0F1722;
  --mute: #5B6878;
  --coral: #E55934;
  --sand: #F1E9DA;
  --cream: #FBF7F0;
  --line: #DDD3BF;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.sheet {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}

/* Kopf */
.sheet__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.sheet__brand span { color: var(--coral); }
.sheet__kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--mute);
  margin: 24px 0 6px;
}
h1 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.sheet__intro { color: var(--mute); max-width: 60ch; margin: 0 0 28px; }

h2 {
  font-family: var(--serif);
  font-size: 21px;
  margin: 36px 0 12px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 6px;
}
h3 { font-size: 16px; margin: 22px 0 6px; }

/* Checklisten */
ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}
ul.check li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 18px;
  border: 2px solid var(--coral);
  border-radius: 4px;
}

/* Vorlagen-/Copy-Block */
.tmpl {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  padding: 18px 20px;
  margin: 14px 0;
  font-size: 14px;
  white-space: pre-wrap;
}

/* Entscheidungsbaum / Schritte */
ol.steps { padding-left: 20px; }
ol.steps li { margin-bottom: 10px; }

table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); }
thead th { background: var(--sand); }

.note {
  background: var(--sand);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ink);
  margin: 16px 0;
}

/* Fuß */
.sheet__foot {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 2px solid var(--line);
  font-size: 12.5px;
  color: var(--mute);
}
.sheet__foot a { color: var(--coral); text-decoration: none; }

.print-hint {
  background: var(--coral);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
}
.print-hint button {
  background: #fff;
  color: var(--coral);
  border: none;
  border-radius: 999px;
  padding: 5px 14px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
}

@media print {
  .print-hint { display: none; }
  body { background: #fff; }
  .sheet { padding: 0; max-width: 100%; }
  h2 { break-after: avoid; }
  ul.check li, ol.steps li { break-inside: avoid; }
}
