﻿:root {
  --page: #e7eef1;
  --panel: rgba(250, 252, 251, 0.94);
  --panel-strong: #ffffff;
  --ink: #101c1b;
  --muted: #4e5e5c;
  --line: rgba(66, 91, 88, 0.42);
  --green: #1f6d63;
  --blue: #315f8d;
  --violet: #66599e;
  --soft-green: #dff2ea;
  --soft-blue: #e2eff8;
  --soft-violet: #ebe7f7;
  --warning: #f4e7ce;
  --shadow: 0 20px 54px rgba(25, 43, 52, 0.14);
  --radius: 8px;
  --sidebar: 292px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 109, 99, 0.1), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(102, 89, 158, 0.08), transparent 30%),
    linear-gradient(135deg, #f3f7f5 0%, var(--page) 48%, #dde8ee 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon svg,
.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100vh;
}

.side-path {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
}

.path-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(25, 43, 52, 0.08);
}

.path-brand strong,
.path-brand small { display: block; }

.path-brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark,
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-green), var(--soft-blue));
  color: var(--green);
}

.path-nav {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-left: 8px;
}

.path-nav::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(var(--line), rgba(45, 117, 107, 0.28), var(--line));
}

.path-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 9px 12px 9px 0;
  border-radius: var(--radius);
  color: #40514f;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.path-link span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: #465957;
  font-size: 0.78rem;
  font-weight: 800;
  z-index: 1;
}

.path-link:hover,
.path-link:focus-visible,
.path-link.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.path-link.active span {
  border-color: rgba(45, 117, 107, 0.36);
  background: var(--green);
  color: white;
}

.content-area {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 44px;
}

.panel,
.section-block,
.calm-panel,
.member-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  min-height: 610px;
  padding: clamp(36px, 7vw, 74px);
}

.hero::before,
.calm-panel::before,
.member-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(45, 117, 107, 0.1), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(117, 105, 168, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-orbit,
.section-intro,
.feature-grid,
.tool-grid,
.warning-grid,
.calm-panel > *,
.member-panel > *,
.site-footer {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 8.5vw, 6.4rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 { font-size: 1.12rem; }

.hero-slogan {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: clamp(1.22rem, 2.4vw, 1.65rem);
  font-weight: 800;
}

.hero-text,
.section-intro p,
.calm-panel p,
.member-panel p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.9vw, 1.22rem);
}

.hero-text { margin: 28px 0 0; }

.hero-orbit {
  display: grid;
  gap: 16px;
}

.hero-orbit article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 43, 52, 0.08);
}

.hero-orbit article:nth-child(2) { transform: translateX(34px); }
.hero-orbit article:nth-child(3) { transform: translateX(10px); }

.hero-orbit span,
.warning-grid span,
.member-card span,
.project-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-orbit strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.section-block,
.calm-panel,
.member-panel { margin-top: 24px; }

.section-block { padding: clamp(30px, 5vw, 54px); }

.section-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-intro.compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  align-items: end;
  column-gap: 44px;
}

.section-intro.compact p { margin: 0; }

.feature-grid,
.tool-grid,
.warning-grid {
  display: grid;
  gap: 16px;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.warning-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card,
.tool-grid article,
.warning-grid article,
.member-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(25, 43, 52, 0.08);
}

.feature-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.feature-card.wide { grid-column: span 2; }

.feature-card h3,
.feature-card p { margin-top: 18px; }

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tool-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
}

.tool-grid strong { font-size: 1.12rem; }

.safety-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 224, 0.72)),
    var(--panel-strong);
}

.warning-grid article {
  min-height: 142px;
  padding: 20px;
  border-color: rgba(151, 113, 48, 0.18);
  background: rgba(255, 250, 241, 0.84);
}

.warning-grid strong {
  display: block;
  margin-bottom: 10px;
  line-height: 1.25;
}

.calm-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: 30px;
  padding: clamp(32px, 6vw, 64px);
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.88), rgba(234, 243, 251, 0.78)),
    var(--panel-strong);
}

.calm-panel h2 { max-width: 820px; }

.calm-note {
  padding: 24px;
  border: 1px solid rgba(45, 117, 107, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 850;
  text-align: center;
}

.inline-next-step {
  margin: 18px 0 0;
}

.inline-next-step a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(45, 117, 107, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-weight: 800;
}

.inline-next-step a:hover,
.inline-next-step a:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-strip span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.member-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(239, 237, 248, 0.8), rgba(255, 255, 255, 0.82)),
    var(--panel-strong);
}

.member-copy p { margin-top: 18px; }

.transparency {
  font-size: 1rem !important;
  color: var(--green) !important;
  font-weight: 750;
}

.member-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.member-card strong {
  font-size: 1.24rem;
  line-height: 1.25;
}

.member-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.member-card-actions .article-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  margin-top: 0;
  padding-inline: 18px;
  border-color: rgba(31, 109, 99, 0.28);
  background: rgba(232, 245, 239, 0.96);
  text-align: center;
  line-height: 1.25;
}

.member-card-actions .article-link.soft {
  border-color: rgba(49, 95, 141, 0.28);
  background: rgba(226, 239, 248, 0.96);
  color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 28px 4px 0;
  color: var(--muted);
}

.site-footer strong { color: var(--ink); }
.site-footer p { margin: 4px 0 0; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--green); }

/* Projektseite: Zuhause im Blick */
body[data-page="zuhause-im-blick"] {
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 109, 99, 0.08), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(102, 89, 158, 0.07), transparent 30%),
    linear-gradient(135deg, #eef4f2 0%, #e6edf0 52%, #e9eef3 100%);
}

.zib-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  min-height: 640px;
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(250, 252, 250, 0.96), rgba(224, 237, 240, 0.84)),
    #f7f9f8;
  border-color: rgba(78, 105, 101, 0.46);
}

.zib-hero::before,
.zib-local-panel::before,
.zib-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(31, 109, 99, 0.08), transparent 32%),
    linear-gradient(120deg, rgba(102, 89, 158, 0.045), transparent 46%);
  pointer-events: none;
}

.zib-hero-copy,
.zib-device,
.zib-local-panel > *,
.zib-closing > * {
  position: relative;
  min-width: 0;
}

.zib-hero .hero-text {
  max-width: 680px;
}

.zib-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-link.soft {
  background: rgba(255, 255, 255, 0.76);
  color: var(--green);
}

.zib-device {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(45, 73, 70, 0.42);
  border-radius: 26px;
  background: #eef3f1;
  box-shadow: 0 20px 46px rgba(25, 43, 52, 0.14);
}

.zib-device img,
.zib-screen-pair img,
.zib-gallery img,
.zib-wide-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(45, 73, 70, 0.38);
  border-radius: 18px;
  background: #eef2f0;
}

.zib-device img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.zib-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.zib-trust-grid > *,
.zib-flow > *,
.zib-screen-pair > *,
.zib-gallery > * {
  min-width: 0;
}

.zib-trust-grid article,
.zib-flow article,
.zib-screen-pair figure,
.zib-gallery figure,
.zib-wide-shot,
.zib-privacy-map {
  border: 1px solid rgba(78, 105, 101, 0.46);
  border-radius: 18px;
  background: rgba(249, 251, 250, 0.96);
  box-shadow: 0 10px 24px rgba(25, 43, 52, 0.07);
}

.zib-trust-grid article {
  min-height: 250px;
  padding: 24px;
}

.zib-trust-grid h2 {
  margin-top: 18px;
  font-size: 1.34rem;
}

.zib-trust-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.zib-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.zib-flow article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
}

.zib-flow strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.95rem;
}

.zib-flow span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.zib-screen-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.zib-screen-pair figure,
.zib-gallery figure,
.zib-wide-shot {
  margin: 0;
  padding: 14px;
}

.zib-screen-pair img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.zib-screen-pair figcaption,
.zib-gallery figcaption {
  margin: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.zib-local-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 32px;
  background:
    linear-gradient(135deg, rgba(226, 237, 233, 0.94), rgba(246, 249, 247, 0.9)),
    #f4f7f5;
  border-color: rgba(78, 105, 101, 0.48);
}

.zib-local-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.9vw, 1.2rem);
}

.zib-privacy-map {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-color: rgba(78, 105, 101, 0.46);
  background: rgba(250, 251, 249, 0.96);
}

.zib-privacy-map span {
  position: relative;
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(45, 117, 107, 0.3);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--green);
  font-weight: 850;
}

.zib-privacy-map span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: rgba(45, 117, 107, 0.32);
}

.zib-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
}

.zib-gallery .large {
  grid-row: span 2;
}

.zib-gallery .large img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: left top;
}

.zib-gallery figure:not(.large) img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.zib-wide-shot {
  overflow: hidden;
}

.zib-wide-shot img {
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: left top;
}

.zib-build-story {
  background:
    linear-gradient(135deg, rgba(239, 237, 248, 0.8), rgba(226, 239, 248, 0.74)),
    var(--panel-strong);
}

@media (max-width: 1080px) {
  .zib-hero,
  .zib-local-panel {
    grid-template-columns: 1fr;
  }

  .zib-trust-grid,
  .zib-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zib-gallery {
    grid-template-columns: 1fr;
  }

  .zib-gallery .large {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .zib-screen-pair,
  .zib-trust-grid,
  .zib-flow {
    grid-template-columns: 1fr;
  }

  .zib-device,
  .zib-screen-pair figure,
  .zib-gallery figure,
  .zib-wide-shot {
    padding: 8px;
    border-radius: 14px;
    max-width: 100%;
  }

  .zib-screen-pair,
  .zib-gallery {
    gap: 18px;
  }

  .zib-screen-pair figcaption,
  .zib-gallery figcaption {
    margin-top: 10px;
    line-height: 1.4;
  }

  .zib-device img,
  .zib-screen-pair img,
  .zib-gallery img,
  .zib-wide-shot img {
    border-radius: 10px;
  }
}

@media (max-width: 1080px) {
  :root { --sidebar: 252px; }
  .feature-grid,
  .warning-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card.wide { grid-column: span 2; }
  .section-intro.compact { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .app-shell { display: block; }

  .side-path {
    position: sticky;
    top: 0;
    z-index: 20;
    height: auto;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-brand { display: none; }

  .path-nav {
    display: flex;
    gap: 8px;
    margin-top: 0;
    padding: 0 2px 6px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .path-nav::before { display: none; }

  .path-link {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 6px 12px 6px 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
  }

  .path-link span {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .content-area {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .hero,
  .calm-panel,
  .member-panel {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .hero-orbit article:nth-child(2),
  .hero-orbit article:nth-child(3) { transform: none; }

  .project-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .hero,
  .section-block,
  .calm-panel,
  .member-panel {
    border-radius: 18px;
    padding: 24px;
  }

  .feature-grid,
  .tool-grid,
  .warning-grid,
  .project-strip { grid-template-columns: 1fr; }

  .feature-card.wide { grid-column: auto; }

  .hero-orbit article,
  .feature-card { min-height: auto; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Sidebar: Lehrpfad und Seitenverzeichnis */
.side-path {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-section {
  margin-top: 24px;
}

.nav-title {
  margin: 0 0 10px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-nav {
  display: grid;
  gap: 7px;
}

.page-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #40514f;
  font-weight: 720;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.page-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: rgba(65, 83, 80, 0.52);
}

.page-link:hover,
.page-link:focus-visible,
.page-link.active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.page-link.active::before {
  background: var(--violet);
}

.page-link.priority-link {
  border-color: rgba(151, 113, 48, 0.2);
  background: rgba(247, 239, 224, 0.46);
  color: var(--ink);
}

.page-link.priority-link::before {
  background: #b47b36;
}

.page-link.news-link {
  border-color: rgba(65, 109, 152, 0.18);
  background: rgba(234, 243, 251, 0.46);
}

.page-link.news-link::before {
  background: var(--blue);
}

/* Inhaltsseiten */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(34px, 6vw, 64px);
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-subtitle {
  margin: 16px 0 0;
  color: var(--blue);
  font-size: clamp(1.28rem, 2.8vw, 1.78rem);
  font-weight: 820;
}

.page-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.9vw, 1.22rem);
}

.page-hero-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  font-weight: 820;
  box-shadow: 0 14px 36px rgba(35, 52, 62, 0.07);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 30px rgba(25, 43, 52, 0.08);
}

.article-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 820;
}

.article-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
}

.article-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.article-link {
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  font-weight: 800;
}

.article-link:hover,
.article-link:focus-visible {
  background: var(--soft-green);
  border-color: rgba(31, 109, 99, 0.36);
  color: #144f47;
}

.placeholder-panel {
  min-height: 420px;
  padding: clamp(34px, 6vw, 64px);
}

/* Mitgliedschaft */
.member-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 231, 247, 0.72)),
    var(--panel-strong);
}

.member-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 245, 239, 0.64)),
    var(--panel-strong);
}

.member-benefits .article-card {
  min-height: 280px;
}

.member-room {
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.9), rgba(234, 243, 251, 0.8)),
    var(--panel-strong);
}

.member-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.member-detail-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.member-detail-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.member-detail-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.local-first-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(234, 243, 251, 0.68)),
    var(--panel-strong);
}

.member-principles {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.member-principles p {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  font-weight: 850;
}

/* Sicherheit Allgemein */
.safety-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 239, 224, 0.68)),
    var(--panel-strong);
}

.safety-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(45, 117, 107, 0.12), transparent 42%),
    radial-gradient(circle at 84% 20%, rgba(180, 123, 54, 0.16), transparent 34%);
  pointer-events: none;
}

.safety-hero > * {
  position: relative;
}

.safety-hero-note {
  padding: 24px;
  border: 1px solid rgba(151, 113, 48, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(35, 52, 62, 0.07);
}

.safety-hero-note strong {
  display: block;
  color: #8a5c24;
  font-size: 1.18rem;
}

.safety-hero-note span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 239, 224, 0.9);
  color: #8a5c24;
  font-size: 0.82rem;
  font-weight: 850;
}

.safety-hero-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.safety-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 243, 251, 0.72)),
    var(--panel-strong);
}

.pressure-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 224, 0.72)),
    var(--panel-strong);
}

.safety-principle,
.calm-reminder,
.injection-box {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.safety-principle strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.25;
}

.safety-principle span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.signal-grid,
.fraud-grid,
.agent-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fraud-grid,
.agent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-grid article,
.fraud-grid article,
.agent-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.signal-grid span,
.agent-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 820;
}

.signal-grid p,
.fraud-grid p,
.calm-reminder,
.injection-box p {
  color: var(--muted);
}

.fraud-grid h3 {
  margin-bottom: 12px;
}

.fraud-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
  line-height: 1.35;
}

.pressure-grid,
.change-list,
.data-grid,
.response-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pressure-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.change-list,
.data-grid,
.response-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pressure-grid span,
.change-list span,
.data-grid span,
.response-steps span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 780;
  line-height: 1.28;
  box-shadow: 0 10px 26px rgba(35, 52, 62, 0.04);
}

.pressure-grid span {
  border-color: rgba(151, 113, 48, 0.2);
  background: rgba(255, 250, 241, 0.86);
}

.data-grid span {
  border-color: rgba(151, 60, 48, 0.18);
  background: rgba(249, 232, 229, 0.68);
}

.safety-rule {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 4px solid #b47b36;
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.92);
  color: #7b4f1d;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 850;
}

.agent-section {
  background:
    linear-gradient(135deg, rgba(239, 237, 248, 0.74), rgba(255, 255, 255, 0.82)),
    var(--panel-strong);
}

.agent-grid strong {
  display: block;
  line-height: 1.35;
}

.injection-box {
  border-color: rgba(117, 105, 168, 0.2);
}

.injection-box h3 {
  margin-bottom: 12px;
}

.injection-box strong {
  display: block;
  margin-top: 14px;
  color: var(--violet);
}

.checklist-section {
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.82), rgba(255, 255, 255, 0.82)),
    var(--panel-strong);
}

.safety-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: safety-check;
}

.safety-checklist li {
  counter-increment: safety-check;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 760;
  box-shadow: 0 10px 26px rgba(35, 52, 62, 0.04);
}

.safety-checklist li::before {
  content: counter(safety-check);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.response-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 245, 239, 0.76)),
    var(--panel-strong);
}

.reading-levels {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 245, 239, 0.72)),
    var(--panel-strong);
}

.simple-rule-section {
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.88), rgba(255, 255, 255, 0.78)),
    var(--panel-strong);
}

.short-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 245, 239, 0.62)),
    var(--panel-strong);
}

.deep-section {
  background:
    linear-gradient(135deg, rgba(239, 237, 248, 0.74), rgba(234, 243, 251, 0.62)),
    var(--panel-strong);
}

.comparison-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 243, 251, 0.7)),
    var(--panel-strong);
}

.reading-levels p,
.short-section p,
.deep-section p,
.comparison-section p,
.response-section .final-note p {
  max-width: 680px;
}

.level-grid,
.simple-rule-grid,
.scenario-grid,
.then-now-grid,
.injection-flow {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.level-grid,
.then-now-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-rule-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.injection-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.level-card,
.simple-rule-grid article,
.scenario-card,
.then-now-grid article,
.injection-flow article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.simple-rule-grid article {
  display: grid;
  align-content: start;
  min-height: 190px;
}

.simple-rule-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.simple-rule-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.simple-rule-grid p {
  margin: 0;
  color: var(--muted);
}

.level-card span,
.scenario-card span,
.then-now-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.short-level span,
.scenario-card span {
  background: var(--soft-green);
  color: var(--green);
}

.deep-level span {
  background: var(--soft-blue);
  color: var(--blue);
}

.level-card h3,
.scenario-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 2vw, 1.4rem);
}

.level-card p,
.scenario-card p,
.then-now-grid li {
  color: var(--muted);
}

.everyday-grid article {
  min-height: 190px;
}

.remember-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(45, 117, 107, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: 0 12px 32px rgba(35, 52, 62, 0.05);
}

.remember-box span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.remember-box strong {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
  line-height: 1.34;
}

.remember-box.warm {
  border-color: rgba(151, 113, 48, 0.22);
  background:
    linear-gradient(135deg, rgba(247, 239, 224, 0.92), rgba(255, 255, 255, 0.76));
}

.remember-box.warm span {
  color: #8a5c24;
}

.remember-box.blue {
  border-color: rgba(65, 109, 152, 0.22);
  background:
    linear-gradient(135deg, rgba(234, 243, 251, 0.94), rgba(255, 255, 255, 0.76));
}

.remember-box.blue span {
  color: var(--blue);
}

.quiet-note {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(65, 109, 152, 0.18);
  border-radius: 20px;
  background: rgba(234, 243, 251, 0.72);
}

.quiet-note strong {
  display: block;
  color: var(--blue);
}

.quiet-note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quiet-note a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(65, 109, 152, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--blue);
  font-weight: 800;
}

.quiet-note a:hover,
.quiet-note a:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.forum-request-action {
  margin-top: 18px;
}

.quiet-note .request-button {
  min-height: 54px;
  padding: 14px 20px;
  border: 2px solid rgba(31, 109, 99, 0.3);
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 109, 99, 0.18);
  font-size: 1.04rem;
  font-weight: 850;
}

.quiet-note .request-button:hover,
.quiet-note .request-button:focus-visible {
  background: #18584f;
  color: #ffffff;
  outline: 3px solid rgba(31, 109, 99, 0.24);
  outline-offset: 3px;
}

.help-card {
  margin-bottom: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(45, 117, 107, 0.2);
  border-radius: 20px;
  background: rgba(232, 245, 239, 0.78);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.help-card strong {
  display: block;
  color: var(--green);
  font-size: 1.12rem;
}

.help-card p {
  max-width: 880px;
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.then-now-grid article:first-child {
  background: rgba(255, 255, 255, 0.9);
}

.then-now-grid article:last-child {
  border-color: rgba(45, 117, 107, 0.18);
  background: rgba(232, 245, 239, 0.72);
}

.then-now-grid article:first-child span {
  background: rgba(247, 239, 224, 0.9);
  color: #8a5c24;
}

.then-now-grid article:last-child span {
  background: var(--soft-green);
  color: var(--green);
}

.then-now-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

.injection-flow article {
  position: relative;
  min-height: 128px;
}

.injection-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(117, 105, 168, 0.35);
  border-right: 2px solid rgba(117, 105, 168, 0.35);
  transform: translateY(-50%) rotate(45deg);
}

.injection-flow span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-weight: 900;
}

.injection-flow strong {
  display: block;
  color: var(--ink);
  line-height: 1.32;
}

.response-section .final-note {
  background:
    linear-gradient(135deg, rgba(232, 245, 239, 0.9), rgba(255, 255, 255, 0.78));
}

.response-section .final-note p {
  margin: 0;
}

.response-section .final-note p + p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
}

.news-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(234, 243, 251, 0.7)),
    var(--panel-strong);
}

.news-list-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 239, 224, 0.5)),
    var(--panel-strong);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.news-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.news-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.news-card p {
  color: var(--muted);
}

.news-card strong {
  display: block;
  margin: 4px 0 20px;
  color: var(--green);
  line-height: 1.35;
}

.news-card .article-link {
  margin-top: auto;
}

.feature-news-card {
  border-color: rgba(117, 105, 168, 0.22);
  background:
    linear-gradient(135deg, rgba(239, 237, 248, 0.82), rgba(255, 255, 255, 0.78));
}

.case-page .article-header {
  max-width: 920px;
}

.case-flow,
.source-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.case-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-flow article,
.source-card-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.case-flow span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-weight: 900;
}

.case-flow strong,
.source-card-grid h3 {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.3;
}

.case-flow p,
.source-card-grid p,
.case-page .final-note p {
  color: var(--muted);
}

.case-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-page .article-header {
  max-width: 900px;
}

.legal-page .article-header h1 {
  max-width: 100%;
  font-size: clamp(2.45rem, 5.2vw, 4.45rem);
}

.legal-info-card {
  max-width: 720px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.legal-info-card p {
  margin: 0;
  color: var(--muted);
}

.legal-info-card p + p {
  margin-top: 8px;
}

.legal-info-card strong,
.legal-info-card a {
  color: var(--green);
  font-weight: 850;
}

.tool-choice-grid,
.decision-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.tool-choice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tool-choice-grid article,
.decision-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.tool-choice-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.tool-choice-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.26;
}

.tool-choice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.decision-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.decision-list strong {
  color: var(--ink);
}

.decision-list span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pressure-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .change-list,
  .data-grid,
  .response-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-grid,
  .fraud-grid,
  .agent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scenario-grid,
  .simple-rule-grid,
  .news-card-grid,
  .case-flow,
  .source-card-grid,
  .case-steps,
  .tool-choice-grid,
  .injection-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .injection-flow article:not(:last-child)::after { display: none; }
}

@media (max-width: 840px) {
  .side-path { display: block; }

  .nav-section,
  .directory-section {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .nav-title {
    display: none;
  }

  .page-nav {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding: 0 2px 6px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .page-link {
    min-height: 40px;
    flex: 0 0 auto;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
  }

  .page-hero { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .article-grid { grid-template-columns: 1fr; }
  .page-hero,
  .placeholder-panel { padding: 24px; }
  .signal-grid,
  .fraud-grid,
  .agent-grid,
  .pressure-grid,
  .change-list,
  .data-grid,
  .response-steps,
  .safety-checklist,
  .level-grid,
  .simple-rule-grid,
  .scenario-grid,
  .news-card-grid,
  .case-flow,
  .source-card-grid,
  .case-steps,
  .tool-choice-grid,
  .decision-list,
  .member-detail-grid,
  .then-now-grid,
  .injection-flow { grid-template-columns: 1fr; }

  .decision-list div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Einzelne Theorie-Beiträge */
.article-page {
  padding: clamp(30px, 6vw, 72px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  background: var(--soft-green);
}

.article-header {
  max-width: 860px;
  margin-bottom: 46px;
}

.article-header h1,
.article-header h2 {
  margin-top: 14px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.article-header p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.article-section {
  max-width: 920px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  font-size: clamp(1.72rem, 3.2vw, 2.55rem);
}

.article-section p,
.article-list {
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.14rem);
}

body[data-page="alltagshilfen"] .article-page .article-header {
  margin-bottom: 34px;
}

body[data-page="alltagshilfen"] .article-page .article-header h1 {
  font-size: clamp(2.45rem, 5.1vw, 4.2rem);
  line-height: 1.08;
}

body[data-page="alltagshilfen"] .article-page .article-section h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.22;
  margin-bottom: 18px;
}

body[data-page="alltagshilfen"] .article-page .safety-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  gap: 16px;
}

body[data-page="alltagshilfen"] .article-page .safety-checklist li {
  min-height: 86px;
  padding: 18px 20px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body[data-page="alltagshilfen"] .article-page .safety-checklist {
    grid-template-columns: 1fr;
  }
}

.comparison-grid,
.article-card-list,
.traffic-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card-list,
.traffic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-grid > div,
.article-card-list > div,
.traffic-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.comparison-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.comparison-grid strong,
.article-card-list strong,
.traffic-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
}

.article-card-list p,
.comparison-grid p,
.traffic-card p {
  margin-bottom: 0;
}

.calm-callout,
.final-note {
  max-width: none;
  margin: 12px 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(232, 245, 239, 0.84), rgba(234, 243, 251, 0.72));
}

.article-rule {
  color: var(--green) !important;
  font-weight: 850;
}

.article-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.traffic-card.green { background: rgba(232, 245, 239, 0.9); }
.traffic-card.yellow { background: rgba(250, 243, 224, 0.9); }
.traffic-card.red { background: rgba(249, 232, 229, 0.86); }

blockquote {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  font-weight: 780;
}

@media (max-width: 900px) {
  .comparison-grid,
  .article-card-list,
  .traffic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .article-page {
    padding: 24px;
  }
}

/* Natürliche Weiterführung nach Artikeln */
.next-steps-section {
  max-width: none;
  margin-top: 12px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(45, 117, 107, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 245, 239, 0.72));
}

.next-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.next-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.next-card h3 {
  margin-top: 14px;
}

.next-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.next-card .article-link,
.focus-link {
  margin-top: auto;
}

.focus-link {
  display: inline-flex;
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .next-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .next-card-grid { grid-template-columns: 1fr; }
}

/* Anklickbares Beispiel im Chat-KI-Artikel */
.prompt-example {
  display: block;
  width: 100%;
  margin: 22px 0;
  padding: 20px 22px;
  border: 0;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.prompt-example:hover,
.prompt-example:focus-visible {
  background: var(--soft-green);
  outline: none;
}

.meal-popover {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 18px;
  padding: 11px 16px;
  border: 1px solid rgba(45, 117, 107, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(35, 52, 62, 0.08);
}

.meal-popover[hidden] {
  display: none;
}

.standalone-next-link {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.standalone-next-link .focus-link {
  margin-top: 0;
}

/* Praxis: Prompting-Beitrag */
.prompt-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.prompt-box,
.prompt-rule-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.prompt-box.weak {
  background: rgba(249, 232, 229, 0.72);
}

.prompt-box.strong {
  background: rgba(232, 245, 239, 0.86);
}

.prompt-box h3 {
  margin-top: 14px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.28;
}

.prompt-box p,
.prompt-rule-grid p,
.source-note {
  color: var(--muted);
}

.prompt-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.prompt-rule-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 850;
}

.prompt-rule-grid h3 {
  margin-top: 16px;
}

.prompt-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.prompt-formula span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 820;
}

.prompt-formula strong {
  color: var(--green);
  font-size: 1.35rem;
}

.source-note {
  max-width: 920px;
  margin: 28px 0 0;
  font-size: 0.95rem;
}

.source-note a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .prompt-rule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .prompt-compare,
  .prompt-rule-grid { grid-template-columns: 1fr; }
}

/* Rezept-Beispiele */
.recipe-preview-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.recipe-preview-card h3 {
  margin-top: 14px;
}

.recipe-preview-card p {
  color: var(--muted);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.recipe-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.recipe-grid h3 {
  margin-bottom: 12px;
}

.recipe-grid p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .recipe-grid { grid-template-columns: 1fr; }
}

.recipe-photo {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(35, 52, 62, 0.08);
}

.recipe-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.recipe-photo figcaption {
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Rezept-Ablaufplan */
.timing-section {
  max-width: none;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.timeline-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(35, 52, 62, 0.05);
}

.timeline-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 820;
}

.timeline-grid h3 {
  font-size: 1.12rem;
}

.timeline-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.timing-note {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(45, 117, 107, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 245, 239, 0.86), rgba(234, 243, 251, 0.7));
}

.timing-note p {
  color: var(--muted);
}

@media (max-width: 760px) {
  .timeline-grid { grid-template-columns: 1fr; }
}
