/* ---------------------------------------------------------------------
   Schriften (lokal gehostet, keine externen Font-CDNs)
--------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   Grundlagen
--------------------------------------------------------------------- */
:root {
  --petrol: #123a4a;
  --petrol-dunkel: #0b2733;
  --tuerkis: #14958c;
  --tuerkis-dunkel: #0f7770;
  --moos: #2f9e6b;
  --sand: #ad8348;
  --sand-dunkel: #8a6635;
  --koralle: #d1502f;
  --papier: #f6f3ec;
  --karte: #fffdf8;
  --tinte: #12212e;
  --rand: #e2dccb;
  --schatten: 0 4px 16px rgba(18, 33, 46, 0.08);
  --schatten-stark: 0 10px 28px rgba(18, 33, 46, 0.16);
  --radius: 20px;
  --radius-klein: 12px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--petrol);
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

a {
  color: var(--tuerkis);
  font-weight: 600;
}

a:hover {
  color: var(--petrol);
}

:focus-visible {
  outline: 3px solid var(--tuerkis);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--karte);
  color: var(--tinte);
  padding: 0.75em 1.25em;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------------------------------------------------------------------
   Header / Footer
--------------------------------------------------------------------- */
.site-header {
  background: var(--petrol);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner,
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.15em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--tuerkis);
}

.main-nav {
  display: flex;
  gap: 0.4em;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  color: #eef4f2;
  text-decoration: none;
  padding: 0.5em 0.9em;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(20, 149, 140, 0.32);
}

.signature-line {
  height: 4px;
  background: var(--tuerkis);
}

.site-footer {
  margin-top: 4em;
  background: var(--petrol);
  color: #cfe0dc;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.site-footer__inner p {
  margin: 0;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  gap: 1.2em;
  font-weight: 700;
}

.footer-nav a {
  color: #cfe0dc;
}

.footer-nav a:hover {
  color: var(--tuerkis);
}

/* ---------------------------------------------------------------------
   Layout / Main
--------------------------------------------------------------------- */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5em 4em;
}

.page-intro {
  max-width: 46em;
  margin: 3em auto 2.2em;
}

.page-intro__quelle {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #4a5b62;
  font-weight: 500;
}

.section {
  margin: 3.5em 0;
}

.prose {
  max-width: 42em;
}

.prose h2 {
  margin-top: 1.2em;
}

/* Flash messages */
.flash-list {
  max-width: 46em;
  margin: 2em auto 0;
}

.flash {
  font-family: var(--sans);
  font-weight: 600;
  padding: 0.9em 1.2em;
  border-radius: var(--radius-klein);
  margin: 0 0 0.6em;
}

.flash--success {
  background: var(--moos);
  color: #fff;
}

.flash--error {
  background: var(--koralle);
  color: #fff;
}

/* ---------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------- */
.button {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  box-shadow: 0 3px 0 rgba(18, 33, 46, 0.18);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(18, 33, 46, 0.18);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(18, 33, 46, 0.18);
}

.button--primary {
  background: var(--tuerkis);
  color: #fff;
}

.button--primary:hover {
  background: var(--tuerkis-dunkel);
  color: #fff;
}

.button--secondary {
  background: var(--petrol);
  color: #fff;
}

.button--secondary:hover {
  background: var(--petrol-dunkel);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
  box-shadow: none;
}

.button--ghost:hover {
  background: var(--petrol);
  color: #fff;
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------------------------------------------------------------------
   Hero / Startseite
--------------------------------------------------------------------- */
.hero {
  background: var(--petrol);
  color: #fff;
  margin: 0 calc(50% - 50vw);
  padding: 3.5em calc(50vw - 50% + 1.5em) 4em;
  display: grid;
  gap: 2.5em;
  align-items: center;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 4.5em;
    padding-bottom: 5em;
  }
}

.hero h1 {
  color: #fff;
}

.hero__lead {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 34em;
  color: #dcebe6;
}

.hero__actions {
  display: flex;
  gap: 0.9em;
  flex-wrap: wrap;
  margin-top: 1.4em;
}

.hero .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .button--ghost:hover {
  background: #fff;
  color: var(--petrol);
}

.route-graphic__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.route-graphic__list::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  right: 11px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.route-graphic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  flex: 1;
  color: #dcebe6;
}

.route-graphic__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rand);
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.85);
}

.route-graphic__item--ausrichten .route-graphic__dot { background: var(--petrol); }
.route-graphic__item--oeffnen .route-graphic__dot { background: var(--tuerkis); }
.route-graphic__item--beteiligen .route-graphic__dot { background: var(--moos); }
.route-graphic__item--verankern .route-graphic__dot { background: var(--sand); }

/* Drei-Schritte-Liste */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5em;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps__item {
  background: var(--karte);
  border-radius: var(--radius);
  padding: 1.8em 1.7em;
  box-shadow: var(--schatten);
  border-top: 6px solid var(--rand);
}

.steps__item:nth-child(1) { border-top-color: var(--petrol); }
.steps__item:nth-child(2) { border-top-color: var(--tuerkis); }
.steps__item:nth-child(3) { border-top-color: var(--moos); }

.steps__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 800;
  color: #fff;
  background: var(--sand);
  font-size: 1.1rem;
  margin-bottom: 0.6em;
}

.card {
  background: var(--karte);
  border-radius: var(--radius);
  padding: 2.2em;
  box-shadow: var(--schatten);
}

.card--emphasis {
  background: var(--tuerkis);
  color: #fff;
  box-shadow: var(--schatten-stark);
}

.card--emphasis h2 {
  color: #fff;
}

.section--cta .cta {
  background: var(--karte);
  border: 2px solid var(--rand);
  border-radius: var(--radius);
  text-align: center;
  padding: 3em 2em;
  box-shadow: var(--schatten);
}

.section--cta .cta h2 {
  color: var(--petrol);
}

/* ---------------------------------------------------------------------
   Diagnose (Wegweiser Teil A)
--------------------------------------------------------------------- */
.diagnose__gruppe {
  border: none;
  padding: 0;
  margin: 0 0 2.4em;
}

.diagnose__gruppe legend {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--tuerkis);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.9em;
  padding: 0;
}

.diagnose__frage {
  background: var(--karte);
  border-radius: var(--radius-klein);
  padding: 1.3em 1.5em;
  margin-bottom: 0.9em;
  box-shadow: var(--schatten);
  border-left: 5px solid var(--tuerkis);
}

.diagnose__frage-text {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.9em;
}

.diagnose__skala {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  flex-wrap: wrap;
}

.diagnose__skala-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #607078;
  flex: 0 0 auto;
}

.diagnose__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3em;
  height: 2.3em;
  border-radius: 50%;
  border: 2px solid var(--rand);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.1s ease;
}

.diagnose__option:hover {
  transform: translateY(-1px);
  border-color: var(--tuerkis);
}

.diagnose__option:has(input:checked) {
  background: var(--tuerkis);
  border-color: var(--tuerkis);
  color: #fff;
}

.diagnose__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.diagnose__actions {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.form-error {
  color: var(--koralle);
  font-weight: 700;
  font-family: var(--sans);
  margin-top: 0.8em;
}

/* ---------------------------------------------------------------------
   Navigator (Wegweiser Teil B)
--------------------------------------------------------------------- */
.badge {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--sand);
  color: #fff;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  margin-bottom: 1.5em;
}

.phase-tabs {
  display: grid;
  gap: 0.8em;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2em;
}

@media (min-width: 720px) {
  .phase-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.phase-tab {
  font-family: var(--sans);
  background: var(--karte);
  border: 2px solid var(--rand);
  border-radius: var(--radius-klein);
  padding: 1em 1.1em;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  position: relative;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.phase-tab__nummer {
  font-weight: 800;
  color: var(--sand);
}

.phase-tab__name {
  font-weight: 700;
  color: var(--petrol);
}

.phase-tab--aktiv {
  box-shadow: var(--schatten-stark);
  border-color: transparent;
}

.phase-tab--ausrichten.phase-tab--aktiv { background: var(--petrol); }
.phase-tab--oeffnen.phase-tab--aktiv { background: var(--tuerkis); }
.phase-tab--beteiligen.phase-tab--aktiv { background: var(--moos); }
.phase-tab--verankern.phase-tab--aktiv { background: var(--sand); }

.phase-tab--aktiv .phase-tab__nummer,
.phase-tab--aktiv .phase-tab__name {
  color: #fff;
}

.phase-tab__punkt {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
}

.phase-tab--aktiv .phase-tab__punkt {
  background: #fff;
}

.phase-tab__progress {
  flex-basis: 100%;
  height: 6px;
  background: var(--rand);
  border-radius: 999px;
  overflow: hidden;
}

.phase-tab--aktiv .phase-tab__progress {
  background: rgba(255, 255, 255, 0.35);
}

.phase-tab__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--moos);
  transition: width 0.25s ease;
}

.phase-tab--aktiv .phase-tab__progress-bar {
  background: #fff;
}

.phase-panel__kopf {
  margin-bottom: 1.8em;
}

.phase-panel__rahmen {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--tuerkis);
  font-weight: 800;
}

.phase-block {
  margin-bottom: 2.2em;
}

.phase-block__sub {
  color: #4a5b62;
  font-weight: 500;
  font-size: 0.95rem;
}

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}

.chip {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  border: 1.5px solid transparent;
}

.chip--orientierung {
  background: rgba(18, 58, 74, 0.1);
  border-color: rgba(18, 58, 74, 0.3);
  color: var(--petrol);
}

.chip--beteiligung {
  background: rgba(47, 158, 107, 0.14);
  border-color: rgba(47, 158, 107, 0.4);
  color: #1e7049;
}

.chip--glaubwuerdigkeit {
  background: rgba(173, 131, 72, 0.18);
  border-color: rgba(173, 131, 72, 0.45);
  color: #7a5a2e;
}

.aufgaben-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7em;
}

.aufgaben-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  background: var(--karte);
  border-radius: var(--radius-klein);
  padding: 1em 1.2em;
  box-shadow: var(--schatten);
  flex-wrap: wrap;
}

.aufgaben-list__item label {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  cursor: pointer;
  flex: 1;
  font-weight: 500;
}

.aufgaben-list__item input[type="checkbox"] {
  margin-top: 0.25em;
  width: 1.2em;
  height: 1.2em;
  accent-color: var(--moos);
}

.tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  color: #fff;
}

.tag--schwerpunkt {
  background: var(--sand);
}

.risiko-list {
  display: grid;
  gap: 1em;
}

@media (min-width: 720px) {
  .risiko-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.risiko-box {
  background: var(--karte);
  border-radius: var(--radius-klein);
  padding: 1.3em 1.5em;
  border-left: 6px solid var(--rand);
  box-shadow: var(--schatten);
}

.risiko-box--hoch {
  border-left-color: var(--koralle);
}

.risiko-box--mittel {
  border-left-color: var(--sand);
}

.risiko-box__kopf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  margin-bottom: 0.5em;
  gap: 0.6em;
}

.risiko-box__name {
  font-weight: 800;
  color: var(--petrol);
}

.risiko-box__impact {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: #8a7357;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  flex: 0 0 auto;
}

.risiko-box--hoch .risiko-box__impact {
  background: var(--koralle);
}

.risiko-box--mittel .risiko-box__impact {
  background: var(--sand);
}

.risiko-box__beschreibung {
  font-size: 0.95rem;
}

.risiko-box__entschaerfung {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--moos);
  margin-bottom: 0;
}

.navigator__actions {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2em;
}

/* ---------------------------------------------------------------------
   Modell-Seite
--------------------------------------------------------------------- */
.modell-erklaerung {
  display: grid;
  gap: 2em;
}

@media (min-width: 860px) {
  .modell-erklaerung {
    grid-template-columns: 1.5fr 1fr;
  }
}

.hebel-liste,
.comb-liste {
  display: grid;
  gap: 1em;
}

.hebel-karte,
.comb-karte {
  background: var(--karte);
  border-radius: var(--radius-klein);
  padding: 1.4em 1.6em;
  box-shadow: var(--schatten);
  border-left: 6px solid var(--rand);
}

.hebel-karte--orientierung { border-left-color: var(--petrol); }
.hebel-karte--beteiligung { border-left-color: var(--moos); }
.hebel-karte--glaubwuerdigkeit { border-left-color: var(--sand); }

.comb-karte--koennen { border-left-color: var(--petrol); }
.comb-karte--wollen { border-left-color: var(--tuerkis); }
.comb-karte--erlaubt { border-left-color: var(--sand); }

.comb-karte h3 {
  color: var(--tuerkis);
}

.phase-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin: 1.2em 0 1.6em;
  font-family: var(--sans);
}

.phase-filter__btn {
  border: 2px solid var(--rand);
  background: var(--karte);
  border-radius: 999px;
  padding: 0.55em 1.2em;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--petrol);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.phase-filter__btn--aktiv {
  border-color: var(--tuerkis);
  background: var(--tuerkis);
  color: #fff;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1.3fr);
  gap: 0.7em;
  align-items: stretch;
}

.matrix-grid__corner {
  background: transparent;
}

.matrix-grid__colhead,
.matrix-grid__rowhead {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--petrol);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.matrix-feld {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  background: var(--karte);
  border: 2px solid var(--rand);
  border-radius: var(--radius-klein);
  padding: 1.1em;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.matrix-feld:hover {
  border-color: var(--tuerkis);
  transform: translateY(-2px);
}

.matrix-feld--aktiv {
  border-color: var(--tuerkis);
  background: var(--tuerkis);
  color: #fff;
  box-shadow: var(--schatten-stark);
}

.matrix-feld--fokus {
  border-color: var(--moos);
}

.matrix-feld--gedimmt {
  opacity: 0.35;
}

.matrix-detail {
  margin-top: 1.6em;
  background: var(--petrol);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.8em 2em;
  box-shadow: var(--schatten-stark);
}

.matrix-detail h3 {
  color: #fff;
}

.matrix-detail__quelle {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: #b9cdd6;
  margin-bottom: 0;
}

/* ---------------------------------------------------------------------
   Impressum-Liste
--------------------------------------------------------------------- */
.impressum-liste {
  font-family: var(--sans);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1.2em;
}

.impressum-liste dt {
  font-weight: 800;
  color: var(--petrol);
}

.impressum-liste dd {
  margin: 0;
  font-weight: 500;
}

/* ---------------------------------------------------------------------
   Kontaktformular
--------------------------------------------------------------------- */
.kontakt-form {
  max-width: 32em;
  display: grid;
  gap: 1.2em;
}

.form-field {
  display: grid;
  gap: 0.4em;
  font-family: var(--sans);
}

.form-field label {
  font-weight: 700;
  color: var(--petrol);
  font-size: 0.92rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.75em 1em;
  border: 2px solid var(--rand);
  border-radius: var(--radius-klein);
  background: var(--karte);
  color: var(--tinte);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--tuerkis);
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------------------------------------------------------------
   Druck-Stylesheet (Wegweiser als PDF)
--------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .diagnose__actions,
  #diagnose,
  .phase-tabs,
  .navigator__actions,
  .skip-link {
    display: none !important;
  }

  #navigator {
    display: block !important;
  }

  .phase-panel {
    display: block !important;
    page-break-after: always;
  }

  body {
    background: #fff;
  }

  .aufgaben-list__item,
  .risiko-box,
  .diagnose__frage {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
