/**
 * Gottlebt.JETZT — Sacred Luxury
 * @font-face: views/partials/head.ejs (self-hosted woff2, copy-fonts.js)
 */

/* -------------------------------------------------------------------------- */
/* 1. Reset + Variablen                                                       */
/* -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --midnight: #0a1628;
  --deep-navy: #132744;
  --royal-blue: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-glow: #f5ebd3;
  --cream: #faf6ee;
  --warm-white: #fefcf7;
  --text-dark: #1a1a2e;
  --text-body: #3d3d56;
  --navy: var(--deep-navy);
  --soft-gray: #8a8a9e;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-h: 4.25rem;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 48px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 0 0 1px rgba(201, 168, 76, 0.35);
}

/* -------------------------------------------------------------------------- */
/* 2. Basis                                                                   */
/* -------------------------------------------------------------------------- */

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--warm-white);
  min-height: 100vh;
}

body.nav-menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

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

::selection {
  background: var(--gold-glow);
  color: var(--text-dark);
}

/* Innenseiten: Navbar immer „eingeloggt“ */
body.is-inner #navbar {
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.25);
}

body.is-inner .nav-logo,
body.is-inner .nav-links a {
  color: var(--cream);
}

body.is-inner .nav-toggle-bar {
  background: var(--cream);
}

/* -------------------------------------------------------------------------- */
/* 3. Navigation                                                              */
/* -------------------------------------------------------------------------- */

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10, 22, 40, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.nav-menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  min-height: var(--nav-h);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.35);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  z-index: 1001;
}

.nav-logo span {
  color: var(--gold);
}

#navbar.scrolled .nav-logo,
.nav-links a {
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--midnight) !important;
  margin-left: 0.35rem;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--midnight) !important;
}

/* Optional: .nav-admin-link für Admin im Menü (FAB entfernt) */
.nav-admin-link {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  color: var(--midnight) !important;
  background: var(--gold) !important;
  border: 2px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.nav-admin-link:hover {
  background: var(--gold-light) !important;
  color: var(--midnight) !important;
}
.nav-admin-link::after {
  display: none !important;
}
body.is-inner .nav-admin-link {
  color: var(--midnight) !important;
}

.public-admin-fab {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10050;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  color: rgba(250, 246, 238, 0.55);
  background: rgba(10, 22, 40, 0.35);
  border-radius: 999px;
  box-shadow: none;
  border: 1px solid rgba(201, 168, 76, 0.22);
  opacity: 0.42;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.public-admin-fab:hover {
  opacity: 0.92;
  color: var(--gold-light);
  background: rgba(10, 22, 40, 0.72);
  transform: none;
}
.public-admin-quick-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(10, 22, 40, 0.55);
}
.public-admin-quick-modal {
  position: fixed;
  z-index: 10070;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(22rem, calc(100vw - 2rem));
  padding: 1.1rem 1.15rem 1rem;
  border-radius: 14px;
  background: rgba(14, 28, 48, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  color: var(--cream);
}
.public-admin-quick-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
}
.public-admin-quick-hint {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.75);
  line-height: 1.45;
}
.public-admin-quick-err {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #ffb4a8;
}
.public-admin-quick-label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
  color: rgba(250, 246, 238, 0.7);
}
.public-admin-quick-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 1rem;
}
.public-admin-quick-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.85rem;
}
.public-admin-quick-cancel,
.public-admin-quick-submit {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.45);
}
.public-admin-quick-cancel {
  background: transparent;
  color: rgba(250, 246, 238, 0.75);
}
.public-admin-quick-submit {
  background: var(--gold);
  color: var(--midnight);
}
body.public-admin-quick-open .public-admin-fab {
  opacity: 0.9;
}
@media (min-width: 901px) {
  .public-admin-fab {
    bottom: 1.35rem;
    right: 1.35rem;
  }
  .public-admin-quick-modal {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#navbar.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

#navbar.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(20rem, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
    gap: 0.25rem;
    background: linear-gradient(165deg, var(--midnight) 0%, var(--deep-navy) 55%, var(--royal-blue) 100%);
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  #navbar.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
  }

  .nav-admin-li {
    margin-top: 0.5rem;
  }
  .nav-admin-li .nav-admin-link {
    display: block;
    text-align: center;
  }

  /* No-JS-Failsafe: mobiles Menü als normale Liste anzeigen */
  html:not(.gottlebt-js) .nav-links {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    box-shadow: none;
    border-left: 0;
    padding: 0.5rem 0 0;
    background: transparent;
  }

  html:not(.gottlebt-js) .nav-backdrop,
  html:not(.gottlebt-js) .nav-toggle {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* 4. Hero                                                                    */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2.5rem;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--midnight) 0%,
    var(--deep-navy) 38%,
    var(--royal-blue) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 84% 62% at 50% 18%, rgba(201, 168, 76, 0.2), transparent 58%),
    radial-gradient(ellipse 72% 48% at 50% 86%, rgba(7, 24, 46, 0.42), transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero .particle,
#particles .particle {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  opacity: 0.4;
  animation-name: float-up;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  pointer-events: none;
}

/* Selten statt Stern: kleines Kreuz, gold-leuchtend, gleiche Bahn nach oben */
.hero .particle.particle--cross,
#particles .particle.particle--cross {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.5;
  filter: drop-shadow(0 0 2px rgba(245, 235, 211, 0.95)) drop-shadow(0 0 5px rgba(201, 168, 76, 0.45));
}

.hero .particle.particle--cross::before,
.hero .particle.particle--cross::after,
#particles .particle.particle--cross::before,
#particles .particle.particle--cross::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(232, 213, 160, 0.88);
  box-shadow: 0 0 4px rgba(245, 235, 211, 0.85), 0 0 8px rgba(201, 168, 76, 0.35);
  pointer-events: none;
}

.hero .particle.particle--cross::before,
#particles .particle.particle--cross::before {
  width: 1px;
  height: 4px;
}

.hero .particle.particle--cross::after,
#particles .particle.particle--cross::after {
  width: 4px;
  height: 1px;
}

@keyframes float-up {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 0.45;
  }
  88% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-120vh);
    opacity: 0;
  }
}

.hero-content,
.hero-column {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46rem;
}

.hero-column {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-height: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 999px;
  background: rgba(250, 246, 238, 0.1);
  box-shadow: 0 10px 28px rgba(6, 16, 30, 0.28);
  margin-bottom: 1.75rem;
}

.hero-content h1,
.hero-column h1 {
  font-size: clamp(2.35rem, 6vw, 3.85rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Nur in der Home-Spalte ausblenden (echtes SR-only); Hermine nutzt .hero-content — dort sichtbar lassen */
.hero-column h1.hero-h1--motto-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-content h1 em,
.hero-column h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline-wrap {
  margin: 1.15rem auto 0;
  padding: 1.15rem 1.35rem 1.25rem;
  max-width: min(36rem, 92vw);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    165deg,
    rgba(250, 246, 238, 0.07) 0%,
    rgba(250, 246, 238, 0.03) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 12px 40px rgba(5, 14, 28, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

/* Header: Spruch sauber integriert + Abstand zu Buttons */
.hero-buttons {
  margin-top: 0.85rem;
}

.hero-tagline__rule {
  display: block;
  width: min(12rem, 55vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 213, 160, 0.55), transparent);
}

.hero-tagline__rule--short {
  width: min(6rem, 35vw);
  opacity: 0.85;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 2.85vw, 1.42rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.9);
  margin: 0;
  max-width: 30rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
}

/* Motto einmal sichtbar: zwei Zeilen, dezentes Leuchten im Wechsel (kein zweites Text-Duplikat) */
.hero-motto {
  position: relative;
  width: 100%;
  min-height: 6.75em;
  margin: 0.35rem auto 1.5rem;
  text-align: center;
}

.hero-motto--mission {
  min-height: 5.5em;
  margin-bottom: 0.75rem;
}

.hero-motto__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  pointer-events: none;
}

.hero-motto__line {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6.5vw, 3.65rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.024em;
}

.hero-motto__line--gold {
  color: var(--gold-light);
  text-shadow:
    0 0 28px rgba(201, 168, 76, 0.35),
    0 0 48px rgba(201, 168, 76, 0.12);
  will-change: opacity, filter;
  animation: heroMottoGlowGold 5s ease-in-out infinite;
}

.hero-motto__line--dawn {
  color: var(--cream);
  text-shadow:
    0 0 28px rgba(250, 246, 238, 0.35),
    0 2px 12px rgba(10, 22, 40, 0.45);
  will-change: opacity, filter;
  animation: heroMottoGlowDawn 5s ease-in-out infinite;
  animation-delay: 0.35s;
}

.hero-motto--has-findings {
  cursor: default;
}

.hero-motto--has-findings .hero-motto__stack {
  pointer-events: auto;
}

.hero-motto__findings {
  display: block;
  margin-top: 0.35em;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--gold-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
  text-shadow: 0 2px 14px rgba(10, 22, 40, 0.35);
  max-width: 28rem;
}

.hero-motto--has-findings:hover .hero-motto__findings,
.hero-motto--has-findings:focus-within .hero-motto__findings {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-block--hero-motto .hero-motto__line--gold {
  color: var(--gold);
  text-shadow: none;
  animation: none;
  filter: none;
  opacity: 1;
}

.home-block--hero-motto .hero-motto__line--dawn {
  color: var(--deep-navy);
  text-shadow: none;
  animation: none;
  filter: none;
  opacity: 1;
}

.home-block--hero-motto .hero-motto__findings {
  color: var(--text-body);
  text-shadow: none;
}

@keyframes heroMottoGlowGold {
  0%,
  100% {
    opacity: 0.72;
    filter: brightness(0.92);
  }
  50% {
    opacity: 1;
    filter: brightness(1.18);
  }
}

@keyframes heroMottoGlowDawn {
  0%,
  100% {
    opacity: 0.92;
    filter: brightness(1.05);
  }
  50% {
    opacity: 1;
    filter: brightness(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motto {
    min-height: auto;
    margin-bottom: 1.25rem;
  }

  .hero-motto__line--gold,
  .hero-motto__line--dawn {
    animation: none;
    opacity: 1;
    filter: none;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.92);
  margin-bottom: 2.15rem;
  max-width: 34rem;
  text-shadow: 0 2px 20px rgba(5, 14, 28, 0.3);
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.35rem;
}

.scroll-indicator {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 246, 238, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
  margin-top: 2.35rem;
  padding-bottom: 0.25rem;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}

/* -------------------------------------------------------------------------- */
/* 5. Bibelvers-Banner                                                        */
/* -------------------------------------------------------------------------- */

.verse-banner {
  background: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.verse-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.55;
  max-width: 48rem;
  margin: 0 auto;
}

.verse-banner cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* -------------------------------------------------------------------------- */
/* 6. Counter-Widget                                                          */
/* -------------------------------------------------------------------------- */

.sl-counter-widget {
  margin: 2rem 0 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--warm-white), var(--cream));
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.sl-counter-widget__main {
  text-align: center;
  margin-bottom: 1.25rem;
}

.sl-counter-widget__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sl-counter-widget__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.sl-counter-widget__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 39, 68, 0.12);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sl-counter-widget__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.45);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sl-counter-widget__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.sl-counter-widget__stats li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.sl-counter-widget__stats li span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

@media (max-width: 767px) {
  .sl-counter-widget__stats {
    grid-template-columns: 1fr;
  }
}

.sl-counter-widget__heading {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.35;
  padding: 0.4rem 0 0.1rem;
  overflow: visible;
}

.sl-counter-widget--v2 .sl-counter-widget__main {
  position: relative;
}

.sl-counter-widget__heading--page-mission {
  font-size: clamp(1.65rem, 5.2vw, 2.85rem) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
}

.sl-counter-widget__sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-body);
}

.sl-counter-widget__meta {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 1.25rem 0 0;
  line-height: 1.5;
}

.sl-counter-widget__meta-sep {
  margin: 0 0.65rem;
  opacity: 0.4;
}

html.gottlebt-js .sl-counter-widget__nojs {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html:not(.gottlebt-js) .sl-counter-widget__js {
  display: none !important;
}

.nav-logo .gold {
  color: var(--gold);
}

.offerings--cta-solid {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-navy) 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.offerings--cta-solid .offerings-header h2 {
  color: var(--cream);
}

.offerings--cta-solid .offerings-header h2 em {
  color: var(--gold-light);
}

/* Dunkler CTA-Block: keine dunkelblaue Zeile auf dunklem Grund (war „abgeschnitten“/unsichtbar) */
.offerings--cta-solid .offerings-header {
  overflow: visible;
  padding-top: 0.6rem;
  margin-bottom: 2.5rem;
}

.offerings--cta-solid .offerings-heading-split__mio {
  color: rgba(250, 246, 238, 0.98);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5);
}

.offerings--cta-solid .offerings-heading-split__line--primary {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55), 0 0 40px rgba(201, 168, 76, 0.12);
}

.offerings--cta-solid .offerings-heading-split__sub {
  color: var(--gold-light);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.offerings--cta-solid .section-tag {
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold-light) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Mitmachen (#angebote): Kontrast dauerhaft – überschreibt Admin-Inline-Farben */
.offerings--cta-solid .offerings-heading-split__line--primary {
  color: var(--cream) !important;
}

.offerings--cta-solid .offerings-heading-split__sub {
  color: var(--gold-light) !important;
}

.offerings--cta-solid .offerings-heading-split__sub em {
  color: var(--gold-light) !important;
}

.offerings-heading-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  line-height: 1.2;
}

.offerings-heading-split__gold {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.6vw, 1.85rem);
  font-weight: 600;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(201, 168, 76, 0.25);
}

.offerings-heading-split__line--primary {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.offerings-heading-split__mio {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.8vw, 1.95rem);
  font-weight: 600;
  /* Mitmachen: Dunkelblau wie Site */
  color: #0f2f55;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
}

.offerings-heading-split__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.75vw, 1.5rem);
  font-weight: 500;
  color: rgba(245, 248, 252, 0.94);
}

.offerings-heading-split__sub em {
  font-style: italic;
  color: var(--gold-light);
}

.offerings-heading-split__navy {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 500;
  color: rgba(226, 237, 248, 0.95);
}

.offerings-heading-split__navy em {
  font-style: italic;
  color: var(--gold-light);
}

.offering-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.offering-card--cta h3 {
  color: var(--cream);
}

.offering-card--cta p {
  flex: 1;
  text-align: left;
}

.offering-card--cta .offering-card__btn {
  margin-top: 1.25rem;
}
/* Mitmachen – dekoratives goldenes Danke */
.mitmachen-golden-danke {
  display: block;
  margin: 0 auto 1.75rem;
  max-width: 18rem;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 11vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: transparent;
  background: linear-gradient(135deg, #f5e6b8 0%, #c9a84c 42%, #e8d5a0 68%, #a8842e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 4px 18px rgba(201, 168, 76, 0.35));
  transform: rotate(-4deg);
  pointer-events: none;
  user-select: none;
}

.offerings--cta-solid .mitmachen-golden-danke {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

/* GoFundMe – Live-Spendenstand (Mitmachen-Bereich) */
.gfm-widget {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.gfm-widget__inner {
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: linear-gradient(
    145deg,
    rgba(250, 246, 238, 0.08) 0%,
    rgba(10, 22, 40, 0.55) 100%
  );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.gfm-widget__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gfm-widget__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(250, 246, 238, 0.92);
}

.gfm-widget__raised {
  margin: 0 0 1rem;
}

.gfm-widget__raised-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 213, 160, 0.85);
}

.gfm-widget__raised-amount {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(201, 168, 76, 0.25);
}

.gfm-widget__progress {
  height: 0.55rem;
  margin: 0 0 0.65rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(250, 246, 238, 0.12);
}

.gfm-widget__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a8842e 0%, var(--gold) 45%, #f5e6b8 100%);
  transition: width 0.6s ease;
}

.gfm-widget__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.78);
}

.gfm-widget__meta-sep {
  opacity: 0.55;
}

.gfm-widget__cta {
  display: inline-flex;
  min-width: min(100%, 14rem);
  justify-content: center;
}

.gfm-widget__stale {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: rgba(250, 246, 238, 0.5);
}

.gfm-widget__inner--fallback .gfm-widget__fallback-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 246, 238, 0.88);
}

@media (max-width: 480px) {
  .gfm-widget {
    margin-bottom: 2rem;
  }

  .gfm-widget__inner {
    padding: 1.25rem 1rem;
  }
}

.offerings-grid .offering-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.offerings-grid .offering-card:hover {
  transform: translateY(-5px);
}

.offerings--cta-solid .offerings-grid .offering-card:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

/* -------------------------------------------------------------------------- */
/* 7. Spendestaffel (4 Karten)                                                */
/* -------------------------------------------------------------------------- */

.sl-section-heading {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  margin: 1.85rem 0 0.5rem;
  color: var(--text-dark);
}

.sl-tier-intro {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.sl-spenden-intro {
  margin: 1.5rem 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.sl-spenden-intro:nth-child(even) {
  background: linear-gradient(160deg, rgba(250, 246, 238, 0.95), #fff);
}

.sl-spenden-trust {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 39, 68, 0.1);
}

.sl-spenden-trust__body {
  max-width: 40rem;
}

.sl-flatrate-intro-chunk {
  margin-bottom: 1.25rem;
}

.sl-flatrate-membership {
  margin: 2rem 0 1.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cream) 0%, rgba(250, 246, 238, 0.6) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.sl-flatrate-membership__body {
  max-width: 42rem;
}

.sl-flatrate-wizard__progress {
  font-size: 0.9rem;
  color: var(--soft-gray);
  margin-bottom: 1rem;
  font-weight: 600;
}

.sl-flatrate-wizard__current {
  color: var(--gold);
  font-size: 1.15rem;
}

.sl-flatrate-wizard__step {
  display: none;
  margin-bottom: 1.5rem;
}

.sl-flatrate-wizard__step.is-active {
  display: block;
}

html:not(.gottlebt-js) .sl-flatrate-wizard__step {
  display: block !important;
}

html:not(.gottlebt-js) .sl-flatrate-wizard__nav,
html:not(.gottlebt-js) .sl-flatrate-wizard__progress {
  display: none !important;
}

.sl-flatrate-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 39, 68, 0.08);
}

.sl-flatrate-wizard__submit {
  margin-top: 1rem;
  width: 100%;
  max-width: 20rem;
}

/* Spenden-Wizard: gleiche Logik/Optik wie Flatrate */
.sl-spenden-wizard__progress {
  font-size: 0.9rem;
  color: var(--soft-gray);
  margin-bottom: 1rem;
  font-weight: 600;
}

.sl-spenden-wizard__current {
  color: var(--gold);
  font-size: 1.15rem;
}

.sl-spenden-wizard__step {
  display: none;
  margin-bottom: 1.5rem;
}

.sl-spenden-wizard__step.is-active {
  display: block;
}

html:not(.gottlebt-js) .sl-spenden-wizard__step {
  display: block !important;
}

html:not(.gottlebt-js) .sl-spenden-wizard__nav,
html:not(.gottlebt-js) .sl-spenden-wizard__progress {
  display: none !important;
}

.sl-spenden-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 39, 68, 0.08);
}

.sl-spenden-flow-note {
  margin: 0.75rem 0 0.5rem;
  color: var(--text-body);
  max-width: 44rem;
}

.sl-spenden-why__list {
  margin: 0.25rem 0 1rem;
  padding: 0 0 0 1.15rem;
  list-style: disc;
  color: var(--text-body);
}

.sl-spenden-why__note {
  margin: 0;
  color: var(--text-body);
}

.sl-feedback-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .sl-feedback-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sl-feedback-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 39, 68, 0.08);
  padding: 1.25rem 1.2rem;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
}

.sl-feedback-card__text {
  margin: 0 0 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.sl-feedback-card__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--soft-gray);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Geschenk-Wizard: Schritt-für-Schritt */
.sl-geschenk-wizard__progress {
  font-size: 0.9rem;
  color: var(--soft-gray);
  margin-bottom: 1rem;
  font-weight: 600;
}

.sl-geschenk-wizard__current {
  color: var(--gold);
  font-size: 1.15rem;
}

.sl-geschenk-wizard__step {
  display: none;
  margin-bottom: 1.5rem;
}

.sl-geschenk-wizard__step.is-active {
  display: block;
}

html:not(.gottlebt-js) .sl-geschenk-wizard__step {
  display: block !important;
}

html:not(.gottlebt-js) .sl-geschenk-wizard__nav,
html:not(.gottlebt-js) .sl-geschenk-wizard__progress {
  display: none !important;
}

.sl-geschenk-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 39, 68, 0.08);
}

.public-section--mission-trust {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px dashed rgba(19, 39, 68, 0.12);
}

/* Mission (Auftrag): zentrierte Spalte, luftig, ohne Kästen */
.page-mission .public-section--mission,
.page-mission .public-section.sl-faq-block,
.page-mission .public-section.sl-feedback-block,
.page-mission .public-section--mission-trust,
.page-mission .public-section--page-extra {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25rem;
  padding: 0 1.25rem;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.page-mission .public-section--mission h2,
.page-mission .sl-faq-block .sl-section-heading,
.page-mission .sl-feedback-block .sl-section-heading,
.page-mission .public-section--mission-trust h2,
.page-mission .public-section--page-extra .sl-section-heading {
  text-align: center;
}

.page-mission .mission-rich {
  gap: 2rem;
}

.page-mission .mission-rich__chunk {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-mission .sl-auftrag-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
  text-align: center;
}

.public-section__body--blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-text-block {
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 3px solid rgba(201, 168, 76, 0.55);
  background: rgba(250, 246, 238, 0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sl-geschenk-lead-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.sl-geschenk-lead {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.07);
}

.sl-geschenk-erwartet {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 39, 68, 0.04), transparent);
  border: 1px solid rgba(19, 39, 68, 0.08);
}

.sl-geschenk-form {
  margin-top: 1.5rem;
}

.sl-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .sl-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sl-tier-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.sl-tier-card {
  position: relative;
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--midnight), var(--deep-navy));
  border: 1px solid rgba(201, 168, 76, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sl-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.35);
  border-color: rgba(201, 168, 76, 0.5);
}

.sl-tier-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-soft);
}

.sl-tier-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  border-radius: 999px;
}

.sl-tier-card__amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.sl-tier-card__bib {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.65);
}

.sl-tier-card__desc {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.78);
}

/* -------------------------------------------------------------------------- */
/* 8. Flatrate-Pricing-Card                                                 */
/* -------------------------------------------------------------------------- */

.sl-flatrate-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.sl-flatrate-card {
  position: relative;
  width: 100%;
  max-width: 26rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--warm-white) 0%, var(--cream) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-soft), 0 0 60px rgba(201, 168, 76, 0.12);
  text-align: center;
}

.sl-flatrate-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  border-radius: 999px;
}

.sl-flatrate-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sl-flatrate-card__lead {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.sl-flatrate-card__price {
  margin-bottom: 1.75rem;
  line-height: 1;
}

.sl-flatrate-card__eur {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.sl-flatrate-card__currency {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  vertical-align: super;
  margin-left: 0.15rem;
}

.sl-flatrate-card__per {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.sl-flatrate-card__features {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.sl-flatrate-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

.sl-flatrate-card__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  color: var(--deep-navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.sl-flatrate-card__cta {
  width: 100%;
  justify-content: center;
}

.sl-spendenkonto-box {
  margin: 2rem 0 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.12);
  max-width: 36rem;
}

.sl-spendenkonto-box h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--deep-navy);
}

.sl-spendenkonto-box dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.sl-spendenkonto-box dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.sl-spendenkonto-box dd {
  margin: 0;
  font-size: 1rem;
  word-break: break-word;
}

.sl-spendenkonto-box .sl-spendenkonto-paypal {
  margin-top: 1.25rem;
}

.sl-trust-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(19, 39, 68, 0.04);
  border: 1px solid rgba(19, 39, 68, 0.08);
  font-size: 0.9rem;
  color: var(--text-body);
}

.sl-trust-badge__sep {
  opacity: 0.45;
  font-weight: 300;
}

.sl-geschenk-above-fold {
  margin-bottom: 2.5rem;
}

.sl-flatrate-alt {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 0.98rem;
  color: var(--text-body);
}

.sl-flatrate-alt a {
  font-weight: 700;
  color: var(--gold-dark);
}

/* -------------------------------------------------------------------------- */
/* 9. Impuls-Akkordeon                                                        */
/* -------------------------------------------------------------------------- */

.sl-impulse-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sl-impulse-acc {
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.1);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sl-impulse-acc:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.sl-impulse-acc[open] {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
}

.sl-impulse-acc__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-dark);
}

.sl-impulse-acc__summary::-webkit-details-marker {
  display: none;
}

.sl-impulse-acc__title {
  flex: 1 1 12rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.sl-impulse-acc__date {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.sl-impulse-acc__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
}

.sl-impulse-acc[open] .sl-impulse-acc__chevron {
  transform: rotate(-135deg);
}

.sl-impulse-acc__body {
  padding: 0 1.25rem 1.35rem;
  border-top: 1px solid rgba(19, 39, 68, 0.06);
}

.sl-impulse-acc__teaser {
  margin-top: 1rem;
  color: var(--text-body);
  font-style: italic;
}

.sl-impulse-acc__text {
  margin-top: 0.75rem;
  white-space: pre-wrap;
  color: var(--text-body);
  line-height: 1.65;
}

.sl-impulse-acc__link {
  display: inline-flex;
  margin-top: 1.25rem;
}

.sl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sl-impulse-latest {
  margin: 2rem 0 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--cream) 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-soft);
}

.sl-impulse-latest__section-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
}

.sl-impulse-latest__date {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 0.5rem;
}

.sl-impulse-latest__title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  color: var(--deep-navy);
}

.sl-impulse-latest__teaser {
  font-style: italic;
  color: var(--text-body);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.sl-impulse-latest__body {
  white-space: pre-wrap;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sl-impulse-archive__heading {
  margin-top: 2.5rem;
}

.sl-impulse-archive {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.sl-impulse-item {
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.1);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sl-impulse-item.is-expanded {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
}

.sl-impulse-item__header {
  padding: 1.15rem 1.25rem 0.75rem;
}

.sl-impulse-item__date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 0.35rem;
}

.sl-impulse-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.sl-impulse-item__teaser {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

.sl-impulse-item__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  margin-bottom: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.sl-impulse-item__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sl-impulse-item__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

.sl-impulse-item__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25rem;
  border-top: 1px solid rgba(19, 39, 68, 0.06);
}

.sl-impulse-item__body {
  padding: 1rem 0 0.25rem;
  white-space: pre-wrap;
  color: var(--text-body);
  line-height: 1.65;
}

.sl-impulse-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 0 1.25rem;
}

.sl-impulse-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sl-youtube-embed {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--midnight);
}

.sl-youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.impulse-detail-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.impulse-detail-image-wrap {
  margin-top: 1.5rem;
}

.impulse-detail-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.sl-gebet-form-section {
  margin-bottom: 2.5rem;
}

.sl-prayer-wall-public {
  margin-top: 1rem;
}

.sl-prayer-wall__list--public {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sl-prayer-wall__list--public {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sl-prayer-wall__list--public {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sl-buecher-intro {
  margin-bottom: 1rem;
}

.sl-buecher-disclaimer {
  font-size: 0.92rem;
  color: var(--text-body);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(19, 39, 68, 0.04);
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
  max-width: 42rem;
}

.sl-books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sl-books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .sl-books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sl-book-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sl-book-card__cover {
  aspect-ratio: 2 / 3;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sl-book-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a2744, var(--midnight));
  color: rgba(201, 168, 76, 0.85);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
}

.sl-book-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sl-book-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--deep-navy);
}

.sl-book-card__subtitle {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--soft-gray);
  margin: 0 0 0.75rem;
}

.sl-book-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 1.25rem;
  flex: 1;
}

.sl-book-card__cta {
  align-self: flex-start;
}

.sl-buecher-media,
.sl-buecher-youversion {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.sl-buecher-placeholder {
  font-size: 0.92rem;
  color: var(--soft-gray);
}

/* Legacy Impuls-Liste (falls noch verwendet) */
.impulse-list__item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(19, 39, 68, 0.1);
}

.impulse-list__item a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-decoration: none;
}

.impulse-list__item a:hover {
  color: var(--gold);
}

.impulse-list__date {
  display: block;
  font-size: 0.78rem;
  color: var(--soft-gray);
  margin-top: 0.25rem;
}

.impulse-list__teaser {
  margin-top: 0.5rem;
  color: var(--text-body);
}

/* -------------------------------------------------------------------------- */
/* 10. Mission & allgemeine Sektionen                                         */
/* -------------------------------------------------------------------------- */

.mission {
  display: grid;
  gap: 3rem;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 1024px) {
  .mission {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mission-image {
  width: min(100%, 22rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--deep-navy), var(--royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-soft);
}

.mission-cross {
  font-size: 4rem;
  color: var(--gold-light);
  opacity: 0.9;
}

.mission-badge {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--midnight);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
}

.mission-badge .number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
}

.mission-badge .label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-text .section-tag {
  margin-bottom: 0.75rem;
}

.mission-text h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.mission-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.mission-text p {
  margin-bottom: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 56ch;
}

.signature {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* -------------------------------------------------------------------------- */
/* 11. CTA-Karten (Offerings)                                                 */
/* -------------------------------------------------------------------------- */

.offerings {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.offerings-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.offerings-header h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-top: 0.7rem;
  letter-spacing: -0.015em;
}

.offerings-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.offerings-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offering-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--midnight) 0%, var(--deep-navy) 50%, #152a45 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.offering-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 24px 56px rgba(10, 22, 40, 0.35);
}

.offering-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  filter: grayscale(0.2);
}

.offering-card h3 {
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.78);
  margin-bottom: 1.25rem;
}

.offerings--cta-solid .offering-card p {
  color: rgba(250, 246, 238, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s, text-shadow 0.2s;
}

.offering-link:hover {
  color: var(--gold-glow);
  gap: 0.55rem;
  text-shadow: 0 0 16px rgba(201, 168, 76, 0.35);
}

/* -------------------------------------------------------------------------- */
/* 12. Buch-Karten                                                            */
/* -------------------------------------------------------------------------- */

.books {
  padding: 5rem 1.5rem;
  background: var(--warm-white);
}

.books-header {
  text-align: center;
  margin-bottom: 3rem;
}

.books-header h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-top: 0.75rem;
}

.books-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.books-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-card {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .book-card {
    grid-template-columns: 140px 1fr;
    align-items: start;
  }
}

.book-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--deep-navy), var(--royal-blue));
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.book-cover.has-image {
  padding: 0;
}

.book-cover.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(250, 246, 238, 0.25);
}

.book-cover.has-image .book-number {
  position: absolute;
  bottom: 0.5rem;
  right: 0.65rem;
  font-size: 1.25rem;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.book-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.book-sub {
  font-size: 0.95rem;
  color: var(--soft-gray);
  margin-bottom: 0.5rem;
}

.book-info p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.book-price {
  font-weight: 700;
  color: var(--gold);
}

.book-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--midnight);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.26);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.book-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.36);
}

.book-cta-muted {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--soft-gray);
}

.books-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-body);
  background: var(--cream);
  border-radius: var(--radius);
}

.text-center {
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* 13. Blog-Grid                                                              */
/* -------------------------------------------------------------------------- */

.blog-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.blog-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-header h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-top: 0.75rem;
}

.blog-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  padding: 1.75rem;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 39, 68, 0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-soft);
}

.blog-cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin: 0.65rem 0 0.5rem;
}

.blog-card h3 a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.2s;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-meta {
  font-size: 0.82rem;
  color: var(--soft-gray);
  margin-bottom: 0.65rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.blog-empty {
  text-align: center;
  padding: 2rem;
  color: var(--text-body);
}

/* -------------------------------------------------------------------------- */
/* 14. Podcast                                                                */
/* -------------------------------------------------------------------------- */

.podcast {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-navy) 55%, var(--royal-blue) 100%);
  color: rgba(250, 246, 238, 0.88);
}

/* Hermine: Podcast-Block weniger massiv (helles Editorial statt tiefblau) */
body.page-hermine .podcast {
  background:
    radial-gradient(60rem 40rem at 10% 15%, rgba(201, 168, 76, 0.14), transparent 60%),
    radial-gradient(50rem 35rem at 90% 70%, rgba(30, 58, 95, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  color: var(--text-body);
  border-top: 1px solid rgba(19, 39, 68, 0.06);
  border-bottom: 1px solid rgba(19, 39, 68, 0.06);
}

body.page-hermine .podcast-text h2 {
  color: var(--text-dark);
}

body.page-hermine .podcast-text h2 em {
  color: var(--gold);
}

body.page-hermine .podcast-text > p {
  color: var(--text-body);
}

body.page-hermine .podcast-play {
  background: rgba(19, 39, 68, 0.03);
  border-color: rgba(201, 168, 76, 0.55);
}

body.page-hermine .podcast-episodes a {
  color: var(--deep-navy);
}

body.page-hermine .podcast-episodes a:hover {
  color: var(--gold);
}

.podcast-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .podcast-inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.podcast-visual {
  display: flex;
  justify-content: center;
}

.podcast-visual--embed {
  width: 100%;
  justify-content: stretch;
}

.podcast-embed-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: rgba(6, 16, 30, 0.5);
}

.podcast-embed-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-all-link-wrap {
  margin: 0.5rem 0 0;
}

.podcast-play {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.08);
  border: 2px solid rgba(201, 168, 76, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

a.podcast-play:hover {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 6px;
}

.podcast-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--cream);
  margin: 0.75rem 0 1rem;
}

.podcast-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.podcast-text > p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.podcast-latest-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.podcast-latest-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.podcast-features {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.podcast-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
}

.podcast-feature .check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.podcast-episodes {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.podcast-episodes li {
  margin-bottom: 0.6rem;
}

.podcast-episodes a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.podcast-episodes a:hover {
  color: var(--gold-glow);
  text-decoration: underline;
}

.podcast-ep-meta {
  font-size: 0.8rem;
  color: rgba(250, 246, 238, 0.45);
  margin-left: 0.35rem;
}

/* -------------------------------------------------------------------------- */
/* 15. Gebetswand                                                             */
/* -------------------------------------------------------------------------- */

.sl-prayer-wall {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 39, 68, 0.1);
}

.sl-prayer-wall__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .sl-prayer-wall__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.sl-prayer-wall__form-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.sl-prayer-wall__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.sl-prayer-wall__hint {
  font-size: 0.92rem;
  color: var(--soft-gray);
  margin-bottom: 1.25rem;
}

.sl-prayer-wall__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sl-prayer-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-left: 4px solid var(--gold);
}

.sl-prayer-wall__list--public .sl-prayer-card {
  border-left: none;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(19, 39, 68, 0.08);
  box-shadow: var(--shadow-soft);
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sl-prayer-wall__list--public .sl-prayer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.35);
}

.sl-prayer-card--sample {
  opacity: 0.92;
  border-style: dashed;
}

.sl-prayer-card__text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-dark);
}

.sl-prayer-card__meta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.sl-prayer-wall__list--public .sl-prayer-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 0.85rem;
}

.sl-prayer-wall__list--public .sl-prayer-card__author {
  font-weight: 700;
  color: var(--deep-navy);
}

.sl-prayer-wall__list--public .sl-prayer-card__date {
  color: var(--soft-gray);
}

/* -------------------------------------------------------------------------- */
/* 16. Newsletter                                                             */
/* -------------------------------------------------------------------------- */

.newsletter {
  padding: 5rem 1.5rem;
  background: linear-gradient(165deg, var(--midnight) 0%, var(--deep-navy) 100%);
  text-align: center;
}

.newsletter-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.newsletter .section-tag {
  color: var(--gold-light);
}

.newsletter h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--cream);
  margin: 0.75rem 0 1rem;
}

.newsletter h2 em {
  font-style: italic;
  color: var(--gold);
}

.newsletter p {
  color: rgba(250, 246, 238, 0.78);
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(250, 246, 238, 0.2);
  border-radius: 999px;
  background: rgba(250, 246, 238, 0.06);
  color: var(--cream);
}

.newsletter-form input::placeholder {
  color: rgba(250, 246, 238, 0.35);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.newsletter-form button {
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
  cursor: pointer;
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.24);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.34);
}

.newsletter-msg {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.7);
  min-height: 1.5em;
}

.newsletter-banner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  border-radius: var(--radius);
}

.newsletter-banner--ok {
  color: rgba(250, 246, 238, 0.95);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.newsletter-banner--err {
  color: rgba(255, 220, 220, 0.95);
  background: rgba(160, 50, 50, 0.2);
  border: 1px solid rgba(255, 120, 120, 0.35);
}

.muted {
  opacity: 0.75;
}

/* -------------------------------------------------------------------------- */
/* 17. Footer (4 Spalten)                                                     */
/* -------------------------------------------------------------------------- */

footer {
  background: var(--cream);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  overflow: visible;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
  }
}

.footer-brand {
  overflow: visible;
  min-width: 0;
}

.footer-brand .nav-logo {
  color: var(--deep-navy);
  margin-bottom: 1rem;
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  max-width: none;
}

.footer-brand .nav-logo span {
  color: var(--gold);
}

.footer-site-url {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-site-url a {
  color: var(--deep-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
  transition: color 0.2s, border-color 0.2s;
}

.footer-site-url a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-body);
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 39, 68, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--soft-gray);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--deep-navy);
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: var(--warm-white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* -------------------------------------------------------------------------- */
/* 18. Buttons                                                                */
/* -------------------------------------------------------------------------- */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.22);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.4);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--deep-navy);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.45);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 10px 24px rgba(6, 16, 30, 0.22);
}

body.is-inner .btn-secondary {
  color: var(--deep-navy);
  border-color: rgba(19, 39, 68, 0.25);
}

body.is-inner .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -------------------------------------------------------------------------- */
/* 19. Reveal (Scroll)                                                        */
/* -------------------------------------------------------------------------- */

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

html.gottlebt-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.gottlebt-js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  html.gottlebt-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Impulse-Karten-Akkordeon (optional, Klasse .impulse-card) */
.impulse-card {
  border-radius: var(--radius, 10px);
  overflow: hidden;
  border: 1px solid rgba(19, 39, 68, 0.1);
  background: var(--cream);
}

.impulse-card-header {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.25s ease;
}

.impulse-card-header:hover {
  background: rgba(201, 168, 76, 0.08);
}

.impulse-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.impulse-card.open .impulse-card-body {
  max-height: 2000px;
}

.impulse-card-body-inner {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid rgba(19, 39, 68, 0.06);
}

/* URL-/Formular-Toasts (main.js) */
.js-url-flash-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  max-width: min(36rem, 92vw);
  margin: 0;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.2);
  transition: opacity 0.35s ease;
}

.js-flash-hiding {
  opacity: 0 !important;
}

/* -------------------------------------------------------------------------- */
/* 20. Innenseiten & Artikel                                                  */
/* -------------------------------------------------------------------------- */

.page-main {
  padding-top: calc(var(--nav-h) + 2.25rem);
  padding-bottom: 4.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.article-page .article-shell,
.content-wrapper {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.article-page .article-shell.prose.article-prose,
.page-main .content-wrapper.prose.article-prose {
  text-align: left;
}

.page-main .content-wrapper.sl-podcast-page {
  max-width: 52rem;
}

.sl-podcast-page__header {
  text-align: center;
  margin-bottom: 2rem;
}

.sl-podcast-page__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin: 0.5rem 0 0;
}

.sl-podcast-page__title em {
  font-style: italic;
  color: var(--gold);
}

.sl-podcast-page__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0.75rem auto 0;
}

.sl-podcast-page__intro {
  margin-top: 1rem;
  text-align: left;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.sl-podcast-page__player-wrap {
  margin-bottom: 2.5rem;
}

.sl-podcast-page__player-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(19, 39, 68, 0.12);
  box-shadow: 0 18px 44px rgba(19, 39, 68, 0.12);
  background: var(--midnight);
}

.sl-podcast-page__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sl-podcast-page__empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-body);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.sl-podcast-series {
  border: 1px solid rgba(19, 39, 68, 0.1);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--warm-white);
  overflow: hidden;
}

.sl-podcast-series__summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--deep-navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sl-podcast-series__summary::-webkit-details-marker {
  display: none;
}

.sl-podcast-series__count {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.sl-podcast-series__list {
  margin: 0;
  padding: 0 0.75rem 0.75rem;
  list-style: none;
}

.sl-podcast-video-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(19, 39, 68, 0.08);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sl-podcast-video-btn--with-thumb {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.sl-podcast-video-btn__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 0.85);
  background: rgba(19, 39, 68, 0.06);
}

.sl-podcast-video-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.sl-podcast-video-btn:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 8px 22px rgba(19, 39, 68, 0.08);
  transform: translateY(-2px);
}

.sl-podcast-video-btn__title {
  font-weight: 700;
}

.sl-podcast-video-btn__desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.45;
}

.public-section + .public-section {
  margin-top: 0.35rem;
}

.sl-spenden-rich__block,
.sl-flatrate-rich__block,
.sl-geschenk-rich__block,
.mission-rich__chunk {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sl-spenden-rich__block:hover,
.sl-flatrate-rich__block:hover,
.sl-geschenk-rich__block:hover,
.mission-rich__chunk:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 39, 68, 0.08);
}

.blog-inner.content-wrapper {
  max-width: 48rem;
}

.article-shell--detail {
  max-width: 46rem;
}

.article-header-block {
  margin-bottom: 1.5rem;
}

.article-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-bottom: 0.75rem;
}

.sl-page-intro__subtitle {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.public-section__body {
  white-space: pre-wrap;
}

.article-meta,
.article-meta-bar {
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.article-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.article-body.prose,
.article-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

.article-prose h2 {
  font-size: 1.55rem;
  margin: 2rem 0 0.75rem;
}

.article-prose h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.article-prose p {
  margin-bottom: 1rem;
}

.article-prose a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-prose a:hover {
  color: var(--gold);
}

.article-prose ol {
  margin: 1rem 0 1rem 1.25rem;
  padding-left: 1rem;
  list-style: decimal;
}

.article-prose ul:not(.podcast-episodes):not(.rich-text-blocks__list) {
  margin: 1rem 0 1rem 0;
  padding-left: 0;
  list-style: none;
}

.article-prose ul:not(.podcast-episodes):not(.rich-text-blocks__list) li {
  position: relative;
  margin: 0.45rem 0;
  padding-left: 1.65rem;
}

.article-prose ul:not(.podcast-episodes):not(.rich-text-blocks__list) li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(var(--gold), var(--gold)) center/100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 100% no-repeat;
  opacity: 0.88;
}

.article-prose ul:not(.podcast-episodes):not(.rich-text-blocks__list) ul li::before {
  width: 0.38rem;
  height: 0.38rem;
  left: 0.35rem;
  opacity: 0.65;
}

.article-prose code {
  font-size: 0.88em;
  padding: 0.15rem 0.4rem;
  background: var(--cream);
  border-radius: 4px;
}

.article-prose pre {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: var(--midnight);
  color: var(--cream);
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.88rem;
}

.article-prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--text-dark);
}

.article-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(19, 39, 68, 0.1);
}

.article-back a {
  font-weight: 700;
  color: var(--deep-navy);
  text-decoration: none;
}

.article-back a:hover {
  color: var(--gold);
}

.public-section {
  margin-bottom: 2.75rem;
}

.public-section h2 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.form-flash {
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: opacity 0.35s ease;
}

.form-flash--ok {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-flash--err {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.public-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin-top: 1.5rem;
}

.public-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.public-form input,
.public-form textarea,
.public-form select {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(19, 39, 68, 0.15);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark);
}

/* Stage-a: lesbare Formularfelder */
.public-form input::placeholder,
.public-form textarea::placeholder {
  color: rgba(19, 39, 68, 0.5);
}

.public-form select,
.public-form option {
  color: var(--text-dark);
  background: #fff;
}

/* Browser-Autofill (Chrome/Safari) kann Inputs blau/gelb einfärben → neutralisieren */
.public-form input:-webkit-autofill,
.public-form textarea:-webkit-autofill,
.public-form select:-webkit-autofill,
.newsletter-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--text-dark) !important;
  caret-color: var(--text-dark) !important;
  transition: background-color 9999s ease-in-out 0s;
}

.public-form input:autofill,
.public-form textarea:autofill,
.public-form select:autofill,
.newsletter-form input:autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
}

.public-form__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 36rem;
}

.public-form__check input {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.public-form__check-text {
  flex: 1;
  min-width: 0;
}

.public-form__privacy-link {
  color: var(--navy, #132744);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.55);
  text-underline-offset: 0.15em;
}

.public-form__privacy-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.public-form__required {
  color: rgba(19, 39, 68, 0.45);
  font-weight: 400;
  margin-left: 0.15em;
  white-space: nowrap;
}

.public-form__radio {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 600;
  line-height: 1.45;
}

.public-form__radio input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.sl-flatrate-longform {
  max-width: 44rem;
}

.sl-flatrate-fieldset {
  border: 1px solid rgba(19, 39, 68, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  margin: 0 0 1.25rem;
}

.sl-flatrate-legend {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0 0.35rem;
  color: var(--text-dark);
}

.sl-flatrate-question {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 1rem;
  font-weight: 500;
}

.sl-flatrate-question--dense {
  font-size: 0.92rem;
}

.sl-flatrate-form-title {
  margin-top: 2.5rem;
}

.sl-flatrate-form-desc {
  margin-top: 0.35rem;
}

/* Fehlerseiten */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.25);
  max-width: 28rem;
}

.error-card h1 {
  font-size: 4rem;
  color: var(--deep-navy);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.error-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.error-page-inner {
  text-align: center;
  padding: 2rem 0 3rem;
  max-width: 32rem;
  margin: 0 auto;
}

.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  margin: 0 0 0.5rem;
}

.page-error--500 .article-title {
  margin-top: 0;
}

/* Admin-Body: neutrale Basis */
body.admin-body {
  background: var(--warm-white);
}

/* -------------------------------------------------------------------------- */
/* 21. Startseite (page-home)                                                 */
/* -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-wide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.home-counter-wrap {
  padding: 2.5rem 0 1rem;
  background: var(--warm-white);
}

.home-counter-wrap .sl-counter-widget {
  margin-left: auto;
  margin-right: auto;
}

.home-counter__cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.home-prose-block {
  padding: 3.5rem 0;
  background: var(--warm-white);
}

.home-prose-block--alt {
  background: var(--cream);
}

.home-prose-block--accent {
  background: linear-gradient(180deg, rgba(19, 39, 68, 0.04) 0%, var(--warm-white) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(19, 39, 68, 0.06);
}

.home-prose-block--bridge {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  border-top: 1px solid rgba(19, 39, 68, 0.06);
}

.home-prose-block--bridge .home-prose-block__title {
  text-align: center;
}

.home-prose-block--bridge .home-prose-block__body {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.home-prose-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.home-prose-block__title--gold {
  color: var(--gold, #c9a84c);
}

.home-prose-block__title--quiet {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  letter-spacing: 0.02em;
}

.home-prose-block__body.lead,
.home-prose-block--bridge .home-prose-block__body.lead {
  font-size: 1.08rem;
}

.home-callout-banner__title--gold {
  color: var(--gold, #e8d5a3);
}

.rich-text-blocks--fancy .rich-text-blocks__chunk {
  border-left: 3px solid rgba(201, 168, 76, 0.65);
  padding-left: 1rem;
  margin-bottom: 0.65rem;
}

.rich-text-blocks--fancy .rich-text-blocks__list li {
  margin-bottom: 0.35rem;
}

.home-prose-block__body.text-muted-home,
.home-hoffnung__body.text-muted-home {
  opacity: 0.88;
  color: var(--text-muted, #5c5c6e);
}

.home-prose-block__body.lead,
.home-hoffnung__body.lead {
  font-size: 1.07rem;
  line-height: 1.78;
}

.home-prose-block__body p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.75;
}

.home-callout-banner {
  padding: 3.25rem 0;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 55%, var(--midnight) 100%);
  color: var(--cream);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.home-callout-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.8vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 1rem;
}

.home-callout-banner__text {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(250, 246, 238, 0.92);
}

.home-hoffnung {
  padding: 3.5rem 0;
  background: var(--warm-white);
}

.home-hoffnung__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.home-hoffnung__body {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.home-hermine__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.home-hermine-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .home-hermine-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-hermine-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.85rem 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: linear-gradient(165deg, var(--midnight) 0%, var(--deep-navy) 50%, #152a45 100%);
  box-shadow: 0 14px 40px rgba(10, 22, 40, 0.28);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--cream);
  text-decoration: none;
}

.home-hermine-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.home-hermine-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 22px 52px rgba(10, 22, 40, 0.38);
}

.home-hermine-tile:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.home-hermine-tile__icon {
  font-size: 2.1rem;
  margin-bottom: 0.55rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.home-hermine-tile__label {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}

.home-hermine-tile__label--cta {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.home-hermine-tile__hint {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(197, 218, 245, 0.92);
  margin-top: 0.4rem;
}

.home-gebet-teaser {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-navy) 48%, #152a45 100%);
  color: var(--cream);
}

/* Home: Gebetsblock nicht blau (v3 → helles Karten-Layout) */
.home-gebet-teaser--v3 {
  background: var(--warm-white);
  color: var(--text-body);
  border-top: 1px solid rgba(19, 39, 68, 0.06);
}

.home-gebet-teaser--v3 .home-gebet-teaser__intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.home-gebet-teaser--v3 .section-tag {
  color: var(--gold);
}

.home-gebet-teaser--v3 .home-gebet-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  color: var(--text-dark);
  margin: 0.5rem 0 0;
  letter-spacing: 0.02em;
}

.home-gebet-teaser--v2 .content-wide {
  text-align: left;
}

.home-gebet-teaser__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.home-gebet-teaser--v2 .section-tag {
  color: var(--gold-light);
}

.home-gebet-teaser--v2 .home-gebet-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  color: var(--cream);
  margin: 0.5rem 0 0;
}

.home-gebet-teaser__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .home-gebet-teaser__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.home-gebet-teaser__panel {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}

.home-gebet-teaser__panel--verse {
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.home-gebet-teaser__panel--copy {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-gebet-teaser__verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.95);
  margin: 0;
  border: none;
  padding: 0;
}

.home-gebet-teaser__verse cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.home-gebet-teaser--v2 .home-gebet-teaser__text {
  max-width: none;
  margin: 0 0 1.25rem;
  color: rgba(250, 246, 238, 0.88);
  line-height: 1.7;
}

.home-gebet-teaser__cta {
  margin: 0;
}

.home-gebet-teaser__strip {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.25rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .home-gebet-teaser__strip {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.home-gebet-teaser__pill {
  flex: 1 1 200px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.1rem;
  min-height: 5.5rem;
}

.home-gebet-teaser__pill-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 246, 238, 0.9);
  margin: 0 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-gebet-teaser__pill-meta {
  font-size: 0.72rem;
  color: rgba(250, 246, 238, 0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Gebets-Teaser Layout v3 (Band + Karte + Liste) */
.home-gebet-teaser--v3 .content-wide {
  text-align: left;
  max-width: 720px;
}

.home-gebet-teaser__verse-band {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.25rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  background: var(--cream);
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.12);
  position: relative;
}

.home-gebet-teaser__verse-mark {
  position: absolute;
  top: 0.35rem;
  left: 0.65rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(232, 213, 160, 0.35);
  pointer-events: none;
}

.home-gebet-teaser__verse-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.08rem, 2.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--text-dark);
  margin: 0 0 0.75rem;
  padding-left: 0.5rem;
}

.home-gebet-teaser__verse-cite {
  display: block;
  margin: 0;
  padding-left: 0.5rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-gebet-teaser__action-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(19, 39, 68, 0.1);
  margin-bottom: 2rem;
}

.home-gebet-teaser--v3 .home-gebet-teaser__text {
  margin: 0 0 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
}

.home-gebet-teaser__prayer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-gebet-teaser__prayer-card {
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(19, 39, 68, 0.1);
}

.home-gebet-teaser__prayer-card__accent {
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  opacity: 0.85;
}

.home-gebet-teaser__prayer-card__text {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
}

.home-gebet-teaser__prayer-card__meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--soft-gray);
  letter-spacing: 0.03em;
}

/* Mehrspaltige Textblöcke + Aufzählungen (Spenden, Mission, …) */
.rich-text-blocks__list {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-body);
  line-height: 1.65;
}

.rich-text-blocks__list li {
  position: relative;
  margin: 0.45rem 0;
  padding-left: 1.65rem;
}

.rich-text-blocks__list li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(var(--gold), var(--gold)) center/100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 100% no-repeat;
  opacity: 0.88;
}

.rich-text-blocks__list ul {
  margin-top: 0.35rem;
}

.rich-text-blocks__list ul li::before {
  width: 0.38rem;
  height: 0.38rem;
  opacity: 0.65;
}

.sl-spenden-rich,
.sl-flatrate-rich,
.sl-geschenk-rich,
.mission-rich {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.sl-spenden-rich__block,
.sl-flatrate-rich__block,
.sl-geschenk-rich__block,
.mission-rich__chunk {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(19, 39, 68, 0.03);
  border: 1px solid rgba(19, 39, 68, 0.07);
}

.sl-spenden-trust--after-form {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 39, 68, 0.1);
}

.sl-geschenk-erwartet--prominent {
  margin: 1.75rem 0 1.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cream) 0%, rgba(250, 246, 238, 0.65) 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
}

.sl-geschenk-erwartet__h {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--text-dark);
  margin: 0 0 0.75rem;
}

.sl-geschenk-form {
  margin-top: 0.5rem;
}

.home-kurztext {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

/* .content-wide umschließt die Innenspalte — Sektion bleibt volle Breite (Gradient) */
.home-kurztext .content-wide .home-kurztext__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.home-kurztext__h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  margin: 1.75rem 0 1rem;
  color: var(--text-dark);
}

.home-kurztext__call {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* Startseite: zusätzliche Inhalte (Säulen, Ablauf, Zitat) */
.home-pillars {
  padding: 3.5rem 0 2rem;
  background: var(--cream);
}

.home-pillars__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.home-pillars__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.75rem 0 0;
  line-height: 1.2;
}

.home-pillars__grid {
  display: grid;
  gap: 1.35rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .home-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.home-pillar-card {
  background: var(--warm-white);
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.06);
}

.home-pillar-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.home-pillar-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

.home-steps {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 45%, var(--warm-white) 100%);
}

.home-steps__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.home-steps__inner > .section-tag {
  display: block;
  text-align: center;
}

.home-steps__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.6vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  margin: 0.75rem 0 1rem;
  line-height: 1.22;
}

.home-steps__intro {
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 auto 2.25rem;
  max-width: 38rem;
}

.home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}

.home-step__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cream);
  background: linear-gradient(145deg, #1e3a5f 0%, #132744 100%);
  box-shadow: 0 4px 14px rgba(19, 39, 68, 0.25);
}

.home-step__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin: 0 0 0.35rem;
}

.home-step__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-body);
}

.home-quote-band {
  padding: 3rem 0 3.5rem;
  background: var(--midnight);
  color: var(--cream);
}

.home-quote-band__inner {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.home-quote-band__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.95);
}

.home-quote-band__quote p {
  margin: 0 0 1rem;
}

.home-quote-band__quote cite {
  display: block;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.88);
}

.home-quote-band__cta {
  margin: 1.75rem 0 0;
}

.home-quote-band__cta .btn-secondary {
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--cream);
}

.home-quote-band__cta .btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.home-hermine__intro {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.home-hermine__grid {
  margin-top: 0.5rem;
}

.home-hermine__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.home-impulses__cta {
  text-align: center;
  margin-top: 2rem;
}

.home-impulses__cta .btn-primary {
  display: inline-flex;
}

.home-impulse-card__date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-top: 0.65rem;
}

.blog-inner.content-wide {
  max-width: 1100px;
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 21b. Kampagne „Ohne Gott geht das nicht“ (Schriftbild im Legacy-Hero)      */
/* -------------------------------------------------------------------------- */

.modo-ohne-gott .hero-content .oggn-schriftbild {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.modo-ohne-gott .oggn-schriftbild__kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.9);
  font-family: 'Nunito Sans', system-ui, sans-serif;
}

.modo-ohne-gott .oggn-schriftbild__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 7.5vw, 3.65rem);
  line-height: 1.12;
  color: var(--cream, #faf6ee);
}

.modo-ohne-gott .hero-content h1.oggn-schriftbild__title {
  margin-bottom: 0;
}

.modo-ohne-gott .oggn-schriftbild__line1 {
  display: block;
  background: linear-gradient(135deg, #faf6ee 0%, #e8d5a0 42%, #c9a84c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modo-ohne-gott .oggn-schriftbild__line2 {
  display: block;
  margin-top: 0.18em;
  color: var(--cream, #faf6ee);
}

.modo-ohne-gott .oggn-schriftbild__line2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold, #c9a84c);
}

.modo-ohne-gott .oggn-schriftbild__lead {
  margin: 1.5rem auto 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.85);
  font-family: 'Nunito Sans', system-ui, sans-serif;
}

.modo-ohne-gott .oggn-schriftbild .hero-buttons {
  margin-top: 1.75rem;
}

.modo-ohne-gott .hero-buttons--oggn {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
}

.modo-ohne-gott .oggn-schriftbild__line2--article {
  color: rgba(250, 246, 238, 0.92);
  font-weight: 500;
}

.modo-ohne-gott .oggn-schriftbild__line2--article em {
  font-style: italic;
  color: var(--gold, #c9a84c);
}

/* -------------------------------------------------------------------------- */
/* 22. Responsive Feinjustierung                                              */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  #navbar {
    padding: 0 2.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* 23. Gateway / Baustellenseite                                              */
/* -------------------------------------------------------------------------- */

body.page-gateway {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(65rem 65rem at 78% 50%, rgba(201, 168, 76, 0.14), transparent 62%),
    linear-gradient(150deg, #060d18 0%, #0a1628 45%, #101f36 100%);
  color: var(--cream);
  overflow: hidden;
}

/* rechter Gold-Glow mit sanfter Atem-Animation */
.page-gateway .glow-sphere {
  position: fixed;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: breathe 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.page-gateway .gateway-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 36vw);
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-gateway .gateway-brand-wrap {
  display: flex;
  justify-content: center;
}

.page-gateway .gateway-brand {
  appearance: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(250, 246, 238, 0.04);
  color: var(--cream);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-gateway .gateway-brand:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-gateway .gateway-brand__kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.92);
  margin-bottom: 0.6rem;
}

.page-gateway .gateway-brand__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.2vw, 3rem);
  line-height: 1.05;
}

.page-gateway .gateway-brand__hint {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: rgba(250, 246, 238, 0.7);
}

.page-gateway .gateway-visual {
  position: relative;
  width: min(34vw, 22rem);
  aspect-ratio: 1;
  justify-self: center;
}

.page-gateway .gateway-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 0 38px rgba(201, 168, 76, 0.08);
  animation: gatewayPulse 7.2s ease-in-out infinite;
}

.page-gateway .gateway-ring--b {
  inset: 12%;
  animation-delay: 1.2s;
}

.page-gateway .gateway-ring--c {
  inset: 24%;
  animation-delay: 2.4s;
}

@keyframes gatewayPulse {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.6;
  }
}

.page-gateway .gateway-modal {
  position: relative;
  inset: auto;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transition: none;
  width: 100%;
  max-width: 460px;
}

.page-gateway .gateway-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.page-gateway .gateway-modal__backdrop {
  display: none;
}

.page-gateway .gateway-modal__card {
  position: relative;
  width: 100%;
  margin: 0;
  background: linear-gradient(145deg, #0d1728 0%, #121f36 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.page-gateway .gateway-modal__close {
  display: none;
}

.page-gateway .gateway-modal__card h1 {
  color: var(--cream);
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
}

.page-gateway .gateway-modal__card p {
  margin: 0 0 1rem;
  color: rgba(250, 246, 238, 0.74);
}

.page-gateway .gateway-form label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.page-gateway .gateway-form input {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(6, 13, 24, 0.7);
  color: var(--cream);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}

.page-gateway .gateway-form button {
  width: 100%;
  margin-top: 0.8rem;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--midnight);
  cursor: pointer;
}

.page-gateway .gateway-form__error {
  color: #ffb4b4 !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .page-gateway .gateway-shell {
    grid-template-columns: 1fr;
    gap: 1.65rem;
    text-align: center;
  }

  .page-gateway .gateway-visual {
    width: min(62vw, 16rem);
  }
}

/* -------------------------------------------------------------------------- */
/* Golden breath — gradient text + slow metallic sweep (utility class) */
/* -------------------------------------------------------------------------- */
.gold-breath-text {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
    90deg,
    #c9a84c 0%,
    #f5ebd3 30%,
    #fefcf7 50%,
    #f5ebd3 70%,
    #c9a84c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: goldSweep 15s linear infinite;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
  font-weight: 600;
  font-size: 3rem;
}

@keyframes goldSweep {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gold-breath-text {
    animation: none;
    background-position: 50% center;
  }
}

/* -------------------------------------------------------------------------- */
/* Seitenüberschriften zweizeilig (öffentliche Seiten)                         */
/* -------------------------------------------------------------------------- */

.page-title-dual {
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.18;
}

.page-title-dual__line1 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--text-dark);
}

.page-title-dual__line2 {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
  color: var(--soft-gray);
  letter-spacing: 0.02em;
}

.page-title-dual--hero .page-title-dual__line1,
.page-title-dual--hero .page-title-dual__line2 {
  color: inherit;
}

.hero-content--centered {
  text-align: center;
  align-items: center;
}

.hero-content--centered .hero-subtitle,
.hero-content--centered .hero-buttons {
  margin-left: auto;
  margin-right: auto;
}

.page-hermine .hero-content--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Startseite: weniger Leerraum vor „Nahrung für Herz & Seele“ */
.page-home #hermine.offerings {
  padding-top: 2.75rem;
}

.nav-cta--ghost {
  background: transparent !important;
  color: var(--gold-light) !important;
  border: 2px solid rgba(201, 168, 76, 0.65) !important;
  box-shadow: none !important;
}

.nav-cta--ghost:hover {
  background: rgba(201, 168, 76, 0.18) !important;
  color: var(--cream) !important;
}

body.is-inner .nav-cta--ghost {
  color: var(--gold-light) !important;
}

/* Impuls-Archiv: zuverlässiges Aufklappen (Fallback neben CSS-Grid 0fr/1fr) */
.sl-impulse-item__panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

.sl-impulse-item__panel.is-open {
  max-height: min(240vh, 8000px);
}

.sl-impulse-item.is-expanded .sl-impulse-item__chevron {
  transform: rotate(-135deg);
}

/* Archiv mit <details>: Browser steuert Sichtbarkeit — kein max-height */
.sl-impulse-item--details > .sl-impulse-item__panel {
  max-height: none !important;
  overflow: visible;
  transition: none;
}

.sl-impulse-item__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem 1rem;
  cursor: pointer;
  list-style: none;
}

.sl-impulse-item__summary::-webkit-details-marker {
  display: none;
}

.sl-impulse-item__summary-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.sl-impulse-item--details .sl-impulse-item__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.sl-impulse-item--details .sl-impulse-item__teaser {
  display: block;
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

.sl-impulse-item__summary-hint {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: center;
}

.sl-impulse-item--details .sl-impulse-item__chevron {
  flex-shrink: 0;
  align-self: center;
}

.sl-impulse-item--details[open] .sl-impulse-item__chevron {
  transform: rotate(-135deg);
}

/* Hermine /start: Foto im Kreis + Kreuz */
.mission-image--photo {
  position: relative;
  background: radial-gradient(circle at 50% 45%, rgba(201, 168, 76, 0.2), transparent 55%);
}

.mission-image--photo .mission-image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mission-image--photo .mission-cross {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: rgba(201, 168, 76, 0.92);
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.book-info .book-sub {
  font-size: 0.92rem;
  color: var(--soft-gray);
  margin: 0 0 0.5rem;
}

.blog-more {
  text-align: center;
  margin-top: 1.5rem;
}

/* Gebetsseite: Einleitung ohne Rahmen, mittig & luftig */
.gebet-intro {
  max-width: 40rem;
  margin: 0 auto 3.25rem;
  padding: 0 1.25rem 1rem;
  text-align: center;
}

.gebet-intro__inner {
  margin: 0 0 1.75rem;
  line-height: 1.85;
  color: var(--text-body);
  font-size: 1.05rem;
}

.gebet-intro__cta {
  margin: 0;
}

.gebet-intro__cta .btn-primary {
  display: inline-flex;
}

.sl-inspiring-prayers__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .sl-inspiring-prayers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sl-inspiring-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(19, 39, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.sl-inspiring-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.sl-inspiring-card__body {
  white-space: pre-wrap;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.sl-inspiring-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: #000;
}

.sl-inspiring-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sl-inspiring-card__audio {
  margin-bottom: 1rem;
}

.sl-inspiring-card .sl-prayer-share {
  margin-top: 0.5rem;
}

.sl-prayer-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.sl-prayer-share--sm {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
}

/* Gebet-Daumen: globaler Zähler + 👍-Button + Herz-Animation */
.sl-gebet-daumen-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(19, 39, 68, 0.06) 0%, rgba(201, 168, 76, 0.12) 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  text-align: center;
}

.sl-gebet-daumen-stat__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.sl-gebet-daumen-stat__count {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--midnight, #132744);
  letter-spacing: 0.02em;
}

.sl-gebet-daumen-stat__label {
  width: 100%;
  font-size: 0.88rem;
  color: var(--text-body);
}

.sl-gebet-daumen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--midnight, #132744), var(--deep-navy, #0a1628));
  color: var(--gold-light, #e8d5a3);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  margin-top: 0.35rem;
}

.sl-gebet-daumen-btn:hover:not(:disabled):not(.is-busy) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 22, 40, 0.2);
}

.sl-gebet-daumen-btn.is-busy {
  opacity: 0.75;
  cursor: wait;
}

.sl-gebet-daumen-btn.is-done {
  border-color: rgba(201, 168, 76, 0.85);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.25);
}

.sl-gebet-daumen-btn--standalone {
  margin: 1rem auto 0;
  display: flex;
}

.sl-prayer-wall__list--public .sl-prayer-card__meta .sl-gebet-daumen-btn {
  width: 100%;
  justify-content: center;
}

.sl-impulse-card__actions .sl-gebet-daumen-btn {
  flex: 1 1 auto;
  justify-content: center;
}

.sl-gebet-heart-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
  overflow: hidden;
}

.sl-gebet-heart {
  position: fixed;
  font-size: calc(1.35rem * var(--heart-scale, 1));
  pointer-events: none;
  animation: slGebetHeartFloat var(--heart-duration, 2.8s) ease-out forwards;
  will-change: transform, opacity;
  filter: drop-shadow(0 2px 6px rgba(201, 168, 76, 0.35));
}

@keyframes slGebetHeartFloat {
  0% {
    transform: translate(0, 0) scale(0.35);
    opacity: 1;
  }
  12% {
    transform: translate(calc(var(--heart-drift, 0px) * 0.15), -8vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--heart-drift, 0px), -125vh) scale(1.15);
    opacity: 0;
  }
}

.verse-banner--page-end {
  margin-top: 2.5rem;
}

/* Bücher: liebevolle Medien-Blöcke */
.sl-buecher-media--warm,
.sl-buecher-youversion--warm {
  margin-top: 2.75rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(19, 39, 68, 0.06) 0%, rgba(201, 168, 76, 0.1) 100%);
  border: 1px solid rgba(19, 39, 68, 0.08);
}

.sl-buecher-media__inner,
.sl-buecher-youversion__inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 42rem;
}

.sl-buecher-media__icon,
.sl-buecher-youversion__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--midnight), var(--deep-navy));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
}

.sl-buecher-media__lead {
  margin: 0.5rem 0 1rem;
  line-height: 1.7;
  color: var(--text-body);
  font-size: 1.02rem;
}

.sl-faq-block,
.sl-feedback-block {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  border: 1px solid rgba(19, 39, 68, 0.08);
}

/* Innenseiten: zweizeilige Hauptüberschrift (Kicker + Titel) */
.page-title-dual--inner .page-title-dual__line1 {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.65vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.page-title-dual--inner .page-title-dual__line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* Vers-Streifen unten (Petrol / Navy wie Startseiten-Bereich) */
.verse-banner--stripe-navy {
  margin-top: 0;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-navy) 48%, #152a45 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.28);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 3.5rem 1.5rem;
}

.verse-banner--stripe-navy blockquote {
  color: rgba(250, 246, 238, 0.95);
  font-style: italic;
}

.verse-banner--stripe-navy cite {
  color: var(--gold-light);
}

/* Bücher-Seite: liebevolle Medien-Karten */
.sl-buecher-heart {
  margin-top: 2.5rem;
}

.sl-buecher-heart__card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: stretch;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(250, 246, 238, 0.95) 0%, rgba(255, 252, 245, 0.98) 45%, rgba(232, 213, 160, 0.12) 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
}

.sl-buecher-heart__card--alt {
  background: linear-gradient(145deg, rgba(19, 39, 68, 0.04) 0%, rgba(250, 246, 238, 0.9) 55%, rgba(232, 213, 160, 0.1) 100%);
}

.sl-buecher-heart__visual {
  flex: 0 0 auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--midnight), var(--deep-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.2);
}

.sl-buecher-heart__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(232, 213, 160, 0.45);
  pointer-events: none;
}

.sl-buecher-heart__play {
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-left: 3px;
}

.sl-buecher-heart__visual--book {
  font-size: 2.25rem;
  background: linear-gradient(155deg, var(--deep-navy), var(--royal-blue));
}

.sl-buecher-heart__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.sl-buecher-heart__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.sl-buecher-heart__title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  color: var(--text-dark);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.sl-buecher-heart__text {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--text-body);
  font-size: 1.05rem;
}

.sl-buecher-heart__bullets {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--text-body);
  line-height: 1.65;
}

.sl-buecher-heart__bullets li {
  margin: 0.35rem 0;
}

.sl-buecher-heart__cta {
  margin: 0;
}

/* Hermine /start: Platzhalter-Bücher wie Bücher-Seite */
.book-card--placeholder .book-cover {
  background: var(--midnight);
}

.book-cover__ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a2744, var(--midnight));
  border-radius: inherit;
}

.book-cover__ph .book-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.88);
}

.blog-header__impulse-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-top: 0.75rem;
  line-height: 1.2;
}

.blog-header__impulse-title em {
  font-style: italic;
  color: var(--gold);
}

/* Spenden: Auszug FAQ/Feedback von der Missionsseite */
.sl-verein-snippet {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  border: 1px solid rgba(19, 39, 68, 0.08);
}

.sl-verein-snippet__more {
  margin: 1rem 0 0;
}

/* Schwebender Spenden-Link (ehem. Admin-FAB) */
.public-admin-fab--spenden {
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* Startseite: Baustein bild_links */
.home-media-split {
  padding: 2.5rem 0;
}
.home-media-split__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .home-media-split__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .home-media-split__media {
    flex: 0 0 42%;
    max-width: 420px;
  }
}
.home-media-split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.18);
}
.home-media-split__text {
  flex: 1;
  min-width: 0;
}
.home-media-split__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: var(--midnight);
}
.nav-item-dropdown{position:relative}
.nav-caret{font-size:.75em;opacity:.8}
.nav-dropdown{list-style:none;margin:0;padding:.4rem 0;position:absolute;top:100%;left:0;min-width:230px;background:var(--deep-navy,#132744);border:1px solid rgba(201,168,76,.30);border-radius:12px;box-shadow:0 14px 36px rgba(10,22,40,.45);opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .18s ease,transform .18s ease,visibility .18s;z-index:1200}
.nav-item-dropdown:hover>.nav-dropdown,.nav-item-dropdown:focus-within>.nav-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown li{margin:0}
.nav-dropdown li a{display:block;padding:.6rem 1.1rem;white-space:nowrap;color:var(--cream,#faf6ee);font-size:1rem}
.nav-dropdown li a:hover{background:rgba(201,168,76,.16);color:var(--gold-light,#e8d5a0)}
@media (max-width:767px){.nav-dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:transparent;min-width:0;padding:0 0 .4rem 1rem}.nav-caret{display:none}}
.ll-list{list-style:none;padding:0;margin:.6rem 0;display:flex;flex-wrap:wrap;gap:.5rem 1.4rem}
.ll-list li{position:relative;padding-left:1.4rem}
.ll-list li::before{content:"\266A";position:absolute;left:0;color:var(--gold,#c9a84c)}
.ll-steps-info{padding-left:1.2rem;line-height:1.9}
.ll-form fieldset{border:1px solid rgba(201,168,76,.25);border-radius:14px;padding:1.2rem 1.3rem;margin:0 0 1rem}
.ll-form legend{font-weight:700;font-size:1.12rem;padding:0 .5rem;color:var(--gold,#c9a84c)}
.ll-form.ll-form--stepped .ll-step[hidden]{display:none}
.ll-progress{height:8px;background:rgba(201,168,76,.18);border-radius:999px;overflow:hidden;margin-bottom:1.1rem}
.ll-progress-bar{display:block;height:100%;width:12.5%;background:var(--gold,#c9a84c);transition:width .3s ease}
.ll-nav{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center}
.ll-checkbox{display:flex;gap:.65rem;align-items:flex-start;font-weight:400;line-height:1.55;max-width:36rem}
.ll-checkbox input{margin-top:.2rem;width:auto;flex-shrink:0}
.article-page details summary{cursor:pointer;font-weight:600;padding:.6rem 0}

.content-wide--narrow {
  max-width: 720px;
}

.content-wide--wide {
  max-width: 1280px;
}
