/* =====================================================================
   hella-gutmann-services.de.com — Redaktion für Informationskompetenz
   Warmes editoriales Layout: Papier-Hintergrund, ein Akzent (Teal).
   Serif-Display für Überschriften, Sans für Fließtext.
   ===================================================================== */

:root {
  --qk-bg: #f7f4ee;        /* warmes Papier */
  --qk-ink: #23201b;       /* Tinte */
  --qk-muted: #6a6459;     /* gedämpft */
  --qk-accent: #17635a;    /* tiefes Teal (einziger Akzent) */
  --qk-hairline: #e0dccf;  /* Haarlinie */
  --qk-paper-2: #fbf9f4;   /* helleres Papier für Karten */
  --qk-shade: #1c1a15;     /* dunkler Overlay-Ton */

  /* Serif-Display + Sans-Body */
  --qk-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --qk-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --qk-maxprose: 72ch;
  --qk-radius: 12px;

  /* CMP-Variablen (Verhalten identisch, nur Farben/Radius angepasst) */
  --accent: #17635a;
  --cmp-bg: #fbf9f4;
  --cmp-fg: #23201b;
  --cmp-bd: #e0dccf;
  --cmp-radius: 12px;
  --muted: #6a6459;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--qk-bg);
  color: var(--qk-ink);
  font-family: var(--qk-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Skip-Link ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--qk-accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 1200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Typografie ---- */
h1, h2, h3 {
  font-family: var(--qk-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--qk-ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: 0 0 0.5em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin: 1.8em 0 0.55em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); margin: 1.5em 0 0.4em; }

p { margin: 0 0 1.05em; }

a { color: var(--qk-accent); text-decoration: none; }
a:hover, a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--qk-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

strong { font-weight: 650; }

.kicker {
  font-family: var(--qk-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 650;
  color: var(--qk-accent);
  margin: 0 0 0.9rem;
}

.muted { color: var(--qk-muted); }

/* ---- Layout-Hüllen ---- */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.4rem);
}
.prose {
  max-width: var(--qk-maxprose);
  margin: 0 auto;
}

.section { padding: clamp(3rem, 7vw, 5.2rem) 0; }
.section + .section { border-top: 1px solid var(--qk-hairline); }

/* =====================================================================
   Kopfzeile — editorial_index_nav (Wortmarke + horizontale Index-Links)
   ===================================================================== */
.site-head {
  border-bottom: 1px solid var(--qk-hairline);
  background: var(--qk-bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-head .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.wordmark {
  font-family: var(--qk-serif);
  font-size: clamp(1.02rem, 3.3vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--qk-ink);
  overflow-wrap: anywhere;
}
.wordmark:hover { text-decoration: none; }
.wordmark span { color: var(--qk-accent); }

.index-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.15rem;
  font-size: 0.95rem;
}
.index-nav a {
  color: var(--qk-muted);
  padding: 0.15rem 0;
  border-bottom: 2px solid transparent;
}
.index-nav a:hover,
.index-nav a[aria-current="page"] {
  color: var(--qk-ink);
  text-decoration: none;
  border-bottom-color: var(--qk-accent);
}

/* =====================================================================
   Reading-Progress-Bar
   ===================================================================== */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--qk-accent);
  z-index: 60;
  transition: width 0.08s linear;
}
@media (prefers-reduced-motion: reduce) {
  .read-progress { transition: none; }
}

/* =====================================================================
   Hero — links ausgerichtet, Overlay dunkelt von links nach rechts
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(20,20,16,.72), rgba(20,20,16,.15)),
    url("../img/home-hero.jpg");
  background-size: cover;
  background-position: center right;
  color: #f6f2ea;
}
.hero .wrap { width: 100%; }
.hero-inner {
  max-width: 40rem;
  padding: clamp(3rem, 9vh, 6rem) 0;
}
.hero .kicker { color: #dce7e2; }
.hero h1 {
  color: #fbf9f4;
  font-size: clamp(2.3rem, 5.5vw, 3.7rem);
  margin-bottom: 0.6em;
}
.hero .standfirst {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #ece7dd;
  max-width: 34rem;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,.55);
  padding-bottom: 2px;
}
.hero-link:hover { text-decoration: none; border-bottom-color: #fff; }
.hero-link svg { transition: transform 0.2s ease; }
.hero-link:hover svg { transform: translateX(3px); }

/* Einblend-Kaskade beim Laden */
.rise { opacity: 0; transform: translateY(14px); animation: rise 0.7s ease forwards; }
.rise.d1 { animation-delay: 0.08s; }
.rise.d2 { animation-delay: 0.18s; }
.rise.d3 { animation-delay: 0.28s; }
.rise.d4 { animation-delay: 0.38s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; animation: none; }
}

/* =====================================================================
   Startseite — mission_thesis
   ===================================================================== */
.thesis .lead {
  font-family: var(--qk-serif);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.4;
  color: var(--qk-ink);
  max-width: 40ch;
}
.thesis .body { max-width: 60ch; color: var(--qk-muted); }

/* =====================================================================
   longform_index — featured_plus_list (1 Feature + Liste)
   ===================================================================== */
.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.section-label h2 { margin: 0; }
.section-label .all-link { font-size: 0.95rem; font-weight: 600; }

/* Feature-Longread */
.feature {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  grid-template-columns: 1fr;
  align-items: center;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--qk-hairline);
}
@media (min-width: 820px) {
  .feature { grid-template-columns: 1.05fr 1fr; }
}
.feature-media {
  border-radius: var(--qk-radius);
  overflow: hidden;
  border: 1px solid var(--qk-hairline);
  background: var(--qk-paper-2);
}
.feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.feature-body .kicker { margin-bottom: 0.55rem; }
.feature-body h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}
.feature-body h3 a { color: var(--qk-ink); }
.feature-body h3 a:hover { color: var(--qk-accent); text-decoration: none; }
.feature-body p { color: var(--qk-muted); max-width: 46ch; }

/* Liste der übrigen Longreads */
.longform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.longform-list li { border-bottom: 1px solid var(--qk-hairline); }
.longform-list li:first-child { border-top: 1px solid var(--qk-hairline); }
.lf-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.4rem;
  align-items: baseline;
  padding: 1.3rem 0.2rem;
  transition: background 0.15s ease;
}
.lf-item:hover { background: rgba(23,99,90,0.04); }
.lf-num {
  font-family: var(--qk-serif);
  font-size: 1.1rem;
  color: var(--qk-accent);
  font-variant-numeric: tabular-nums;
  padding-top: 0.15rem;
}
.lf-main h3 { font-size: 1.3rem; margin: 0 0 0.25rem; }
.lf-main h3 a { color: var(--qk-ink); }
.lf-main h3 a:hover { color: var(--qk-accent); text-decoration: none; }
.lf-main p { margin: 0 0 0.4rem; color: var(--qk-muted); font-size: 0.98rem; max-width: 60ch; }
.lf-meta { font-size: 0.82rem; color: var(--qk-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* =====================================================================
   editorial_boundary + trust_disclosure
   ===================================================================== */
.two-col {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.boundary-list { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.boundary-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--qk-hairline);
  align-items: start;
}
.boundary-list li:last-child { border-bottom: 0; }
.boundary-list svg { color: var(--qk-accent); flex: none; margin-top: 0.2rem; }

.trust-card {
  background: var(--qk-paper-2);
  border: 1px solid var(--qk-hairline);
  border-radius: var(--qk-radius);
  padding: 1.4rem 1.5rem;
}
.trust-card h3 { margin-top: 0; }
.trust-card .legal-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.95rem;
}

/* Kleiner Haftungs-Hinweis (data-audit-exclude) */
.legal-note {
  background: var(--qk-paper-2);
  border-left: 3px solid var(--qk-accent);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.1rem;
  margin: 1.6rem 0;
  font-size: 0.9rem;
  color: var(--qk-muted);
}
.legal-note p { margin: 0; }

/* =====================================================================
   Inhalts-/Artikelseiten — schmale Prosaspalte + sticky TOC via Grid
   ===================================================================== */
.page-head { padding: clamp(2.2rem, 5vw, 3.4rem) 0 0; }
.breadcrumb { font-size: 0.86rem; color: var(--qk-muted); margin-bottom: 1.1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.35rem; }
.breadcrumb li + li::before { content: "/"; color: var(--qk-hairline); }
.breadcrumb a { color: var(--qk-muted); }
.breadcrumb a:hover { color: var(--qk-accent); }
.breadcrumb [aria-current="page"] { color: var(--qk-ink); }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.86rem;
  color: var(--qk-muted);
  margin: 0.9rem 0 0;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--qk-hairline);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.2rem) 0 1rem;
}
@media (min-width: 900px) {
  .article-layout { grid-template-columns: 230px minmax(0, 1fr); }
}

/* Sticky-TOC */
.toc {
  align-self: start;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  .toc { position: sticky; top: 92px; }
}
.toc-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--qk-muted);
  margin: 0 0 0.7rem;
}
.toc ol { list-style: none; margin: 0; padding: 0; }
.toc li { margin: 0; }
.toc a {
  display: block;
  padding: 0.32rem 0 0.32rem 0.8rem;
  border-left: 2px solid var(--qk-hairline);
  color: var(--qk-muted);
  line-height: 1.35;
}
.toc a:hover { color: var(--qk-ink); text-decoration: none; border-left-color: var(--qk-muted); }
.toc a.is-active {
  color: var(--qk-accent);
  border-left-color: var(--qk-accent);
  font-weight: 600;
}

/* Artikel-Prosa */
.article-body { max-width: var(--qk-maxprose); }
.article-body .standfirst {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--qk-ink);
  margin-bottom: 1.6rem;
}
.article-body figure { margin: 2rem 0; }
.article-body figure img {
  width: 100%;
  height: auto;
  border-radius: var(--qk-radius);
  border: 1px solid var(--qk-hairline);
  display: block;
}
.article-body figcaption {
  font-size: 0.85rem;
  color: var(--qk-muted);
  margin-top: 0.6rem;
  line-height: 1.45;
}
.article-body ul, .article-body ol { padding-left: 1.3rem; margin: 0 0 1.1em; }
.article-body li { margin-bottom: 0.4em; }
.article-body h2 { scroll-margin-top: 100px; }
.article-body h3 { scroll-margin-top: 100px; }

.source-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1.1em;
}
.source-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--qk-hairline);
}
.source-list li:last-child { border-bottom: 0; }

/* Native FAQ */
.faq { margin: 1.4rem 0; }
.faq details {
  border: 1px solid var(--qk-hairline);
  border-radius: 10px;
  background: var(--qk-paper-2);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform 0.2s ease; color: var(--qk-accent); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details > div { padding: 0 1.1rem 1rem; color: var(--qk-ink); }
.faq details > div p { margin: 0; }

/* Weiterlesen-Liste */
.read-more {
  margin: 2.2rem 0 0;
  padding: 1.4rem 1.5rem;
  background: var(--qk-paper-2);
  border: 1px solid var(--qk-hairline);
  border-radius: var(--qk-radius);
}
.read-more h2 { margin-top: 0; font-size: 1.25rem; }
.read-more ul { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.read-more li { padding: 0.35rem 0; border-bottom: 1px solid var(--qk-hairline); }
.read-more li:last-child { border-bottom: 0; }

/* Prev/Next + Zurück */
.article-nav {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 2.4rem 0 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--qk-hairline);
}
@media (min-width: 640px) {
  .article-nav { grid-template-columns: 1fr 1fr; }
}
.article-nav a {
  display: block;
  padding: 1rem 1.2rem;
  border: 1px solid var(--qk-hairline);
  border-radius: var(--qk-radius);
  background: var(--qk-paper-2);
  color: var(--qk-ink);
}
.article-nav a:hover { border-color: var(--qk-accent); text-decoration: none; }
.article-nav .dir { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--qk-muted); margin-bottom: 0.25rem; }
.article-nav .next { text-align: right; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem; font-weight: 600; }

/* =====================================================================
   Themenübersicht — gruppierte Leseabschnitte
   ===================================================================== */
.arc { margin-top: 2.4rem; }
.arc-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  border-bottom: 2px solid var(--qk-accent);
  padding-bottom: 0.5rem;
  margin-bottom: 0.4rem;
}
.arc-head h2 { margin: 0; font-size: 1.5rem; }
.arc-head .arc-tag { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--qk-muted); }

/* =====================================================================
   Redaktion / About / Methodik — Textbausteine
   ===================================================================== */
.standard-list { margin: 0.6rem 0 1.2em; padding-left: 0; list-style: none; }
.standard-list li {
  padding: 0.7rem 0 0.7rem 0;
  border-bottom: 1px solid var(--qk-hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}
.standard-list li:last-child { border-bottom: 0; }
.standard-list svg { color: var(--qk-accent); flex: none; margin-top: 0.15rem; }
.standard-list strong { display: block; }

.def-box {
  background: var(--qk-paper-2);
  border: 1px solid var(--qk-hairline);
  border-radius: var(--qk-radius);
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
}

/* =====================================================================
   Kontakt
   ===================================================================== */
.contact-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
}
.contact-details { list-style: none; margin: 0; padding: 0; }
.contact-details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--qk-hairline);
  align-items: start;
}
.contact-details li:last-child { border-bottom: 0; }
.contact-details svg { color: var(--qk-accent); flex: none; margin-top: 0.2rem; }
.contact-details a { color: var(--qk-ink); }
.contact-details a:hover { color: var(--qk-accent); }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.95rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--qk-ink);
  background: var(--qk-paper-2);
  border: 1px solid var(--qk-hairline);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid var(--qk-accent); outline-offset: 1px; border-color: var(--qk-accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 1.3rem;
  border-radius: 10px;
  border: 1px solid var(--qk-accent);
  background: var(--qk-accent);
  color: #fff;
}
.btn:hover { text-decoration: none; background: #12534b; border-color: #12534b; }
.btn-secondary { background: transparent; color: var(--qk-accent); }
.btn-secondary:hover { background: rgba(23,99,90,0.08); color: var(--qk-accent); }

.map-shell {
  margin-top: 1.2rem;
  border: 1px solid var(--qk-hairline);
  border-radius: var(--qk-radius);
  overflow: hidden;
  background: var(--qk-paper-2);
}
.map-placeholder {
  padding: 1.4rem;
  text-align: center;
}
.map-placeholder p { color: var(--qk-muted); font-size: 0.9rem; }
.map-shell iframe { display: block; width: 100%; height: 340px; border: 0; }

/* =====================================================================
   Rechtstexte — einfache Prosa
   ===================================================================== */
.legal-page { padding: clamp(2rem, 5vw, 3rem) 0; }
.legal-page .prose h2 { font-size: 1.4rem; }
.legal-page dl { margin: 0.6rem 0 1.4rem; }
.legal-page dt { font-weight: 650; margin-top: 0.9rem; }
.legal-page dd { margin: 0.2rem 0 0; color: var(--qk-muted); }
.updated-note { font-size: 0.9rem; color: var(--qk-muted); margin-bottom: 1.4rem; }

/* =====================================================================
   Fußzeile — editorial_index (Spalten)
   ===================================================================== */
.site-foot {
  border-top: 1px solid var(--qk-hairline);
  background: var(--qk-paper-2);
  padding: clamp(2.4rem, 5vw, 3.4rem) 0 2rem;
  font-size: 0.92rem;
}
.foot-cols {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .foot-cols { grid-template-columns: 1.5fr 1fr 1fr; }
}
.foot-brand .wordmark { font-size: 1.1rem; }
.foot-disclaimer { color: var(--qk-muted); max-width: 40ch; margin: 0.8rem 0 0; font-size: 0.88rem; line-height: 1.55; }
.foot-col h4 {
  font-family: var(--qk-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--qk-muted);
  margin: 0 0 0.7rem;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 0.4rem; }
.foot-col a { color: var(--qk-ink); }
.foot-col a:hover { color: var(--qk-accent); }
.footer-cmp {
  font: inherit;
  font-size: 0.92rem;
  color: var(--qk-ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.footer-cmp:hover { color: var(--qk-accent); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--qk-hairline);
  color: var(--qk-muted);
  font-size: 0.85rem;
}

/* =====================================================================
   Zwei-Zustands-CMP (aus COMMON §3 — Verhalten unverändert)
   ===================================================================== */
.cmp-root{position:fixed;left:0;right:0;bottom:0;z-index:1000;display:flex;
  justify-content:center;padding:12px;pointer-events:none}
.cmp-bar,.cmp-panel{pointer-events:auto;background:var(--cmp-bg,#ffffff);
  color:var(--cmp-fg,#1c1f26);border:1px solid var(--cmp-bd,#d9dde3);
  border-radius:var(--cmp-radius,14px);box-shadow:0 12px 40px -18px rgba(20,24,32,.45);
  width:100%;max-width:960px}
.cmp-bar{display:flex;flex-wrap:wrap;gap:12px;align-items:center;
  justify-content:space-between;padding:14px 18px}
.cmp-bar-text{margin:0;font-size:.92rem;line-height:1.5;flex:1 1 320px}
.cmp-bar-actions,.cmp-actions{display:flex;flex-wrap:wrap;gap:8px}
.cmp-panel{padding:20px 22px;max-height:80vh;overflow:auto}
.cmp-title{margin:0 0 8px;font-size:1.15rem}
.cmp-text{margin:0 0 14px;font-size:.9rem;line-height:1.6}
.cmp-row{border-top:1px solid var(--cmp-bd,#e4e7ec);padding:12px 0}
.cmp-row-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.cmp-row-title{font-weight:600}
.cmp-row-desc{margin:6px 0 0;font-size:.85rem;line-height:1.5;color:var(--muted,#5b626e)}
.cmp-switch{position:relative;display:inline-block;width:44px;height:24px;flex:none}
.cmp-switch input{position:absolute;opacity:0;width:100%;height:100%;margin:0;cursor:pointer}
.cmp-slider{position:absolute;inset:0;background:#c3c8d0;border-radius:999px;transition:.2s}
.cmp-slider::before{content:"";position:absolute;height:18px;width:18px;left:3px;top:3px;
  background:#fff;border-radius:50%;transition:.2s}
.cmp-switch input:checked+.cmp-slider{background:var(--accent,#1f7a5a)}
.cmp-switch input:checked+.cmp-slider::before{transform:translateX(20px)}
.cmp-switch input:disabled+.cmp-slider{opacity:.6}
.cmp-sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.cmp-actions{justify-content:flex-end;margin-top:16px}
.cmp-btn{font:inherit;font-size:.88rem;padding:9px 15px;border-radius:10px;
  border:1px solid var(--cmp-bd,#c9ced6);cursor:pointer;background:#f3f5f8;color:#1c1f26}
.cmp-btn-primary{background:var(--accent,#1f7a5a);border-color:var(--accent,#1f7a5a);color:#fff}
.cmp-btn:active{transform:translateY(1px)}
@media(max-width:640px){.cmp-bar{flex-direction:column;align-items:stretch}
  .cmp-bar-actions,.cmp-actions{justify-content:stretch}
  .cmp-btn{flex:1 1 auto;text-align:center}}

/* footer audit-compat: heading->p, cmp button->a (added post-build) */
.foot-col-title{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin:0 0 .55rem;opacity:.9}
a.footer-cmp{display:inline;background:none;border:0;padding:0;margin:0;font:inherit;color:inherit;text-decoration:underline;text-underline-offset:2px;cursor:pointer}
.foot-strong{font-weight:700}

/* mobile hardening (added post-audit): prevent image + long-German-word overflow on small screens */
img { max-width: 100%; height: auto; }
body { overflow-wrap: break-word; }
h1, h2, h3, h4 { overflow-wrap: break-word; hyphens: auto; }
