@charset "UTF-8";
/* ==========================================================================
   FWG Wartenberg – Stylesheet
   Farbwelt und Typografie der Freien Wähler, modern umgesetzt.
   ========================================================================== */

/* ---------- Schriften (lokal, keine externen Requests) -------------------- */
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design-Tokens ------------------------------------------------- */
:root {
  /* Markenfarben */
  --orange: #f7a800;
  --orange-dark: #d98f00;
  --orange-soft: #fff6e2;
  --teal: #3697b0;
  --teal-dark: #006366;
  --teal-soft: #eaf4f7;

  /* Neutrale Töne */
  --ink: #2f292b;
  --ink-soft: #515152;
  --grey: #595959;
  --grey-300: #c5c7c9;
  --grey-200: #dfe1e2;
  --grey-100: #f1f2f3;
  --paper: #ffffff;
  --sand: #f7f8f9;

  /* Semantik */
  --text: var(--ink);
  --text-muted: #5f6163;
  --line: var(--grey-200);
  --link: var(--teal-dark);
  --focus: #0f71d0;

  /* Typografie */
  --font-head: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 10px;
  --radius-lg: 16px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(47, 41, 43, .06), 0 2px 8px rgba(47, 41, 43, .06);
  --shadow-md: 0 4px 12px rgba(47, 41, 43, .1), 0 12px 32px rgba(47, 41, 43, .08);
  --shadow-lg: 0 10px 24px rgba(47, 41, 43, .14), 0 24px 60px rgba(47, 41, 43, .12);

  --header-h: 76px;
  --nav-h: 52px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Basis ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--nav-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
/* Graue Platzhalterfläche nur unter Inhaltsfotos. Logo und Icons sind
   transparente PNG/SVG und müssen freigestellt bleiben. */
.prose img, .article-figure img, .gallery img { background: var(--grey-100); }

a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--teal); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

figure { margin: 0; }
figcaption, .image-caption {
  font-size: .875rem;
  color: var(--text-muted);
  padding-top: .5rem;
  line-height: 1.45;
}

sub, sup { font-size: .75em; }
strong, b { font-weight: 700; }

table { border-collapse: collapse; width: 100%; }

/* ---------- Layout-Bausteine --------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--tight { padding-block: clamp(1.75rem, 3.5vw, 3rem); }
.section--sand { background: var(--sand); }
.section--grey { background: var(--grey-100); }

.section-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); max-width: 62ch; }
.section-head p { color: var(--text-muted); margin-bottom: 0; font-size: 1.075rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 3px;
  background: var(--orange);
  vertical-align: .28em;
  margin-right: .6rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-dark); color: var(--ink); box-shadow: var(--shadow-md); }

.btn--teal { background: var(--teal-dark); color: #fff; }
.btn--teal:hover { background: var(--teal); color: #fff; }

.btn--ghost { border-color: currentColor; color: var(--teal-dark); background: transparent; }
.btn--ghost:hover { background: var(--teal-dark); color: #fff; border-color: var(--teal-dark); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--orange); color: var(--ink); }

.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9375rem;
  text-decoration: none;
  color: var(--teal-dark);
}
.arrow-link::after {
  content: "›";
  font-size: 1.35em;
  line-height: 1;
  transition: transform .18s var(--ease);
}
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- Kopfbereich --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-bar {
  background: var(--orange);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height .25s var(--ease);
}
.header-bar > .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; margin-right: auto; }
.brand img { width: clamp(132px, 17vw, 182px); transition: width .25s var(--ease); }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.05rem, .8rem + .8vw, 1.5rem);
  color: var(--teal-dark);
  white-space: nowrap;
}

.header-tools { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .18s var(--ease);
}
.icon-btn:hover { background: #fff; }
.icon-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-toggle { display: none; }

/* Hauptnavigation (Desktop) */
.site-nav { background: var(--grey); border-bottom: 5px solid var(--ink); }
.site-nav > .wrap { display: flex; }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: .35rem;
  height: var(--nav-h);
  padding: 0 .7rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 5px solid transparent;
  margin-bottom: -5px;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.nav-list > li > a:hover,
.nav-list > li.is-open > a { background: var(--ink-soft); color: #fff; }
.nav-list > li.is-current > a { border-bottom-color: var(--orange); color: #fff; }
.nav-list > li.has-sub > a::after {
  content: "";
  width: .42em; height: .42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-.1em);
  transition: transform .2s var(--ease);
}
.nav-list > li.is-open.has-sub > a::after { transform: rotate(-135deg) translateY(-.1em); }

.subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  background: var(--ink);
  list-style: none;
  margin: 0;
  padding: .4rem 0;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav-list > li:hover > .subnav,
.nav-list > li.is-open > .subnav,
.subnav:focus-within { opacity: 1; visibility: visible; transform: translateY(0); }

.subnav li { margin: 0; }
.subnav a {
  display: block;
  padding: .55rem 1.1rem;
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.35;
  border-left: 3px solid transparent;
  transition: background-color .15s var(--ease), border-color .15s var(--ease);
}
.subnav a:hover { background: var(--ink-soft); border-left-color: var(--orange); color: #fff; }
.subnav a.is-current { border-left-color: var(--orange); background: rgba(247, 168, 0, .12); }

/* Kompakter Header beim Scrollen */
body.is-scrolled .header-bar { height: 60px; }
body.is-scrolled .brand img { width: clamp(112px, 13vw, 140px); }

/* ---------- Mobile Navigation -------------------------------------------- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47, 41, 43, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
  z-index: 110;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

.nav-close { display: none; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 88vw);
    height: 100dvh;
    background: var(--ink);
    border-bottom: 0;
    border-left: 5px solid var(--orange);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform .28s var(--ease);
    z-index: 120;
    padding: 1rem 0 3rem;
  }
  body.nav-open .site-nav { transform: translateX(0); }

  .site-nav > .wrap { display: block; padding-inline: 0; }

  .nav-close {
    display: inline-flex;
    margin: 0 1rem 1rem auto;
    background: rgba(255, 255, 255, .12);
    color: #fff;
  }
  .nav-close:hover { background: var(--orange); color: var(--ink); }

  .nav-list { display: block; }
  .nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .nav-list > li > a {
    height: auto;
    padding: .95rem 1.35rem;
    border-bottom: 0;
    margin-bottom: 0;
    border-left: 4px solid transparent;
    justify-content: space-between;
  }
  .nav-list > li.is-current > a { border-left-color: var(--orange); background: rgba(247, 168, 0, .1); }

  .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: rgba(0, 0, 0, .25);
    display: none;
    padding: .25rem 0 .5rem;
  }
  .nav-list > li.is-open > .subnav { display: block; }
  .subnav a { padding-left: 2.1rem; }
}


/* ---------- Suche --------------------------------------------------------- */
.search-panel {
  background: var(--ink);
  color: #fff;
  display: none;
  padding-block: 1.25rem 1.5rem;
}
.search-panel.is-open { display: block; }
.search-form { display: flex; gap: .5rem; }
.search-form input[type="search"] {
  flex: 1;
  font: inherit;
  font-size: 1.05rem;
  padding: .75rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-width: 0;
}
.search-form input:focus { border-color: var(--orange); outline: none; }
.search-results { list-style: none; margin: 1rem 0 0; padding: 0; max-height: 52vh; overflow-y: auto; }
.search-results li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.search-results a { display: block; padding: .7rem .25rem; color: #fff; text-decoration: none; }
.search-results a:hover, .search-results a:focus { background: rgba(255, 255, 255, .08); color: #fff; }
.search-results .r-kind {
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}
.search-results .r-title { font-weight: 600; }
.search-empty { color: var(--grey-300); margin: 1rem 0 0; }

/* ---------- Hero ---------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(47, 41, 43, .92) 0%, rgba(47, 41, 43, .78) 42%, rgba(47, 41, 43, .28) 100%);
}
.hero-inner {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6.5rem);
  max-width: 44rem;
}
.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero .eyebrow { color: var(--orange); }
.hero .eyebrow::before { background: var(--orange); }
.hero-lead { font-size: clamp(1.05rem, .98rem + .4vw, 1.3rem); color: rgba(255, 255, 255, .92); max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero-credit {
  position: absolute;
  right: .75rem;
  bottom: .5rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
}

/* Seitenkopf für Unterseiten */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero.has-image .page-hero-inner { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(47, 41, 43, .93) 10%, rgba(47, 41, 43, .55) 60%, rgba(47, 41, 43, .35) 100%);
}
.page-hero-inner { position: relative; padding-block: clamp(2rem, 5vw, 3.5rem); }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { color: #fff; margin-bottom: .35rem; }
.page-hero .claim {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, .95rem + .5vw, 1.4rem);
  color: var(--orange);
  font-style: italic;
  margin: 0;
}

/* ---------- Breadcrumb ---------------------------------------------------- */
.breadcrumb { background: var(--grey-100); border-bottom: 1px solid var(--line); font-size: .875rem; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: .7rem 0;
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .4rem; color: var(--text-muted); }
.breadcrumb li + li::before { content: "›"; color: var(--grey-300); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-dark); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Karten-Raster ------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 216px), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grey-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }

.card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .4rem;
}
.card-title { font-size: 1.2rem; margin-bottom: .5rem; line-height: 1.2; }
.card-title a { color: inherit; text-decoration: none; }
.card-title a::after { content: ""; position: absolute; inset: 0; }
.card:hover .card-title { color: var(--teal-dark); }
.card-text { color: var(--text-muted); font-size: .96rem; margin-bottom: 1rem; }
.card-more { margin-top: auto; }

/* Themenkacheln */
.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(47, 41, 43, .92) 0%, rgba(47, 41, 43, .45) 45%, rgba(47, 41, 43, .05) 100%);
}
.tile-label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 1.1rem 1.05rem;
  color: #fff;
}
.tile-label span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.tile-label small {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  margin-top: .3rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}
.tile::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 5px; width: 0;
  background: var(--orange);
  z-index: 2;
  transition: width .3s var(--ease);
}
.tile:hover::before { width: 100%; }

/* Personen */
.person {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-photo { aspect-ratio: 1 / 1; background: var(--grey-100); overflow: hidden; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.person-body { padding: .9rem 1rem 1.1rem; }
.person-rank {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--ink);
  border-radius: 999px;
  padding: .12rem .6rem;
  margin-bottom: .45rem;
}
.person-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.person-role { display: block; font-size: .875rem; color: var(--text-muted); margin-top: .15rem; }

/* ---------- Fließtext (Artikel, Themenseiten) ---------------------------- */
.prose { max-width: 72ch; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose h4 { margin-top: 1.4rem; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul > li { position: relative; padding-left: 1.6rem; margin-bottom: .7rem; }
.prose ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .55rem;
  height: .55rem;
  border-radius: 2px;
  background: var(--orange);
}
.prose ol { padding-left: 1.4rem; }
.prose ol > li::marker { color: var(--teal-dark); font-weight: 700; }
.prose a { color: var(--link); font-weight: 600; }
.prose figure { margin: 1.75rem 0; }
.prose img { border-radius: var(--radius); }
.prose blockquote {
  margin: 1.75rem 0;
  padding: .3rem 0 .3rem 1.4rem;
  border-left: 4px solid var(--orange);
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.prose table { margin: 1.5rem 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .55rem .7rem; text-align: left; }
.prose th { background: var(--grey-100); font-family: var(--font-head); }
.table-scroll { overflow-x: auto; }

.lead {
  font-size: clamp(1.1rem, 1.02rem + .4vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* TYPO3-Altlasten neutralisieren */
.ce-gallery, .ce-row, .ce-column, .ce-bodytext, .ce-textpic { display: block; }
.ce-gallery { margin-bottom: 1.5rem; }
.ce-intext.ce-left .ce-gallery { float: left; margin: .3rem 1.75rem 1rem 0; max-width: min(48%, 420px); }
.ce-intext.ce-right .ce-gallery { float: right; margin: .3rem 0 1rem 1.75rem; max-width: min(48%, 420px); }
.ce-textpic::after { content: ""; display: block; clear: both; }
@media (max-width: 640px) {
  .ce-intext.ce-left .ce-gallery,
  .ce-intext.ce-right .ce-gallery { float: none; max-width: 100%; margin: 0 0 1.25rem; }
}

/* ---------- Artikel ------------------------------------------------------- */
.article-head { margin-bottom: 1.75rem; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: .75rem;
}
.article-sub { font-size: 1.2rem; color: var(--ink-soft); font-family: var(--font-head); font-weight: 400; }

.article-figure { margin: 0 0 2rem; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); gap: .75rem; margin: 2rem 0; }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .3s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

/* ---------- Newsliste + Filter ------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
}
.filter-bar label { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.filter-bar input, .filter-bar select {
  font: inherit;
  padding: .55rem .8rem;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.filter-bar input[type="search"] { flex: 1 1 240px; min-width: 0; }
.filter-count { margin-left: auto; color: var(--text-muted); font-size: .9rem; }

.news-list { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  margin: 0;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.news-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-item .thumb { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--grey-100); }
.news-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item h3 { font-size: 1.28rem; margin-bottom: .45rem; }
.news-item h3 a { color: inherit; text-decoration: none; }
.news-item h3 a::after { content: ""; position: absolute; inset: 0; }
.news-item:hover h3 { color: var(--teal-dark); }
.news-item p { color: var(--text-muted); margin-bottom: .6rem; font-size: .97rem; }
@media (max-width: 680px) {
  .news-item { grid-template-columns: 1fr; }
  .news-item .thumb { aspect-ratio: 16 / 9; }
}

.no-results { padding: 2.5rem 1rem; text-align: center; color: var(--text-muted); }

.load-more-wrap { text-align: center; margin-top: 2.5rem; }

/* ---------- Infoboxen ----------------------------------------------------- */
.callout {
  background: var(--teal-soft);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 2rem 0;
}
.callout--orange { background: var(--orange-soft); border-left-color: var(--orange); }
.callout > :last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; }

.cta-band { background: var(--ink); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 52ch; }
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between; padding-block: clamp(2rem, 4vw, 3.25rem); }
.cta-band-text { flex: 1 1 26rem; }
.cta-band-text > :last-child { margin-bottom: 0; }

.fact-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.fact { background: #fff; padding: 1.4rem 1.25rem; }
.fact b { display: block; font-family: var(--font-head); font-size: 2.1rem; line-height: 1; color: var(--teal-dark); }
.fact span { display: block; margin-top: .35rem; color: var(--text-muted); font-size: .95rem; }

/* Kontaktkarte */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-top: 0; }
.contact-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .45rem 1rem; }
.contact-card dt { font-family: var(--font-head); font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; padding-top: .18rem; }
.contact-card dd { margin: 0; }

.split { display: grid; gap: clamp(1.5rem, 3vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: start; }

/* Personendetail */
.person-detail { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); grid-template-columns: minmax(0, 300px) minmax(0, 1fr); align-items: start; }
@media (max-width: 760px) { .person-detail { grid-template-columns: 1fr; } }
.person-detail .portrait { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.person-detail .portrait img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grey-100);
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.social-row a:hover { background: var(--orange); transform: translateY(-2px); }
.social-row img { width: 22px; height: 22px; background: none; }

/* ---------- Lightbox ------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 18, .93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; border-radius: var(--radius); background: none; }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}
.lightbox-close:hover { background: var(--orange); color: var(--ink); }

/* ---------- Nach-oben-Knopf ---------------------------------------------- */
.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s, background-color .2s var(--ease);
}
.to-top:hover { background: var(--orange); color: var(--ink); }
body.is-scrolled .to-top { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Fußbereich ---------------------------------------------------- */
.site-footer { background: var(--grey); color: #fff; margin-top: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }

.footer-top { padding-block: clamp(2.25rem, 4vw, 3.25rem); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-grid h2 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-brand img { width: 170px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, .85); font-size: .95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-block: 1.1rem;
  font-size: .9rem;
}
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin: 0; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, .8); }

/* ---------- Druck --------------------------------------------------------- */
@media print {
  .site-header, .site-nav, .site-footer, .to-top, .breadcrumb, .pager, .search-panel, .nav-backdrop { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .page-hero { background: none; color: #000; }
  .page-hero h1, .page-hero .claim { color: #000; }
  .page-hero-media { display: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* ---------- Bewegung reduzieren ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Einblend-Animation ------------------------------------------- */
/* Nur mit aktivem JavaScript ausblenden – sonst bleibt alles sichtbar. */
.js .reveal { opacity: 0; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }
