/* ==========================================================================
   Klangkommandos – Heinz Busen
   Farben und Schriftbild sind vom gedruckten Flyer und den Hörbuch-Covern
   abgeleitet: Creme, tiefes Marineblau, gedecktes Gold.
   ========================================================================== */

:root {
  --creme:        #f4e9d5;
  --creme-hell:   #fbf5ea;
  --creme-tief:   #ead9be;
  --papier:       #ffffff;
  --tinte:        #1a1813;
  --tinte-weich:  #514a3f;
  --tinte-zart:   #7d7466;
  --marine:       #13233d;
  --marine-tief:  #0b1526;
  --gold:         #a8823c;
  --gold-hell:    #c9a961;
  --linie:        #dbc9ab;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --breit: 1140px;
  --schmal: 720px;
  --rund: 3px;
  --schatten: 0 1px 2px rgba(26, 24, 19, .05), 0 8px 28px -12px rgba(26, 24, 19, .18);
  --schatten-hoch: 0 2px 4px rgba(26, 24, 19, .06), 0 18px 48px -16px rgba(26, 24, 19, .28);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinte);
  font: 400 17px/1.68 var(--sans);
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.012em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.6vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--tinte); }

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

strong, b { font-weight: 650; }

/* ------------------------------------------------------------ Grundgerüst */
.huelle { width: 100%; max-width: var(--breit); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.huelle--schmal { max-width: var(--schmal); }

section { padding: clamp(56px, 9vw, 104px) 0; }

/* Damit Sprungmarken nicht unter der festen Kopfzeile landen */
section[id], article[id], div[id] { scroll-margin-top: 92px; }

.zum-inhalt {
  position: absolute; left: -9999px;
  background: var(--marine); color: #fff; padding: 12px 20px; z-index: 200;
}
.zum-inhalt:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------- Kopfzeile */
.kopf {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 233, 213, .92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--linie);
}
.kopf__innen {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}
.kopf__logo { display: flex; align-items: center; flex-shrink: 0; }
.kopf__logo img { height: 42px; width: auto; }

.nav__liste {
  display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px);
  list-style: none; margin: 0; padding: 0;
}
.nav__liste a {
  display: block; padding: 6px 0;
  font: 500 .875rem/1 var(--sans);
  letter-spacing: .075em; text-transform: uppercase;
  color: var(--tinte-weich); text-decoration: none;
  border-bottom: 1.5px solid transparent;
}
.nav__liste a:hover, .nav__liste a[aria-current="page"] {
  color: var(--tinte); border-bottom-color: var(--gold);
}

.nav__schalter {
  display: none; background: none; border: 1px solid var(--linie);
  border-radius: var(--rund); padding: 9px 11px; cursor: pointer; color: var(--tinte);
}
.nav__schalter span {
  display: block; width: 20px; height: 1.5px; background: currentColor;
}
.nav__schalter span + span { margin-top: 5px; }

@media (max-width: 860px) {
  .nav__schalter { display: block; }
  .nav {
    position: absolute; inset: 74px 0 auto; display: none;
    background: var(--creme-hell); border-bottom: 1px solid var(--linie);
    box-shadow: var(--schatten);
  }
  .nav[data-offen="ja"] { display: block; }
  .nav__liste {
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px clamp(20px, 5vw, 40px) 20px;
  }
  .nav__liste a { padding: 13px 0; border-bottom: 1px solid var(--linie); }
  .nav__liste li:last-child a { border-bottom: none; }
}

/* --------------------------------------------------------------- Schalter */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border: 1.5px solid transparent; border-radius: var(--rund);
  font: 600 .9375rem/1 var(--sans); letter-spacing: .045em;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.knopf:active { transform: translateY(1px); }
.knopf--voll { background: var(--marine); color: #fff; border-color: var(--marine); }
.knopf--voll:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.knopf--rand { background: transparent; color: var(--tinte); border-color: var(--tinte); }
.knopf--rand:hover { background: var(--tinte); color: var(--creme); }
.knopf--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.knopf--gold:hover { background: var(--marine); border-color: var(--marine); }
.knopf--hell { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.knopf--hell:hover { background: #fff; color: var(--marine); border-color: #fff; }
.knopf--breit { width: 100%; }

.knopfreihe { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------ Textbausteine */
.augenbraue {
  font: 600 .8125rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.vorspann { font-size: clamp(1.05rem, 1.9vw, 1.2rem); color: var(--tinte-weich); }
.klein { font-size: .875rem; color: var(--tinte-zart); }

.zitat {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.42; color: var(--marine); margin: 0;
  padding-left: clamp(18px, 3vw, 28px); border-left: 2px solid var(--gold);
}
.zitat cite {
  display: block; margin-top: 14px;
  font: 600 .8125rem/1.4 var(--sans); font-style: normal;
  letter-spacing: .1em; text-transform: uppercase; color: var(--tinte-zart);
}

/* ------------------------------------------------------------------- Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--marine-tief); color: #fff; padding: 0;
}
.hero__wellen {
  position: absolute; top: 50%; right: -6%; transform: translateY(-50%);
  width: min(760px, 78%); height: auto; opacity: .3; pointer-events: none;
}
.hero__innen {
  position: relative; display: grid; gap: clamp(36px, 5vw, 64px);
  grid-template-columns: 1fr; align-items: center;
  /* Nur oben und unten setzen – der seitliche Rand kommt von .huelle */
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(56px, 8vw, 100px);
}
@media (min-width: 900px) {
  .hero__innen { grid-template-columns: 1.06fr .94fr; }
}
.hero__logo { height: clamp(52px, 7vw, 74px); width: auto; margin-bottom: clamp(28px, 4vw, 40px); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .zeile { display: block; }
.hero h1 .klein-zeile {
  display: block; font-size: .38em; font-family: var(--sans); font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-hell);
  margin-bottom: .7em;
}
.hero__text { color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.9vw, 1.2rem); max-width: 33em; }
.hero .knopfreihe { margin-top: 34px; }
.hero__bild {
  position: relative; border-radius: var(--rund); overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.7);
}
.hero__bild img { width: 100%; }
.hero__marke {
  position: absolute; inset: auto 0 0; padding: 44px 26px 20px;
  background: linear-gradient(to top, rgba(11,21,38,.94), transparent);
  font: 600 .8125rem/1.5 var(--sans); letter-spacing: .1em; text-transform: uppercase;
}
.hero__marke span { display: block; color: var(--gold-hell); letter-spacing: .06em; text-transform: none; font-weight: 400; }

/* ------------------------------------------------------------ Abschnitte */
.abschnitt--papier { background: var(--creme-hell); }
.abschnitt--weiss { background: var(--papier); }
.abschnitt--marine { background: var(--marine); color: rgba(255,255,255,.85); }
.abschnitt--marine h2, .abschnitt--marine h3 { color: #fff; }
.abschnitt--marine .augenbraue { color: var(--gold-hell); }

.kopfblock { max-width: 46rem; margin-bottom: clamp(40px, 5vw, 60px); }
.kopfblock--mitte { margin-left: auto; margin-right: auto; text-align: center; }

/* ------------------------------------------------------------ Doppelspalte */
.paar {
  display: grid; gap: clamp(32px, 5vw, 68px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .paar { grid-template-columns: 1fr 1fr; }
  .paar--bild-links > :first-child { order: 2; }
  .paar--bild-links > :last-child { order: 1; }
  .paar--schmal-bild { grid-template-columns: .85fr 1.15fr; }
}
.paar__bild { border-radius: var(--rund); overflow: hidden; box-shadow: var(--schatten-hoch); }

/* ------------------------------------------------------------- Kartenraster */
.raster { display: grid; gap: clamp(20px, 2.6vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 700px)  { .raster--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .raster--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .raster--2 { grid-template-columns: repeat(2, 1fr); } }

.karte {
  display: flex; flex-direction: column;
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--rund);
  padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--schatten);
}
.karte__nummer {
  font-family: var(--serif); font-size: 2.4rem; line-height: 1;
  color: var(--creme-tief); margin-bottom: 14px;
}
.karte h3 { margin-bottom: .5em; }
.karte p { color: var(--tinte-weich); font-size: .9688rem; }
.karte__fuss { margin-top: auto; padding-top: 22px; }
.karte__fuss a {
  font: 600 .875rem/1 var(--sans); letter-spacing: .05em;
  text-decoration: none; border-bottom: 1.5px solid var(--linie); padding-bottom: 4px;
}
.karte__fuss a:hover { border-bottom-color: var(--gold); }

/* ------------------------------------------------------------------ Listen */
.liste { list-style: none; margin: 0; padding: 0; }
.liste li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
  color: var(--tinte-weich);
}
.liste li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 9px; height: 9px; border: 1.5px solid var(--gold); border-radius: 50%;
}
.liste--haken li::before {
  content: ""; left: 0; top: .42em; width: 12px; height: 7px;
  border: 0; border-left: 1.8px solid var(--gold); border-bottom: 1.8px solid var(--gold);
  border-radius: 0; transform: rotate(-45deg);
}
.abschnitt--marine .liste li { color: rgba(255,255,255,.8); }
.abschnitt--marine .liste li::before { border-color: var(--gold-hell); }

.merkmale {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px 28px; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}
.merkmale div {
  padding: 15px 0; border-top: 1px solid var(--linie);
}
.merkmale dt {
  font: 600 .75rem/1 var(--sans); letter-spacing: .11em; text-transform: uppercase;
  color: var(--tinte-zart); margin-bottom: 7px;
}
.merkmale dd { margin: 0; font-weight: 550; }

/* ------------------------------------------------------------ Ablaufkette */
.kette {
  display: grid; gap: 4px; grid-template-columns: 1fr;
  counter-reset: schritt;
}
@media (min-width: 780px) { .kette { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.kette__glied {
  position: relative; padding: clamp(24px, 3vw, 32px);
  background: var(--papier); border: 1px solid var(--linie);
}
@media (min-width: 780px) {
  .kette__glied + .kette__glied { border-left: none; }
}
.kette__glied::before {
  counter-increment: schritt; content: counter(schritt);
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-bottom: 16px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  font: 600 .875rem/1 var(--sans); color: var(--gold);
}
.kette__glied h3 { font-size: 1.1rem; margin-bottom: .45em; }
.kette__glied p { font-size: .9375rem; color: var(--tinte-weich); margin: 0; }

/* --------------------------------------------------------------- Hörbücher */
.buch {
  display: grid; gap: clamp(30px, 4vw, 56px); grid-template-columns: 1fr;
  padding: clamp(30px, 4vw, 46px);
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--rund);
  box-shadow: var(--schatten);
  scroll-margin-top: 96px;
}
@media (min-width: 900px) { .buch { grid-template-columns: 300px 1fr; } }
@media (min-width: 1060px) { .buch { grid-template-columns: 340px 1fr; } }
.buch + .buch { margin-top: clamp(28px, 4vw, 44px); }

.buch__cover {
  border-radius: 2px; overflow: hidden; box-shadow: var(--schatten-hoch);
  align-self: start;
}
.buch__spalte-links > * + * { margin-top: 22px; }

.buch h2 { margin-bottom: .18em; }
.buch__untertitel {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--tinte-weich);
  margin: 0 0 20px;
}

.merker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 100px;
  font: 600 .75rem/1 var(--sans); letter-spacing: .09em; text-transform: uppercase;
}
.merker--frei { background: #e8f0e6; color: #3c6b39; }
.merker--bald { background: var(--creme-tief); color: #7a5a1e; }
.merker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
}

.preis {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin: 0 0 4px;
}
.preis__zahl { font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.preis__zusatz { font-size: .875rem; color: var(--tinte-zart); }

/* Hörprobe */
.hoerprobe {
  padding: 20px 22px; background: var(--creme-hell);
  border: 1px solid var(--linie); border-radius: var(--rund);
}
.hoerprobe__kopf {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font: 600 .8125rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--tinte-weich);
}
.hoerprobe audio { width: 100%; height: 40px; }

/* Kapitelverzeichnis */
.kapitel { margin-top: 26px; }
.kapitel summary {
  cursor: pointer; padding: 14px 0;
  border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie);
  font: 600 .875rem/1 var(--sans); letter-spacing: .06em;
  list-style: none;
}
.kapitel summary::-webkit-details-marker { display: none; }
.kapitel summary::after { content: " +"; color: var(--gold); }
.kapitel[open] summary::after { content: " –"; }
.kapitel ol {
  margin: 0; padding: 20px 0 0 0; list-style: none;
  counter-reset: kap;
  columns: 2; column-gap: 34px;
}
@media (max-width: 680px) { .kapitel ol { columns: 1; } }
.kapitel li {
  break-inside: avoid; padding: 7px 0 7px 30px; position: relative;
  font-size: .9375rem; color: var(--tinte-weich);
}
.kapitel li::before {
  counter-increment: kap; content: counter(kap, decimal-leading-zero);
  position: absolute; left: 0; top: 7px;
  font: 600 .75rem/1.6 var(--sans); color: var(--gold);
}

/* QR-Bereich */
.qr {
  display: grid; gap: clamp(22px, 3vw, 34px); align-items: center;
  grid-template-columns: 1fr;
  margin-top: 26px; padding: clamp(22px, 3vw, 30px);
  background: var(--creme-hell); border: 1px solid var(--linie); border-radius: var(--rund);
}
@media (min-width: 560px) { .qr { grid-template-columns: auto 1fr; } }
.qr__bild {
  width: 152px; height: 152px; padding: 10px;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--rund);
}
.qr__bild img { width: 100%; height: 100%; }
.qr h3 { font-size: 1.1rem; margin-bottom: .4em; }
.qr p { font-size: .9375rem; color: var(--tinte-weich); margin-bottom: .7em; }
.qr__links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .875rem; }

/* -------------------------------------------------------------- Kontakt */
.kontakt__karte {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--rund);
  padding: clamp(28px, 4vw, 42px); box-shadow: var(--schatten);
}
.kontakt__zeile {
  display: flex; gap: 16px; padding: 17px 0; border-top: 1px solid var(--linie);
}
.kontakt__zeile:first-of-type { border-top: none; padding-top: 0; }
.kontakt__marke {
  flex: 0 0 88px;
  font: 600 .75rem/1.7 var(--sans); letter-spacing: .11em; text-transform: uppercase;
  color: var(--gold);
}
.kontakt__wert { margin: 0; }
.kontakt__wert a { color: var(--tinte); text-decoration: none; border-bottom: 1px solid var(--linie); }
.kontakt__wert a:hover { border-bottom-color: var(--gold); }

/* --------------------------------------------------------------- Fußzeile */
.fuss {
  background: var(--marine-tief); color: rgba(255,255,255,.62);
  padding: clamp(48px, 6vw, 70px) 0 32px; font-size: .9375rem;
}
.fuss__oben {
  display: grid; gap: 34px; grid-template-columns: 1fr;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.13);
}
@media (min-width: 760px) { .fuss__oben { grid-template-columns: 1.4fr 1fr 1fr; } }
.fuss img { height: 46px; width: auto; margin-bottom: 18px; }
.fuss h4 {
  color: #fff; font-family: var(--sans); font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
}
.fuss a { color: rgba(255,255,255,.78); text-decoration: none; }
.fuss a:hover { color: var(--gold-hell); }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: 9px; }
.fuss__unten {
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between;
  padding-top: 26px; font-size: .8438rem; color: rgba(255,255,255,.45);
}

/* ---------------------------------------------------------- Rechtstexte */
.rechtstext { padding-top: clamp(48px, 6vw, 76px); }
.rechtstext h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: 2em; }
.rechtstext h2:first-of-type { margin-top: 1.2em; }
.rechtstext h3 { font-size: 1.1rem; margin-top: 1.7em; }
.rechtstext p, .rechtstext li { color: var(--tinte-weich); }
.rechtstext ul { padding-left: 22px; }
.rechtstext li { margin-bottom: 8px; }
.rechtstext mark {
  background: #fdf0cd; color: #6b4f10;
  padding: 1px 5px; border-radius: 2px; font-size: .9375em;
}

/* ---------------------------------------------------------------- Plakat */
.plakat-hinweis { background: var(--creme-hell); border: 1px dashed var(--linie); padding: 22px; border-radius: var(--rund); }

@media print {
  .kopf, .fuss, .nav, .plakat-hinweis, .knopfreihe { display: none !important; }
  body { background: #fff; }
  section { padding: 0; }
}

/* ---------------------------------------------------------------- Videos
   Zwei-Klick-Lösung: Erst beim Klick wird YouTube geladen. Bis dahin liegt
   nur das Vorschaubild vom eigenen Server auf der Seite. */
.videoraster { display: grid; gap: clamp(20px, 2.6vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 700px)  { .videoraster--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .videoraster--3 { grid-template-columns: repeat(3, 1fr); } }

.video {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--rund);
  overflow: hidden; box-shadow: var(--schatten);
  display: flex; flex-direction: column;
}
.video__buehne {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  margin: 0; padding: 0; border: 0; display: block;
  background: var(--marine-tief); cursor: pointer; overflow: hidden;
}
.video__buehne img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s, opacity .3s;
}
.video__buehne:hover img { transform: scale(1.035); opacity: .82; }
.video__knopf {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video__knopf span {
  display: flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(19, 35, 61, .82); border: 1.5px solid rgba(255,255,255,.5);
  transition: background-color .25s, transform .25s;
}
.video__buehne:hover .video__knopf span { background: var(--gold); transform: scale(1.06); }
.video__knopf svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video__buehne iframe { width: 100%; height: 100%; border: 0; display: block; }

.video__text { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.video__text h3 { font-size: 1.08rem; margin-bottom: .4em; }
.video__text p { font-size: .9375rem; color: var(--tinte-weich); margin: 0; }
.video__hinweis {
  margin-top: auto; padding-top: 14px;
  font-size: .8125rem; line-height: 1.5; color: var(--tinte-zart);
}
.video__hinweis a { color: var(--tinte-zart); }

.abschnitt--marine .video { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); }
.abschnitt--marine .video__text h3 { color: #fff; }
.abschnitt--marine .video__text p { color: rgba(255,255,255,.78); }
.abschnitt--marine .video__hinweis { color: rgba(255,255,255,.5); }
.abschnitt--marine .video__hinweis a { color: rgba(255,255,255,.6); }

/* ------------------------------------------------------------- Beiträge */
.beitrag__kopf { margin-bottom: clamp(34px, 4vw, 46px); }
.beitrag__meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 20px;
  font: 500 .8125rem/1 var(--sans); letter-spacing: .06em;
  text-transform: uppercase; color: var(--tinte-zart);
}
.beitrag__inhalt { font-size: 1.0625rem; }
.beitrag__inhalt h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-top: 1.9em; }
.beitrag__inhalt h3 { margin-top: 1.6em; }
.beitrag__inhalt > p, .beitrag__inhalt > ul { max-width: 40em; }
.beitrag__inhalt .liste { margin: 1.2em 0; }
.beitrag__inhalt .zitat { margin: 1.8em 0; }

.beitragskarte {
  display: flex; flex-direction: column;
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--rund);
  box-shadow: var(--schatten); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.beitragskarte:hover { transform: translateY(-3px); box-shadow: var(--schatten-hoch); color: inherit; }
.beitragskarte img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.beitragskarte__text { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.beitragskarte h3 { margin-bottom: .4em; }
.beitragskarte p { font-size: .9375rem; color: var(--tinte-weich); margin: 0; }
.beitragskarte__mehr {
  margin-top: auto; padding-top: 18px;
  font: 600 .875rem/1 var(--sans); color: var(--gold);
}

/* ------------------------------------------------------------ Newsletter */
.newsletter { background: var(--marine); color: rgba(255,255,255,.85); }
.newsletter h2 { color: #fff; }
.newsletter__form {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; max-width: 33rem;
}
.newsletter__form input[type="email"] {
  flex: 1 1 15rem; min-width: 0;
  padding: 15px 18px; border: 1.5px solid rgba(255,255,255,.35); border-radius: var(--rund);
  background: rgba(255,255,255,.07); color: #fff;
  font: 400 1rem/1.2 var(--sans);
}
.newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.newsletter__form input[type="email"]:focus {
  outline: none; border-color: var(--gold-hell); background: rgba(255,255,255,.12);
}
.newsletter__zustimmung {
  display: flex; gap: 11px; align-items: flex-start;
  margin-top: 18px; max-width: 40rem;
  font-size: .875rem; line-height: 1.55; color: rgba(255,255,255,.7);
}
.newsletter__zustimmung input { margin-top: 4px; flex-shrink: 0; width: 17px; height: 17px; }
.newsletter__zustimmung a { color: var(--gold-hell); }

/* Das Attribut "hidden" muss auch bei Elementen mit eigener display-Angabe
   greifen – sonst bleibt das Newsletter-Formular sichtbar. */
[hidden] { display: none !important; }

/* Listen und Text im dunklen Newsletter-Bereich aufhellen */
.newsletter .karte h3 { color: #fff; }
.newsletter .liste li { color: rgba(255,255,255,.82); }
.newsletter .liste li::before { border-color: var(--gold-hell); }
.newsletter .liste--haken li::before {
  border-left-color: var(--gold-hell); border-bottom-color: var(--gold-hell);
}
.newsletter .klein { color: rgba(255,255,255,.6); }
