﻿:root {
  --bg: #f4f0e8;
  --surface: #fffaf2;
  --ink: #1f2a2e;
  --muted: #5b6469;
  --brand: #c2410c;
  --line: #d2c7b8;
  --accent: #14532d;
  --accent-2: #1c7c43;
  --shadow: 0 16px 40px rgba(31, 42, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  background-color: var(--bg);
  line-height: 1.5;
  position: relative;
}

button,
input,
select,
textarea {
  font: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, #ffe5c3 0%, transparent 30%),
    radial-gradient(circle at 88% 0%, #dbece2 0%, transparent 24%),
    var(--bg);
  line-height: 1.5;
}


.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 2px);
  opacity: 0.25;
}

.layout {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.hero.hero-full {
  width: 100%;
  margin: 0;
  padding: 1.6rem 0 1.4rem;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.7));
  border-bottom: 1px solid var(--line);
}

.hero-full-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  line-height: 0;
}

.hero-logo-link:focus-visible {
  outline: 2px solid #1c7c43;
  outline-offset: 3px;
  border-radius: 8px;
}

.hero-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  max-width: none;
  margin: 0;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.hero-full-inner h1 {
  flex: 1 1 auto;
}

/* Header-Regel: Einzel-CTA der Unterseiten sitzt immer rechtsbündig,
   unabhängig von der Titellänge — kein Umbruch, keine Drift. */
.hero-full-inner > .cta-button {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  margin-left: auto;
  align-items: center;
  align-self: center;
}

.hero-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  min-width: 0;
  height: 3rem;
  min-height: 3rem;
  line-height: 1;
  flex: 0 0 auto;
  padding: 0 0.9rem;
}

.hero-support-text {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  line-height: 1;
  flex: 0 0 auto;
}

.hero-support-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Generic icon for header CTA buttons (home, documents, …) */
.header-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  line-height: 1;
  flex: 0 0 auto;
}

.header-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.word-yes {
  color: #15803d;
}

.word-no {
  color: #b91c1c;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 3rem;
  min-height: 3rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #0f4022;
}

/* Primärer Button: grüner Gradient für „Nächster Schritt"-CTAs */
.cta-button.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 8px 20px rgba(20, 83, 45, 0.22);
}

.cta-button.btn-primary:hover,
.cta-button.btn-primary:focus-visible {
  background: linear-gradient(135deg, #0f4022 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 26px rgba(20, 83, 45, 0.3);
  transform: translateY(-1px);
}

.cta-button.btn-primary:active {
  transform: translateY(0);
}

/* Sekundärer (Ghost-)Button: Creme-Hintergrund + Linie, für „Zur
   News-Übersicht" und andere nicht-primäre Klicks im Artikel-Fuß. */
.cta-button.btn-ghost {
  background: #fffef8;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.cta-button.btn-ghost:hover,
.cta-button.btn-ghost:focus-visible {
  background: #fffdf6;
  border-color: #b7aa96;
  color: var(--accent);
  transform: translateY(-1px);
}

.layout {
  display: grid;
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Stellungnahmen-Banner (Hauptseite, kurzfristiger Hinweis) */
/* Wrapper: gleiche Breite wie .layout, aber KEIN 2-Spalten-Grid (Desktop-Fix) */
.stn-banner-wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding-top: 1.15rem;
  padding-bottom: 1rem;
}
.stn-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.4rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1.5px solid var(--brand);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .18s ease;
}
.stn-banner:hover,
.stn-banner:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(31, 42, 46, 0.16);
}
.stn-banner-text { display: flex; flex-direction: column; gap: 2px; }
.stn-banner-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.stn-banner-sub { font-size: 0.86rem; color: var(--muted); font-weight: 500; }
.stn-banner-cta {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(20, 83, 45, 0.2);
  white-space: nowrap;
}

.problem ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.section-title {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.problem-principles-text {
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  line-height: 1.5;
  color: #26323b;
  margin: 0 0 1rem;
}

.problem-red {
  color: #c0392b;
}

.problem-visual-link {
  display: block;
  margin: 0 0 0.85rem;
}

.problem-visual {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: block;
}

.problem li {
  margin-bottom: 0.35rem;
}

.problem a {
  color: var(--accent);
  font-weight: 600;
}

.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}

.timeline-head p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  position: relative;
  padding: 0.6rem 0 0.9rem 1.3rem;
  border-left: 2px solid var(--line);
}

.news-item::before {
  content: "";
  position: absolute;
  left: -0.36rem;
  top: 0.8rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--brand);
}


.news-date {
  display: inline;
  color: var(--muted);
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
}

.news-title {
  display: inline;
  font-weight: 700;
}

.news-title[href] {
  color: #2563eb;
  text-decoration: none;
}

.news-title[href]:hover {
  text-decoration: underline;
}

.news-text {
  margin: 0.2rem 0 0;
  color: var(--ink);
}

.news-park-highlight {
  font-weight: 700;
}

.news-park-1 {
  color: #d4a017;
}

.news-park-2 {
  color: #2563eb;
}

.news-park-3 {
  color: #e5382f;
}

.news-more-item {
  list-style: none;
  padding-top: 0.35rem;
}

.news-more-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.news-more-button:hover,
.news-more-button:focus-visible {
  color: var(--brand);
}

.news-item a {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 0.93rem;
  padding: 1rem 0 1.05rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.7));
}

.site-footer-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.footer-shell {
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0 0.8rem;
}

.footer-column,
.footer-brand {
  min-height: 100%;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.12), rgba(20, 83, 45, 0.12));
  box-shadow: inset 0 0 0 1px rgba(210, 199, 184, 0.8);
}

.footer-brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand-copy p {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
}

.footer-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.footer-copy {
  margin: 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-email {
  display: inline-flex;
  width: fit-content;
  padding: 0.1rem 0;
  font-size: 0.98rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 83, 45, 0.28);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.7rem 0.15rem 0;
}

/* Abmelden im Footer (Smartphone, ≤480px — logout.js wandert dorthin):
   diskretes Ghost-Button statt grüner CTA-Optik */
.footer-bottom .ejun-logout {
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0 1rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(20, 83, 45, 0.28);
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-bottom .ejun-logout:hover {
  background: rgba(20, 83, 45, 0.07);
  border-color: rgba(20, 83, 45, 0.45);
}

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

.footer-version {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* "Abmelden" (logout.js) im Hero-Header: Ghost-Button direkt NEBEN dem
   Zurück-/Haupt-CTA, NUR bei aktiver Session (Cookie ejun_auth).
   Der Zurück-Button behält margin-left:auto (schiebt beide an die
   rechte Kante); der Logout-Button bekommt fixen Abstand. */
.hero-full-inner > .ejun-logout {
  flex: 0 0 auto;
  margin-left: 0.55rem;
  white-space: nowrap;
}

.site-footer a {
  color: inherit;
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand);
}

.register {
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.register-cta {
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.register-cta {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.register-cta-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.register-cta-button {
  min-width: min(100%, 16rem);
  height: 3rem;
  min-height: 3rem;
  font-size: 1.08rem;
  padding: 0 1.4rem;
  text-align: center;
}

.register-copy {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.register-form {
  display: grid;
  gap: 0.65rem;
}

.register-form label,
.register-form legend {
  font-weight: 600;
}

.register-form input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.register-form input:focus-visible {
  outline: 2px solid #98c7ad;
  outline-offset: 1px;
}

.register-fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  margin: 0.2rem 0;
  display: grid;
  gap: 0.35rem;
}

.register-fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.register-fieldset input[type="radio"] {
  width: auto;
  margin: 0;
}

.register-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.projects {
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.projects-copy {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.places-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
}

.places-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.places-list li {
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffef8;
  font-size: 0.9rem;
}

.project-grid {
  display: grid;
  gap: 0.9rem;
}

.project-item {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem;
  background: #fffef8;
}

.project-item img {
  border-radius: 10px;
  border: 1px solid var(--line);
}

.project-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.1rem;
}

.project-image-uniform {
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center center;
  background: #f7f3eb;
  display: block;
  margin: 0;
  padding: 0.18rem;
  cursor: zoom-in;
}

.project-item h3 {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.park-title {
  display: grid;
  gap: 0.04rem;
  font-weight: 800;
}

.park-title-main {
  display: block;
  font-weight: 800;
}

.park-title-sub {
  display: block;
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.1;
}

.park-1 {
  color: #b58900;
}

.park-2 {
  color: #2563eb;
}

.park-3 {
  color: #c0392b;
}

.project-item p {
  margin: 0;
}

.project-item ul {
  margin: 0;
  padding-left: 1rem;
}

.project-item li {
  margin-bottom: 0.3rem;
}

.project-decision {
  margin-top: 0.35rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(22, 101, 52, 0.28);
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.96), rgba(187, 247, 208, 0.78));
}

.project-decision-positive {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.project-decision-title {
  margin: 0 0 0.45rem;
  color: #166534;
  font-weight: 800;
}

.project-decision-title::before {
  content: "✓ ";
}

.project-decision-list {
  margin: 0;
  padding-left: 1.1rem;
}

.project-decision-list li {
  margin-bottom: 0.25rem;
  color: #14532d;
  font-weight: 600;
}

.project-decision-list li:last-child {
  margin-bottom: 0;
}

.project-decision-list a {
  color: #166534;
}

.project-item-park-2 .park-title {
  color: #2563eb;
}

.project-item-park-3 .park-title {
  color: #c0392b;
}

.visual-gallery,
.action-section {
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.visual-slider {
  display: grid;
  gap: 0.8rem;
}

.visual-slider:focus-visible {
  outline: 2px solid #98c7ad;
  outline-offset: 4px;
}

.visual-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.visual-slider-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-slider-count {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffef8;
  color: var(--ink);
  font-weight: 700;
}

.visual-slider-controls {
  display: flex;
  gap: 0.5rem;
}

.visual-nav {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffef8;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.visual-nav:hover,
.visual-nav:focus-visible {
  transform: translateY(-1px);
  border-color: #b7aa96;
  color: var(--brand);
}

.visual-nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.visual-viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.visual-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.visual-track.is-dragging {
  transition: none;
}

.visual-slide {
  flex: 0 0 100%;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.85rem;
  background: #fffef8;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.06);
}

.visual-slide-copy {
  display: grid;
  gap: 0.08rem;
  align-content: start;
}

.visual-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.visual-slide h3 {
  margin: 0;
}

.visual-pair {
  display: grid;
  gap: 0.55rem;
  align-items: start;
}

.visual-pair img {
  width: 100%;
  height: 18rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
  background: #f4f0e8;
  object-fit: contain;
  object-position: center center;
  cursor: zoom-in;
}

.visual-pair:not(.visual-pair-single) img:first-child {
  height: 18rem;
}

.visual-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.visual-dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9cebf;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.visual-dot[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.15);
}

.visual-dot:hover,
.visual-dot:focus-visible {
  background: var(--brand);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 28, 0.78);
  backdrop-filter: blur(6px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 92vh;
  padding: 0.8rem;
  border: 1px solid rgba(210, 199, 184, 0.5);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.image-lightbox-preview {
  display: block;
  width: 100%;
  max-height: calc(92vh - 1.6rem);
  object-fit: contain;
  object-position: center center;
  border-radius: 14px;
  background: #f4f0e8;
}

.image-lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(210, 199, 184, 0.95);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.95);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.action-section ul {
  margin: 0;
  padding-left: 1rem;
}

.action-section li {
  margin-bottom: 0.45rem;
}

.action-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.action-cta-button {
  margin-top: 1rem;
}

.action-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  align-items: center;
}

.action-cta-group .action-cta-button {
  margin-top: 0;
}

.action-cta-group .cta-button {
  height: 3rem;
  min-height: 3rem;
  padding: 0 1.05rem;
  font-size: 0.98rem;
}

.hero-secondary-btn {
  background: #fffef8;
  color: var(--ink);
  border-color: var(--line);
  height: 3rem;
  min-height: 3rem;
  padding: 0 1rem;
}

.hero-secondary-btn:hover,
.hero-secondary-btn:focus-visible {
  border-color: #b7aa96;
  color: #8b1010;
}

.source-hub {
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.source-hub-copy {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.source-hub-list {
  margin: 0;
  padding-left: 1.1rem;
}

.source-hub-list li {
  margin-bottom: 0.45rem;
}

.source-hub-list a {
  font-weight: 600;
}

.source-hub-group {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.1rem 0 0.5rem;
  color: var(--ink);
}

.register-copy-note {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.register-copy-note a {
  font-weight: 700;
}

.register-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.register-consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
}

.register-consent span {
  font-weight: 400;
  color: var(--ink);
}

.register-consent a {
  font-weight: 700;
}

.legal-layout {
  display: block;
}

.legal-card h2 {
  margin-top: 0.2rem;
}

.legal-card h3 {
  margin-top: 0.9rem;
}

.legal-card p {
  margin: 0 0 0.75rem;
}

.legal-contacts {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.9rem;
}

.legal-contacts article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: #fffef8;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 28, 0.55);
}

.success-dialog {
  position: relative;
  width: min(520px, 92vw);
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.success-dialog p {
  margin: 0 0 0.9rem;
}

.confetti-piece {
  position: fixed;
  top: -12px;
  width: 8px;
  height: 14px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 1300;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translate3d(var(--dx), 110vh, 0) rotate(var(--rot));
    opacity: 0.9;
  }
}

@media (min-width: 880px) {
  .hero.hero-full {
    padding: 1.9rem 0 1.6rem;
  }

  .hero-full-inner h1 {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hero-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    max-width: none;
  }

  .layout {
    padding-top: 1.35rem;
  }

  .layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    align-items: stretch;
    gap: 1.2rem;
  }

  @media (min-width: 1200px) {
    .hero-full-inner {
      gap: 1.4rem;
    }

    .hero-support-btn,
    .hero-secondary-btn {
      height: 3rem;
      min-height: 3rem;
      padding: 0 1.2rem;
    }

    .hero-support-btn {
      font-size: 1.02rem;
    }
  }

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

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

  .footer-shell {
    grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.8fr));
    align-items: start;
  }

  .footer-brand {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .visual-pair {
    grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.78fr);
  }

  .visual-pair-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual-pair:not(.visual-pair-single) img:first-child,
  .visual-pair:not(.visual-pair-single) img:last-child,
  .visual-pair-single img {
    height: 21rem;
  }

  .timeline {
    position: sticky;
    top: 1rem;
  }
}

@media (max-width: 879px) {
  .hero-full-inner {
    gap: 0.6rem;
  }

  .hero-full-inner h1 {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    max-width: none;
    gap: 0.34rem;
  }

  .footer-shell {
    padding: 0.2rem 0 0.8rem;
  }

  .footer-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
  }

  .footer-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .footer-brand-mark img {
    width: 28px;
    height: 28px;
  }

  .visual-slide {
    padding: 0.75rem;
    border-radius: 15px;
  }

  .visual-slider-meta {
    font-size: 0.88rem;
  }

  .visual-viewport {
    cursor: default;
  }

  h1 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .hero-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 2.05rem;
    padding: 0.42rem 0.62rem;
    line-height: 1;
    border-radius: 999px;
    min-width: 0;
  }

  .hero-support-icon {
    width: 0.9rem;
    height: 0.9rem;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero.hero-full {
    padding: 1rem 0 1.1rem;
  }

  .hero-full-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero-logo {
    width: 44px;
    height: 44px;
  }

  .hero-full-inner h1 {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .hero-support-btn {
    min-width: 0;
    width: auto;
    height: auto;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
  }

  .hero-support-text {
    display: inline-flex;
  }

  .hero-support-icon {
    width: 0.98rem;
    height: 0.98rem;
  }

  .hero-secondary-btn {
    padding: 0.48rem 0.72rem;
    font-size: 0.92rem;
  }

  .action-cta-group {
    flex-direction: column;
  }

  .project-item {
    padding: 0.7rem;
  }

  .project-image-uniform {
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.15rem;
  }

  .project-heading {
    gap: 0.55rem;
  }

  .footer-shell {
    gap: 0.65rem;
  }

  .footer-brand {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.6rem;
  }

  .footer-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .footer-brand-mark img {
    width: 24px;
    height: 24px;
  }

  .footer-brand-copy p {
    max-width: none;
  }

  .visual-slider {
    gap: 0.7rem;
  }

  .visual-slider-top {
    align-items: start;
  }

  .visual-slider-meta {
    gap: 0.4rem;
    font-size: 0.84rem;
  }

  .visual-slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .visual-nav {
    width: 2.8rem;
    height: 2.8rem;
  }

  .visual-slide {
    gap: 0.5rem;
    padding: 0.7rem;
  }

  .visual-slide-copy {
    gap: 0.04rem;
  }

  .visual-pair {
    gap: 0.45rem;
  }

  .visual-pair img {
    height: 11.5rem;
    border-radius: 10px;
  }

  .visual-pair:not(.visual-pair-single) img:first-child,
  .visual-pair:not(.visual-pair-single) img:last-child,
  .visual-pair-single img {
    height: 11.5rem;
  }

  .visual-dots {
    justify-content: center;
  }

  .image-lightbox {
    padding: 0.7rem;
  }

  .image-lightbox-dialog {
    width: 100%;
    padding: 0.55rem;
    border-radius: 16px;
  }

  .image-lightbox-preview {
    max-height: calc(92vh - 1.1rem);
    border-radius: 10px;
  }
}

/* Smartphone: Logo links, Titel in der Mitte, Action-Buttons rechts
   neben dem Titel (eine Zeile) als 41x41px-Icon-Kreise; Labels kehren
   ab ~481px (z. B. iPad 768px) über die Basis-Styles wieder zurück.
   Bei aktiver Session sitzt "Abmelden" als zweiter Icon-Kreis rechts
   neben "Zurück" (Spalte 4). */
@media (max-width: 480px) {
  .hero-full-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem 0.7rem;
  }

  .hero-full-inner .hero-logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-full-inner h1 {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    font-size: 1.4rem;
  }

  .hero-actions {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  /* Unterseiten: einzelner CTA-Button ohne .hero-actions-Wrapper */
  .hero-full-inner > .cta-button {
    grid-column: 3;
    grid-row: 1;
  }

  /* "Abmelden" (logout.js) sitzt auf dem Smartphone im Footer
     (.footer-bottom), nicht im Hero — der Hero bleibt 3-spaltig. */

  .hero-full-inner .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 2.55rem;
    height: 2.55rem;
    min-height: 0;
    padding: 0;
    border-radius: 999px;
  }

  .hero-full-inner .cta-button .btn-label,
  .hero-full-inner .cta-button .hero-support-text {
    display: none;
  }

  .hero-full-inner .cta-button .header-btn-icon,
  .hero-full-inner .cta-button .hero-support-icon {
    width: 1.15rem;
    height: 1.15rem;
  }
}

.donation {
  grid-column: 1 / -1;
  width: min(1120px, 92vw);
  margin: 0 auto 1rem;
}

.donation-shell {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.donation-header {
  display: grid;
  gap: 1rem;
}

.donation-kicker {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.donation-intro {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

.donation-intro-block {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  align-content: start;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(20, 83, 45, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 254, 248, 0.96));
}

.donation-trust-list {
  display: grid;
  gap: 0.6rem;
}

.donation-trust-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(20, 83, 45, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.donation-trust-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.donation-trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.donation-purpose-intro {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.donation-purpose-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.donation-purpose-list span {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(20, 83, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.donation-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.donation-grid {
  display: grid;
  gap: 1.1rem;
  align-items: stretch;
}

.donation-method {
  display: grid;
  gap: 0.75rem;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 254, 248, 0.98)),
    #fffef8;
  box-shadow: 0 12px 28px rgba(31, 42, 46, 0.06);
  height: 100%;
  font-size: 0.98rem;
}

.donation-method-paypal {
  background:
    radial-gradient(circle at top right, rgba(12, 74, 110, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 254, 248, 0.98)),
    #fffef8;
}

.donation-method-bank {
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 254, 248, 0.98)),
    #fffef8;
}

.donation-method p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.donation-method-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.donation-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(20, 83, 45, 0.1);
  color: var(--accent);
  flex: 0 0 auto;
}

.donation-method-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.donation-method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.donation-method-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.donation-method-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 83, 45, 0.2), rgba(20, 83, 45, 0));
}

.donation-method-body {
  display: grid;
  align-content: start;
}

.donation-method-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: auto;
}

.donation-method-actions .cta-button {
  min-width: 12.25rem;
  justify-content: center;
}

.donation-details {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.donation-details div {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(210, 199, 184, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.donation-details dt {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.donation-details dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink);
}

.donation-detail-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: space-between;
}

.donation-iban {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  word-break: break-word;
}

.donation-copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.donation-copy-icon:hover,
.donation-copy-icon:focus-visible {
  border-color: #9fb9a6;
  background: #f3faf5;
}

.donation-copy-icon.is-copied {
  background: #dcfce7;
  border-color: #4ade80;
  color: #166534;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  transform: scale(1.04);
}

.donation-copy-icon.is-copied::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.42rem;
  height: 0.8rem;
  border-right: 2.4px solid currentColor;
  border-bottom: 2.4px solid currentColor;
  transform: translate(-50%, -58%) rotate(45deg);
}

.donation-copy-icon.is-copied svg {
  opacity: 0;
}

.donation-copy-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  transition: opacity 140ms ease;
}

.donation-bank-layout {
  display: grid;
  gap: 0.9rem;
  align-items: start;
  grid-template-columns: 1fr;
  position: relative;
}

.donation-bank-copy {
  display: grid;
  gap: 0.75rem;
}

.donation-copy-status {
  min-height: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.donation-qr {
  margin: 0.25rem 0 0;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.donation-qr-top {
  justify-items: center;
}

.donation-qr-top figcaption {
  text-align: center;
}

.donation-qr-code {
  width: min(100%, 110px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.2rem;
}

.donation-qr-code svg {
  display: block;
  width: 100%;
  height: auto;
}

.donation-qr figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.donation-paypal-button {
  width: 100%;
  min-width: 0;
  max-width: 18rem;
  text-align: center;
  background: linear-gradient(135deg, #14532d, #1c7c43);
}

.donation-paypal-form {
  margin: 0;
}

@media (min-width: 860px) {
  .donation-shell {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
    gap: 1.2rem;
  }

  .donation-header {
    position: sticky;
    top: 1.25rem;
  }

  .donation-intro-block {
    padding: 1.5rem;
    gap: 1rem;
  }

  .donation-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .donation-method {
    padding: 1.25rem;
  }

  .donation-bank-layout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.1rem;
    min-height: 10rem;
    padding-right: 0;
  }

  .donation-bank-copy {
    min-width: 0;
  }

  .donation-details {
    min-width: 0;
  }

  .donation-details div {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
  }

  .donation-detail-inline {
    min-width: 0;
  }

  .donation-iban {
    white-space: nowrap;
    min-width: 0;
  }

  .donation-qr-top {
    position: static;
    width: 10rem;
    margin: 0;
  }

  .donation-qr-code {
    width: min(100%, 160px);
  }
}

.article-layout {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 1.2rem 0 1rem;
  display: grid;
  gap: 1rem;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.article-card {
  padding: 1.5rem;
}

.article-intro-card {
  display: grid;
  gap: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(194, 65, 12, 0.1);
  border: 1px solid rgba(194, 65, 12, 0.18);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-summary {
  margin: 0;
  color: #26323b;
  font-size: 1.04rem;
  line-height: 1.65;
}

.article-side-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 254, 248, 0.96));
}

.article-side-card p {
  margin: 0;
}

.article-side-label {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-side-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.article-card h2,
.article-card h3 {
  margin-top: 0;
}

.article-card p,
.article-card li {
  max-width: none;
}

.article-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.article-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 83, 45, 0.14);
  background: rgba(255, 255, 255, 0.68);
}

.article-note p + p {
  margin-top: 0.85rem;
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.article-links a:not(.cta-button) {
  font-weight: 600;
}
/* ===== Meta-Box (07.09.2026): 2 Spalten — Teaser links, Quellen & Unterlagen rechts ===== */
.report-meta-box {
  padding: 2.2rem 1.7rem 1.9rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.08), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 243, 0.98));
  border: 1px solid rgba(20, 83, 45, 0.14);
  margin-bottom: 2rem;
}

/* „Stellungnahme anfordern"-Banner ohne Box — gleicher Abstand wie zu Meta-Box oben */
.report-stn-slot {
  margin-bottom: 2rem;
}

.report-meta-badge {
  display: inline-block;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(20, 83, 45, 0.09);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.report-meta-title {
  margin: 0 0 1.1rem;
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--ink);
}

.report-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.report-meta-teaser {
  margin: 0;
  max-width: 72ch;
  color: #26323b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.report-meta-sources {
  padding: 1.25rem 1.4rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 254, 248, 0.9));
  border: 1px solid var(--line);
}

.report-meta-sources-label {
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.report-meta-sources ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.report-meta-sources li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.report-meta-sources li::before {
  content: "\203A";
  color: var(--brand);
  font-weight: 800;
  flex: 0 0 auto;
}

.report-meta-sources a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .15s, color .15s;
}

.report-meta-sources a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== Report-Dokument (07.09.2026): Wort-Dokument-Optik, keine inneren Karten ===== */
.report-document {
  position: relative;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2.6rem 3rem 3rem;
}

.report-document p {
  margin: 0 0 1.1rem;
  max-width: 70ch;
  color: #26323b;
  font-size: 1.01rem;
  line-height: 1.75;
}

.report-document h2 {
  margin: 2.4rem 0 1rem;
  max-width: 70ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--ink);
}

.report-document .section-kicker {
  margin: 0 0 0.45rem;
}

.report-document .section-kicker + h2 {
  margin-top: 0.45rem;
}

.report-document ul {
  margin: 0 0 1.3rem;
  max-width: 70ch;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.report-document ul li {
  color: #26323b;
  line-height: 1.7;
}

/* Dokument-Kopfzeile (Badge + Datum) */
.report-doc-meta {
  margin: 0 0 1.4rem;
}

.report-doc-meta .article-badge {
  margin-right: 0.6rem;
}

.report-doc-date {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Verfahrensdaten-Label im Fließtext */
.report-doc-label {
  margin: 1.9rem 0 0.55rem;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Fußnote/Status als Zitatstreifen (kein Kartenkasten) */
.report-doc-note {
  margin: 0 0 1.6rem;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 3px solid rgba(20, 83, 45, 0.35);
  max-width: 70ch;
}

.report-doc-note p {
  margin-bottom: 0.85rem;
}

.report-doc-note p:last-child {
  margin-bottom: 0;
}

/* Dokument-Bilder: Word-Optik — voller Zeilen, Rahmen, Bildunterschrift */
.report-document figure {
  margin: 1.4rem 0 1.6rem;
  max-width: 70ch;
}

.report-document figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7f3eb;
  cursor: zoom-in;
}

.report-document figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Fuß-Links im Dokument */
.report-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.report-doc-links a:not(.cta-button) {
  font-weight: 600;
}

/* Zensiermodus (08.09.2026): Word-Dokument-Box — erste 4 Zeilen scharf,
   ab Zeile 5 geblurred (Skelett-Preview: kompletter Text bleibt sichtbar,
   aber unleserlich; 13.09.2026: Zensur beginnt bereits nach 4–5 Zeilen).
   Das Head-Skript setzt .report-locked vor dem ersten
   Paint (kein FOUC); zensiermodus.js platziert die Veil-Box am Blur-Anfang
   und entfernt Klasse + Veil nach Login -> Blur verschwindet, Doku vollständig. */
.report-locked .report-document > *:not(.report-veil):not(.report-unlocked-note):nth-child(n+5) {
  filter: blur(6px) grayscale(0.3);
  user-select: none;
  pointer-events: none;
}

/* Skeleton-Balken (10.09.2026): generische Zeilen OHNE Dokumenttext,
   Struktur "Blur – Anmelde Info – Blur": 6 Zeilen VOR der Veil-Box (im
   Voll-Dokument Slot 5 = Teil des Blurs; in der Preview scharf) und
   6 Zeilen NACH der Veil-Box (weiterer verdeckter Inhalt).
   Optische Entsprechung zum client-seitigen Blur (Element 5+ geblurred;
   13.09.2026: 6+6 statt 5+5 — Zensierbereich sichtbar länger). */
.report-skeleton {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 0.35rem;
  padding: 0;
}
.report-skeleton-line {
  height: 0.85rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #e9e5db, #f2efe7 60%, #e9e5db);
}
.report-skeleton-line:nth-child(1) { width: 92%; }
.report-skeleton-line:nth-child(2) { width: 100%; }
.report-skeleton-line:nth-child(3) { width: 96%; }
.report-skeleton-line:nth-child(4) { width: 88%; }
.report-skeleton-line:nth-child(5) { width: 100%; }
.report-skeleton-line:nth-child(6) { width: 64%; }

.report-veil {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin: 0.9rem 0 0.4rem;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px dashed rgba(194, 65, 12, 0.4);
  background:
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 243, 0.98));
}

.report-veil p {
  margin: 0;
  max-width: none;
  color: #26323b;
  line-height: 1.6;
}

.report-veil-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(194, 65, 12, 0.1);
  flex: 0 0 auto;
}

.report-veil-lock svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.report-veil-copy {
  flex: 1 1 320px;
}

.report-veil .report-veil-title {
  margin: 0 0 0.3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
}

.report-veil-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.report-veil-actions .zensier-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.report-unlocked-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.8rem;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  background: rgba(20, 83, 45, 0.08);
  border: 1px solid rgba(20, 83, 45, 0.18);
  color: var(--accent);
  font-size: 0.95rem;
}

.report-unlocked-note a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 879px) {
  .report-meta-grid {
    grid-template-columns: 1fr;
  }

  .report-document {
    padding: 2rem 1.6rem 2.2rem;
  }
}

@media (max-width: 640px) {
  .report-meta-box {
    padding: 1.8rem 1.3rem 1.5rem;
  }

  .report-meta-title {
    font-size: 1.5rem;
  }

  .report-document {
    padding: 1.7rem 1.25rem 1.9rem;
  }

  .report-veil {
    flex-direction: column;
    align-items: flex-start;
    /* 10.09.2026: Abstand Titel->Hinweis->Buttons auf dem Smartphone
       reduzieren (früher 1.1rem, Buttons saßen zu weit unter dem Text) */
    gap: 0.9rem;
  }

  /* Mobile column: 320px flex-basis wäre eine MindestHÖHE -> ~190px Lücke
     zwischen Hinweis und Buttons. Auf natürlichen Inhaltshöhe setzen. */
  .report-veil-copy {
    flex: 1 1 auto;
  }


  .report-doc-links .cta-button {
    width: 100%;
  }
}

.article-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.4rem 0 0.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f7f3eb;
  cursor: zoom-in;
}

.article-figure {
  margin: 1.1rem 0 0.4rem;
}

.article-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.72;
}

.article-figure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.article-figure-half {
  margin: 0;
}

@media (max-width: 640px) {
  .article-figure-row {
    grid-template-columns: 1fr;
  }
}

.gallery-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.7rem;
}

.gallery-image,
.news-gallery-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7f3eb;
  cursor: zoom-in;
}

.news-gallery {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.6rem;
}

.news-gallery-image {
  aspect-ratio: 4 / 3;
}

@media (max-width: 879px) {
  .article-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-layout {
    padding-top: 1rem;
  }

  .article-card {
    padding: 1.1rem;
  }

  .article-links .cta-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .donation-method-head {
    align-items: start;
    flex-direction: column;
  }

  .donation-method-head::after {
    display: none;
  }

  .donation-bank-layout {
    grid-template-columns: 1fr;
  }

  .donation-method-actions .cta-button {
    width: 100%;
    max-width: none;
  }
}
