/* ==========================================================================
   profschrader.de — Gestaltung
   --------------------------------------------------------------------------
   Leitgedanke: ruhig, präzise, akademisch. Viel Weißraum, eine Serifenschrift
   für Überschriften (Source Serif 4), eine gut lesbare Grotesk für den Text
   (Source Sans 3). Farbwelt: tiefes Marineblau als Grundton, warmes Papierweiß
   als Fläche, ein Kupferton als sparsamer Akzent – eine Anspielung auf die
   Farbe des Augenhintergrunds.

   Schriften liegen lokal (assets/fonts, SIL Open Font License) – es werden
   keine Dienste Dritter geladen.
   ========================================================================== */

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-serif-4-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-serif-4-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-serif-4-latin-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-sans-3-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-sans-3-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url("../fonts/source-sans-3-latin-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --tinte: #13233a;          /* Marineblau: Kopf, Überschriften, Flächen */
  --tinte-2: #1f3553;
  --text: #24303e;
  --gedaempft: #5b6877;
  --papier: #fbfaf7;
  --flaeche: #ffffff;
  --linie: #e3dfd6;
  --linie-kalt: #dde3ea;
  --kupfer: #9c4a24;         /* Akzent; 5,9:1 auf Weiß */
  --kupfer-hell: #c8743f;
  --kupfer-zart: #f5ebe3;
  --blau-zart: #eef2f6;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  --breite: 72rem;
  --lesebreite: 42rem;
  --rand: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 1.5rem;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.1875rem);
  line-height: 1.65;
  font-feature-settings: "kern", "liga";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; }

a {
  color: var(--kupfer);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover { color: var(--tinte); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--kupfer);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--tinte);
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 2.2em 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 3.2vw + 1rem, 3.1rem); font-weight: 520; margin-top: 0; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.45rem, 1.2vw + 1rem, 1.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: 0.01em; }

p, ul, ol, dl, figure, table, blockquote { margin: 0 0 1.1em; }

.unsichtbar {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sprunglink {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--tinte); color: #fff;
  padding: 0.6rem 1rem; z-index: 100; border-radius: var(--radius);
}
.sprunglink:focus { top: 1rem; color: #fff; }

.entwurf-hinweis {
  background: repeating-linear-gradient(-45deg, #fff4d6, #fff4d6 12px, #ffeebf 12px, #ffeebf 24px);
  color: #5a4300;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.45rem var(--rand);
  border-bottom: 1px solid #ecd48a;
}

/* --- Kopf ---------------------------------------------------------------- */

.kopf {
  background: var(--flaeche);
  border-bottom: 1px solid var(--linie);
}
.kopf__innen {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 1rem var(--rand);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marke {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--tinte); text-decoration: none;
  margin-right: auto;
  min-width: 0;
}
.marke:hover { color: var(--tinte); }
.marke__zeichen { color: var(--kupfer); flex: none; display: flex; }
.marke__text { display: flex; flex-direction: column; min-width: 0; }
.marke__name {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.marke__zusatz {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gedaempft);
  margin-top: 0.2rem;
}

.kopf__nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.2rem 1.35rem;
}
.kopf__nav a {
  color: var(--tinte);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.kopf__nav a:hover { color: var(--kupfer); }
.kopf__nav a[aria-current] { border-bottom-color: var(--kupfer); }
.kopf__nav .sprache a {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gedaempft);
}

.kopf__menueknopf {
  display: none;
  background: none; border: 1px solid var(--linie); border-radius: var(--radius);
  width: 2.75rem; height: 2.75rem; padding: 0; cursor: pointer; color: var(--tinte);
}
.kopf__menueknopf-linien,
.kopf__menueknopf-linien::before,
.kopf__menueknopf-linien::after {
  display: block; width: 1.2rem; height: 2px; background: currentColor;
  margin: 0 auto; position: relative; transition: transform .2s ease;
}
.kopf__menueknopf-linien::before, .kopf__menueknopf-linien::after { content: ""; position: absolute; left: 0; }
.kopf__menueknopf-linien::before { top: -6px; }
.kopf__menueknopf-linien::after { top: 6px; }
.kopf__menueknopf[aria-expanded="true"] .kopf__menueknopf-linien { background: transparent; }
.kopf__menueknopf[aria-expanded="true"] .kopf__menueknopf-linien::before { transform: translateY(6px) rotate(45deg); }
.kopf__menueknopf[aria-expanded="true"] .kopf__menueknopf-linien::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 62rem) {
  .js .kopf__menueknopf { display: block; }
  .kopf__innen { flex-wrap: wrap; }
  .js .kopf__nav { display: none; width: 100%; }
  .js .kopf__nav.offen { display: block; }
  .kopf__nav { width: 100%; }
  .kopf__nav ul { flex-direction: column; gap: 0; border-top: 1px solid var(--linie); margin-top: 0.5rem; }
  .kopf__nav li { border-bottom: 1px solid var(--linie); }
  .kopf__nav a { display: block; padding: 0.75rem 0; border-bottom: 0; }
  .kopf__nav a[aria-current] { color: var(--kupfer); }
}
@media (max-width: 26rem) {
  .marke__zeichen { display: none; }
  .marke__name { font-size: 1.12rem; }
}

/* --- Brotkrumen ---------------------------------------------------------- */

.brotkrumen {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 1.4rem var(--rand) 0;
  font-size: 0.88rem;
  color: var(--gedaempft);
}
.brotkrumen ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.brotkrumen li + li::before { content: "›"; margin-right: 0.35rem; color: var(--linie); color: #b5aea1; }
.brotkrumen a { color: var(--gedaempft); text-decoration: none; }
.brotkrumen a:hover { color: var(--kupfer); text-decoration: underline; }

/* --- Seitenaufbau -------------------------------------------------------- */

.seite {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 1.6rem var(--rand) 4.5rem;
}
.seite__kopf { max-width: 52rem; margin-bottom: 2.2rem; }
.seite__rubrik {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--kupfer); font-weight: 600; margin: 0 0 0.9rem;
}
.seite__vorspann {
  font-size: 1.22rem; line-height: 1.55; color: var(--tinte-2);
  font-family: var(--serif); font-weight: 400;
  margin: 1rem 0 0;
}
.seite__stand {
  font-size: 0.86rem; color: var(--gedaempft); margin: 1rem 0 0;
}

.spalten {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}
@media (min-width: 62rem) {
  .spalten { grid-template-columns: minmax(0, 1fr) 17rem; gap: 4rem; }
}

.prosa { max-width: var(--lesebreite); }
.prosa--breit { max-width: 52rem; }
.prosa > :first-child { margin-top: 0; }
.prosa h2 { margin-top: 2em; }
.prosa h3 { margin-top: 1.8em; }
.prosa ul, .prosa ol { padding-left: 1.3em; }
.prosa li { margin-bottom: 0.35em; }
.prosa li::marker { color: var(--kupfer); }
.prosa hr { border: 0; border-top: 1px solid var(--linie); margin: 2.5rem 0; }
.prosa strong { color: var(--tinte); font-weight: 650; }
.prosa table { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
.prosa th, .prosa td { text-align: left; vertical-align: top; padding: 0.5rem 0.75rem 0.5rem 0; border-bottom: 1px solid var(--linie); }
.prosa th { font-weight: 650; color: var(--tinte); }
.prosa .tabelle-scroll { overflow-x: auto; }

.abb { margin: 1.8rem 0; }
.abb img {
  display: block;
  border-radius: var(--radius);
  background: #111;
}
.abb--hell img { background: none; }
.abb figcaption {
  font-size: 0.86rem; color: var(--gedaempft); margin-top: 0.55rem; line-height: 1.45;
}
@media (min-width: 48rem) {
  .abb--rechts { float: right; width: 44%; margin: 0.4rem 0 1.2rem 2rem; }
  .abb--links { float: left; width: 44%; margin: 0.4rem 2rem 1.2rem 0; }
  .prosa h2, .prosa h3, .prosa hr { clear: both; }
}
.abb-reihe { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.2rem; margin: 1.8rem 0; }
.abb-reihe .abb { margin: 0; }

.hinweis {
  border-left: 3px solid var(--kupfer);
  background: var(--kupfer-zart);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
}
.hinweis > :last-child { margin-bottom: 0; }
.hinweis--archiv { border-left-color: var(--tinte-2); background: var(--blau-zart); }
.hinweis__titel { font-weight: 700; color: var(--tinte); display: block; margin-bottom: 0.2rem; }

/* Randspalte (Inhaltsverzeichnis / verwandte Seiten) */
.rand { font-size: 0.95rem; }
.rand__block { border-top: 2px solid var(--tinte); padding-top: 1rem; margin-bottom: 2.2rem; }
.rand__titel {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gedaempft); font-weight: 650; margin: 0 0 0.7rem;
  font-family: var(--sans);
}
.rand ul { list-style: none; margin: 0; padding: 0; }
.rand li { margin: 0; border-bottom: 1px solid var(--linie); }
.rand li a { display: block; padding: 0.5rem 0; color: var(--tinte); text-decoration: none; line-height: 1.35; }
.rand li a:hover { color: var(--kupfer); }
.rand li a[aria-current] { color: var(--kupfer); font-weight: 600; }
@media (min-width: 62rem) {
  .rand__block--haftend { position: sticky; top: 1.5rem; }
}

/* --- Startseite ---------------------------------------------------------- */

.buehne {
  position: relative;
  overflow: hidden;
  background: var(--tinte);
  color: #dfe6ee;
}
.buehne__innen {
  position: relative;
  max-width: var(--breite);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--rand) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
}
@media (min-width: 56rem) {
  .buehne__innen { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); gap: 4rem; }
}
.buehne__fundus {
  position: absolute; right: -14rem; top: 50%;
  width: 46rem; height: 46rem;
  transform: translateY(-50%);
  color: var(--kupfer-hell);
  opacity: 0.22;
  pointer-events: none;
}
.buehne__rubrik {
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #e7b491; font-weight: 600; margin: 0 0 1.2rem;
}
.buehne h1 { color: #fff; margin: 0 0 0.35em; font-weight: 480; }
.buehne__titel {
  font-family: var(--serif); font-size: 1.12rem; color: #c7d2de; margin: 0 0 1.6rem;
  font-style: italic;
}
.buehne__text { font-size: 1.12rem; max-width: 36rem; color: #dfe6ee; }
.buehne a { color: #f0c3a2; }
.buehne a:hover { color: #fff; }
.buehne__knoepfe { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.knopf {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.3rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  background: var(--kupfer); color: #fff; border: 1px solid var(--kupfer);
}
.knopf:hover { background: #7f3b1c; color: #fff; }
.knopf--hell { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.knopf--hell:hover { background: rgba(255,255,255,.08); color: #fff; border-color: #fff; }
.buehne .knopf { color: #fff; }

.portraet {
  margin: 0;
  justify-self: center;
  max-width: 17rem;
  position: relative;
}
@media (min-width: 56rem) {
  .portraet { max-width: 19rem; }
}
.portraet img {
  display: block; width: 100%;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.portraet::before {
  content: ""; position: absolute; inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(231,180,145,.55); border-radius: 2px; z-index: -1;
}
.portraet figcaption { font-size: 0.8rem; color: #9fb0c2; margin-top: 1.6rem; text-align: center; }

.status {
  background: var(--flaeche);
  border-bottom: 1px solid var(--linie);
}
.status__innen {
  max-width: var(--breite); margin: 0 auto; padding: 1.4rem var(--rand);
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem 1.2rem; align-items: start;
}
.status__marke {
  width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--kupfer);
  margin-top: 0.55rem; box-shadow: 0 0 0 5px var(--kupfer-zart);
}
.status p { margin: 0; }
.status__titel { font-weight: 700; color: var(--tinte); }

.band { max-width: var(--breite); margin: 0 auto; padding: 4.5rem var(--rand); }
.band--flaeche { max-width: none; padding-left: 0; padding-right: 0; background: var(--flaeche); border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); }
.band--flaeche > .band__innen { max-width: var(--breite); margin: 0 auto; padding: 0 var(--rand); }
.band__kopf { max-width: 44rem; margin-bottom: 2.5rem; }
.band__kopf h2 { margin-top: 0; }
.band__rubrik {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--kupfer); font-weight: 600; margin: 0 0 0.7rem;
}

.auszeichnungen {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0; border-top: 1px solid var(--linie);
}
.auszeichnungen li {
  padding: 1.4rem 1.4rem 1.4rem 0; border-bottom: 1px solid var(--linie);
}
.auszeichnungen__jahr {
  font-family: var(--serif); font-size: 1.9rem; color: var(--kupfer); line-height: 1; display: block; margin-bottom: 0.5rem;
  font-variant-numeric: lining-nums;
}
.auszeichnungen__text { color: var(--tinte); font-weight: 600; line-height: 1.35; display: block; }
.auszeichnungen__zusatz { color: var(--gedaempft); font-size: 0.92rem; display: block; margin-top: 0.3rem; line-height: 1.4; }

.karten {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem; margin: 0; padding: 0; list-style: none;
}
.karte {
  position: relative;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex; flex-direction: column;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.karte:hover { border-color: #cfc6b6; box-shadow: 0 10px 24px rgba(19,35,58,.07); transform: translateY(-2px); }
.karte__rubrik { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gedaempft); font-weight: 650; margin: 0 0 0.6rem; }
.karte h2, .karte h3 { font-size: 1.28rem; margin: 0 0 0.5rem; }
.karte p { font-size: 0.97rem; color: var(--text); margin: 0 0 0.8rem; }
.karte a.karte__link { color: var(--tinte); text-decoration: none; }
.karte a.karte__link::after { content: ""; position: absolute; inset: 0; }
.karte:hover a.karte__link { color: var(--kupfer); }
.karte__mehr { margin-top: auto; font-size: 0.9rem; font-weight: 600; color: var(--kupfer); }
.karte__bild { margin: -1.5rem -1.5rem 1.2rem; aspect-ratio: 16 / 8; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #111; }
.karte__bild img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kennzahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.kennzahlen li { border-left: 2px solid var(--kupfer); padding-left: 1rem; }
.kennzahlen strong { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 500; color: var(--tinte); line-height: 1.05; }
.kennzahlen strong small { font-size: 0.5em; font-weight: 500; color: var(--gedaempft); letter-spacing: 0.01em; }
.kennzahlen span { font-size: 0.92rem; color: var(--gedaempft); }

/* --- Listen: Lebenslauf, Publikationen, Vorträge ------------------------- */

.lebenslauf, .prosa .lebenslauf { margin: 0 0 2rem; padding: 0; list-style: none; border-top: 1px solid var(--linie); }
.lebenslauf li {
  display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--linie); margin: 0;
}
.lebenslauf li::marker { content: none; }
.lebenslauf__zeit { font-variant-numeric: tabular-nums; color: var(--kupfer); font-weight: 600; font-size: 0.95rem; padding-top: 0.08rem; }
@media (max-width: 34rem) { .lebenslauf li { grid-template-columns: minmax(0, 1fr); gap: 0.1rem; } }

.verzeichnis-filter {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  background: var(--flaeche); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 0.9rem 1rem; margin: 0 0 2rem;
}
.verzeichnis-filter label { font-weight: 600; color: var(--tinte); font-size: 0.95rem; }
.verzeichnis-filter input {
  flex: 1 1 14rem; font: inherit; font-size: 1rem; padding: 0.55rem 0.75rem;
  border: 1px solid #cdc6b9; border-radius: var(--radius); background: #fff; color: var(--text);
}
.verzeichnis-filter output { font-size: 0.9rem; color: var(--gedaempft); }
.verzeichnis-filter:not(.aktiv) { display: none; }

.verzeichnis h2 { font-size: 1.5rem; border-bottom: 1px solid var(--linie); padding-bottom: 0.4rem; margin-top: 2.4rem; }
.verzeichnis ol, .verzeichnis ul, .prosa .verzeichnis ol, .prosa .verzeichnis ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.prosa .karten { padding: 0; }
.verzeichnis li {
  display: grid; grid-template-columns: 3.4rem minmax(0, 1fr); gap: 0.6rem;
  padding: 0.45rem 0; margin: 0; font-size: 0.97rem; line-height: 1.5;
  border-bottom: 1px dotted var(--linie);
}
.verzeichnis li.ohne-nummer { grid-template-columns: minmax(0, 1fr); }
.verzeichnis__nr { color: var(--gedaempft); font-variant-numeric: tabular-nums; text-align: right; font-size: 0.88rem; padding-top: 0.1rem; }
.verzeichnis [hidden] { display: none; }

/* --- Programme (Kongressarchiv) ------------------------------------------ */

.programm { border-top: 1px solid var(--linie); margin: 0 0 2rem; }
.programm p { margin: 0; padding: 0.4rem 0; border-bottom: 1px dotted var(--linie); }

details.aufklapp { border: 1px solid var(--linie); border-radius: var(--radius); background: var(--flaeche); margin: 1.5rem 0; }
details.aufklapp summary { cursor: pointer; padding: 0.8rem 1rem; font-weight: 600; color: var(--tinte); }
details.aufklapp > div { padding: 0 1rem 1rem; }

/* --- Fuß ----------------------------------------------------------------- */

.fuss { background: var(--tinte); color: #b8c4d1; font-size: 0.93rem; }
.fuss__innen {
  max-width: var(--breite); margin: 0 auto; padding: 3rem var(--rand) 3.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
}
.fuss__name { font-family: var(--serif); color: #fff; font-size: 1.08rem; margin: 0 0 0.3rem; }
.fuss__zusatz { margin: 0; }
.fuss__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.fuss a { color: #dfe6ee; text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }

/* --- Druck --------------------------------------------------------------- */

@media print {
  .kopf__nav, .kopf__menueknopf, .brotkrumen, .rand, .fuss__nav, .verzeichnis-filter, .sprunglink { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .buehne { background: #fff; color: #000; }
  .buehne h1, .buehne__text { color: #000; }
  .buehne__fundus { display: none; }
  a { color: inherit; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
