/* Vorlesereise Landingpage — Design-Tokens aus DESIGN.md (Reiseposter-Welt + Lesewelt) */

/* ── Fonts (selbst gehostet, DSGVO-sauber) ─────────────────────────────── */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("/fonts/literata-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Sour Gummy";
  src: url("/fonts/sour-gummy-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────────────────── */
:root {
  --ozean: oklch(0.42 0.105 245);
  --ozean-tief: oklch(0.35 0.095 245);
  --himmel-dunkel: oklch(0.29 0.075 258);
  --korall: oklch(0.56 0.17 30);
  --korall-tief: oklch(0.49 0.16 30);
  --sonne: oklch(0.85 0.15 88);
  --ink: oklch(0.25 0.04 250);
  --muted: oklch(0.45 0.025 250);
  --bg: oklch(0.975 0.008 240);
  --paper: oklch(1 0 0);
  --linie: oklch(0.89 0.015 240);
  /* Lesewelt (Abendmodus-Leseprobe) */
  --nacht: oklch(0.22 0.035 275);
  --nacht-flaeche: oklch(0.27 0.04 275);
  --mondlicht: oklch(0.93 0.015 80);
  --mondlicht-muted: oklch(0.72 0.02 80);
  --fakten-nacht: oklch(0.29 0.045 272);
  --sprache-nacht: oklch(0.29 0.045 160);
  --licht: oklch(0.78 0.13 75);

  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --buch: "Literata", Georgia, serif;

  --space-s: 0.75rem;
  --space-m: 1.5rem;
  --space-l: clamp(3rem, 6vw, 5rem);
  --space-xl: clamp(4.5rem, 10vw, 8rem);
  --radius-card: 16px;
  --radius-btn: 12px;
}

/* ── Basis ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  text-wrap: balance;
  margin: 0;
}
p {
  margin: 0;
  text-wrap: pretty;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--ozean);
}
:focus-visible {
  outline: 3px solid var(--ozean);
  outline-offset: 2px;
  border-radius: 4px;
}
.wrap {
  max-width: 68rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--korall);
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 150ms ease-out, transform 150ms ease-out;
}
.btn:hover {
  background: var(--korall-tief);
}
.btn:active {
  transform: scale(0.98);
}
.btn-ghost {
  display: inline-block;
  color: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(255 255 255 / 0.35);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 500;
  transition: background 150ms ease-out, color 150ms ease-out;
}
.btn-ghost:hover {
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

/* ── Hero: das Reiseposter selbst ─────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(to bottom, var(--himmel-dunkel), var(--ozean) 55%, oklch(0.62 0.09 245));
}
.hero-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}
.marke {
  font-family: "Sour Gummy", var(--sans);
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-nav .login {
  color: rgb(255 255 255 / 0.85);
  text-decoration: none;
  font-size: 0.95rem;
}
.hero-nav .login:hover {
  color: #fff;
  text-decoration: underline;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(9rem, 18vw, 13rem);
  max-width: 46rem;
}
.countdown-chip {
  display: inline-block;
  background: var(--sonne);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 1.4rem;
}
.hero h1 em {
  font-style: italic;
}
.hero .sub {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: rgb(255 255 255 / 0.92);
}
.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Sonne + Schein (nur transform/opacity animiert) */
.sonne {
  position: absolute;
  z-index: 1;
  right: 12%;
  bottom: clamp(6rem, 13vw, 9.5rem);
  width: clamp(5.5rem, 9vw, 7.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sonne);
}
.sonne::after {
  content: "";
  position: absolute;
  inset: -45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(243 200 80 / 0.4), transparent 70%);
  animation: gluehen 7s ease-in-out infinite alternate;
}
@keyframes gluehen {
  from {
    opacity: 0.55;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}
.voegel {
  /* Zugvögel links über der Sonne, Richtung Horizont */
  position: absolute;
  z-index: 1;
  right: 26%;
  bottom: clamp(13rem, 26vw, 19rem);
  width: 3.5rem;
  opacity: 0.65;
}
@media (max-width: 48rem) {
  .voegel {
    right: 10%;
    bottom: auto;
    top: 12%;
  }
}
.wellen {
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  bottom: 0;
  height: clamp(4.5rem, 9vw, 7rem);
  width: 100%;
  display: block;
}

/* Hero-Einstieg: sanftes Ankommen (Inhalt bleibt ohne JS/Klassen sichtbar) */
.hero-inner > * {
  animation: ankommen 700ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.hero-inner > :nth-child(2) {
  animation-delay: 90ms;
}
.hero-inner > :nth-child(3) {
  animation-delay: 180ms;
}
.hero-inner > :nth-child(4) {
  animation-delay: 270ms;
}
@keyframes ankommen {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ── Abschnitte ───────────────────────────────────────────────────────── */
section {
  padding-block: var(--space-xl);
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-lead {
  margin-top: 0.9rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
}

/* So funktioniert's — echte Sequenz, große Serif-Ziffern statt Icon-Cards */
.schritte {
  margin-top: var(--space-l);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.schritt .ziffer {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ozean);
}
.schritt h3 {
  margin-top: 0.7rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.schritt p {
  margin-top: 0.55rem;
  color: var(--muted);
}
.schritt strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Leseprobe: der Abendmodus als Bühne ──────────────────────────────── */
.leseprobe {
  background: var(--nacht);
  color: var(--mondlicht);
}

/* ── Lesemodus-Schalter (reines CSS, die Landing bleibt JS-frei) ────────
   Checkbox unsichtbar, Label als Pill wie in der App; :has() schaltet die
   Sektion auf den hellen Lesemodus um. Ohne :has()-Support (sehr alte
   Browser) bleibt einfach der Abendmodus stehen. */
.lesemodus-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.lesemodus {
  cursor: pointer;
  border: 1px solid oklch(0.72 0.02 80 / 0.4);
  border-radius: 999px;
  padding: 0.35em 1em;
  transition: color 0.15s, border-color 0.15s;
}
.lesemodus:hover {
  color: var(--licht);
  border-color: var(--licht);
}
.lesemodus-check:focus-visible + .lesemodus {
  outline: 3px solid var(--licht);
  outline-offset: 2px;
}
.lesemodus .zeig-abend {
  display: none;
}
.leseprobe:has(.lesemodus-check:checked) .zeig-abend {
  display: inline;
}
.leseprobe:has(.lesemodus-check:checked) .zeig-hell {
  display: none;
}

/* Heller Lesemodus — Farben wie die helle Leseansicht der App */
.leseprobe:has(.lesemodus-check:checked) {
  background: var(--bg);
  color: var(--ink);
}
.leseprobe:has(.lesemodus-check:checked) .abend-meta {
  color: var(--muted);
}
.leseprobe:has(.lesemodus-check:checked) .lesemodus {
  border-color: var(--linie);
}
.leseprobe:has(.lesemodus-check:checked) .lesemodus:hover {
  color: oklch(0.45 0.11 272);
  border-color: oklch(0.45 0.11 272);
}
.leseprobe:has(.lesemodus-check:checked) .cliffhanger {
  color: var(--muted);
  border-top-color: var(--linie);
}
.leseprobe:has(.lesemodus-check:checked) .box p,
.leseprobe:has(.lesemodus-check:checked) .box li {
  color: var(--ink);
}
.leseprobe:has(.lesemodus-check:checked) .aussprache {
  color: var(--muted);
}
.leseprobe:has(.lesemodus-check:checked) .box.fakten {
  background: oklch(0.95 0.035 272);
}
.leseprobe:has(.lesemodus-check:checked) .box.sprache {
  background: oklch(0.95 0.035 160);
}

.leseprobe-cta {
  margin-top: 2.75rem;
  text-align: center;
}
.leseprobe .buehne {
  max-width: 44rem;
  margin-inline: auto;
}
.abend-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  color: var(--mondlicht-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leseprobe h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-top: 1.1rem;
}
.leseprobe .story {
  margin-top: 2rem;
  font-family: var(--buch);
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 65ch;
}
.leseprobe .story p + p {
  margin-top: 1.25em;
}
.cliffhanger {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px dashed oklch(0.45 0.03 275);
  color: var(--mondlicht-muted);
  font-style: italic;
  font-family: var(--buch);
}
.kapitel-boxen {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.box {
  border-radius: var(--radius-card);
  padding: 1.3rem 1.4rem;
  font-size: 0.98rem;
}
.box p,
.box li {
  color: var(--mondlicht);
}
.box .box-titel {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.box.fakten {
  background: var(--fakten-nacht);
}
.box.sprache {
  background: var(--sprache-nacht);
}
.box ul {
  margin: 0;
  padding-left: 1.1rem;
}
.box li + li {
  margin-top: 0.4rem;
}
.aussprache {
  display: block;
  color: var(--mondlicht-muted);
  font-size: 0.88rem;
}

/* ── Poster-Galerie ───────────────────────────────────────────────────── */
.poster-grid {
  margin-top: var(--space-l);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.poster {
  margin: 0;
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper);
}
.poster img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: auto; /* sonst gewinnt das height-Attribut über aspect-ratio */
}
.poster figcaption {
  padding: 0.7rem 0.95rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.poster figcaption span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}
/* leiser Versatz für Rhythmus auf breiten Screens */
@media (min-width: 60rem) {
  .poster:nth-child(2n) {
    translate: 0 1.25rem;
  }
  .poster-grid {
    padding-bottom: 1.25rem;
  }
}

/* ── Preis: Ozean-Fläche ──────────────────────────────────────────────── */
.preis {
  background: var(--ozean);
  color: #fff;
}
.preis .zusammen {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  align-items: center;
}
.preis h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.1;
}
.preis .betrag {
  margin-top: 1.2rem;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.preis .betrag small {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.75);
  letter-spacing: 0;
}
.preis .gratis {
  margin-top: 1.1rem;
  max-width: 30rem;
  color: rgb(255 255 255 / 0.92);
  font-size: 1.1rem;
}
.preis .gratis strong {
  color: var(--sonne);
}
.enthalten {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
}
.enthalten li {
  padding-block: 0.85rem;
  padding-left: 1.9rem;
  position: relative;
}
.enthalten li + li {
  border-top: 1px solid rgb(255 255 255 / 0.18);
}
.enthalten li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sonne);
}
.preis .beta-hinweis {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.7);
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-liste {
  margin-top: var(--space-l);
  max-width: 46rem;
  border-top: 1px solid var(--linie);
}
.faq-liste details {
  border-bottom: 1px solid var(--linie);
}
.faq-liste summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1.15rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-liste summary::-webkit-details-marker {
  display: none;
}
.faq-liste summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ozean);
  transition: rotate 200ms ease-out;
}
.faq-liste details[open] summary::after {
  rotate: 45deg;
}
.faq-liste details > p {
  padding-bottom: 1.3rem;
  max-width: 60ch;
  color: var(--muted);
}

/* ── Schluss-CTA + Footer ─────────────────────────────────────────────── */
.schluss {
  text-align: center;
}
.schluss h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
}
.schluss p {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.1rem;
}
.schluss .btn {
  margin-top: 2rem;
}
footer {
  background: var(--ozean-tief);
  color: rgb(255 255 255 / 0.8);
  padding-block: 2.5rem;
  font-size: 0.9rem;
}
footer .zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: baseline;
}
footer a {
  color: rgb(255 255 255 / 0.9);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ── Rechtsseiten (Impressum, Datenschutz, AGB) ───────────────────────── */
body.doc header {
  background: var(--ozean);
  padding-block: 1.25rem;
}
body.doc main {
  max-width: 44rem;
  margin-inline: auto;
  padding: var(--space-l) clamp(1.25rem, 4vw, 2.5rem) var(--space-xl);
}
body.doc h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3rem);
}
body.doc h2 {
  font-size: 1.25rem;
  font-weight: 650;
  margin-top: 2.5rem;
}
body.doc p,
body.doc li {
  margin-top: 0.8rem;
  max-width: 65ch;
  color: oklch(0.33 0.035 250);
}
body.doc .platzhalter {
  background: var(--sonne);
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-weight: 600;
}
body.doc .stand {
  color: var(--muted);
  font-size: 0.9rem;
}
body.doc .zurueck {
  margin-top: 3rem;
}

/* ── Reduced Motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-inner > *,
  .sonne::after {
    animation: none;
  }
  .faq-liste summary::after {
    transition: none;
  }
}

/* ── Unterseiten: Reiseziele & Blog (generiert via landing/build.js) ────── */
.hero-sub .hero-inner {
  padding-block: clamp(2rem, 5vw, 4rem) clamp(6rem, 12vw, 9rem);
}
.hero-flach {
  padding-bottom: 1.25rem;
}
.hero-flach .wellen,
.hero-flach .sonne {
  display: none;
}

.ziel-intro {
  display: grid;
  gap: var(--space-m);
  align-items: center;
  padding-block: var(--space-l);
}
@media (min-width: 720px) {
  .ziel-intro {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: var(--space-l);
  }
}
.ziel-poster img {
  aspect-ratio: auto;
}
.ziel-text p {
  margin-block: 0 var(--space-s);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.ziel-text p strong {
  color: var(--ink);
}
.ziel-preis {
  text-align: center;
  color: var(--muted);
  margin-top: var(--space-l);
}
.weitere-ziele {
  margin-top: var(--space-l);
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
}
.weitere-ziele a {
  color: var(--ozean);
}

.poster-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.poster-link:hover figcaption {
  color: var(--ozean);
}
.leseprobe-hinweis {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-block: 0.75rem 0;
}
.leseprobe:has(.lesemodus-check:checked) .leseprobe-hinweis {
  color: var(--mondlicht-muted);
}
/* Doc-/Blog-Header mit Menü + Kontaktseite */
.doc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.doc-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
}
.doc-menu a {
  color: rgb(255 255 255 / 0.85);
  text-decoration: none;
}
.doc-menu a:hover {
  color: #fff;
  text-decoration: underline;
}
.kontakt-frame {
  width: 100%;
  height: 640px;
  border: 0;
  margin-top: var(--space-m);
}
.kontakt-alternative {
  font-size: 0.9rem;
  color: var(--muted);
}
/* ── Blog (Design v2) ─────────────────────────────────────────────────── */
.blog-hero {
  max-width: 50rem;
}
.blog-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin-block: 0.5rem 1rem;
}
.blog-hero .sub {
  max-width: 40rem;
}
.blog-hero-meta {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.75);
  margin: 0;
}
.blog-hero-meta a {
  color: inherit;
}

.prose {
  max-width: 46rem;
  padding-block: var(--space-l);
}
.prose p,
.prose li {
  font-family: var(--buch);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}
.prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.2;
  margin-block: var(--space-l) var(--space-s);
}
.prose h2::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 4px;
  border-radius: 2px;
  background: var(--sonne);
  margin-bottom: 0.6rem;
}
.prose ul li::marker,
.prose ol li::marker {
  color: var(--korall);
  font-weight: 700;
}
.prose a {
  color: var(--ozean);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--linie);
  margin-block: var(--space-l);
}
.blog-bild {
  margin-block: 0 var(--space-l);
  margin-top: calc(-1 * clamp(3rem, 7vw, 6rem));
  box-shadow: 0 18px 40px -18px oklch(0.35 0.095 245 / 0.45);
}
.blog-bild img {
  aspect-ratio: auto;
}
.blog-cta {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--space-m);
  align-items: center;
  margin-top: var(--space-l);
  padding: var(--space-m);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--himmel-dunkel), var(--ozean));
  color: #fff;
}
.blog-cta img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}
.blog-cta p {
  font-family: var(--sans);
  color: rgb(255 255 255 / 0.88);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-block: 0.35rem 0;
}
.blog-cta-titel {
  font-family: var(--display);
  font-size: 1.35rem;
  color: #fff !important;
}
.blog-cta .btn {
  display: inline-block;
  margin-top: 0.9rem;
}
@media (max-width: 560px) {
  .blog-cta {
    grid-template-columns: 1fr;
  }
  .blog-cta img {
    width: 100%;
    height: 140px;
  }
}
.prose .weitere-ziele {
  justify-content: flex-start;
  margin-top: var(--space-l);
}

.blog-liste {
  padding-block: var(--space-l);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  gap: var(--space-m);
  max-width: 64rem;
  margin-inline: auto;
}
.blog-karte {
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-karte:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px oklch(0.35 0.095 245 / 0.35);
}
.blog-karte > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-karte img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.blog-karte-text {
  padding: 1.1rem 1.25rem 1.35rem;
}
.blog-karte h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.22;
  margin-block: 0.3rem 0.4rem;
}
.blog-karte-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-block: 0.2rem 0;
}
.blog-datum {
  font-size: 0.85rem;
  color: var(--muted);
}
.weiterlesen {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--korall);
}
