/* ═══════════════════════════════════════════════════════
   Life Lion — Unterstütze-uns-Seite
   Seitenspezifische Styles · .sp- Prefix
   ═══════════════════════════════════════════════════════ */

/* ─── NAV-CTA AUSBLENDEN ───
   Floating Spenden-Button (.sp-floating-donate) ist hier eh dauernd
   sichtbar — der "Jetzt spenden"-Button im Menue waere doppelt. */
.nav-cta { display: none; }

/* ─── HERO ─── */
/* Main unter die Navbar ziehen, Hero-padding-top kompensiert.
   Hintergrund läuft so hinter der schwebenden Nav-Card durch. */
.site-main { margin-top: calc(-1 * var(--header-h)); }

.sp-hero {
  padding: calc(72px + var(--header-h)) 0 0;
  background:
    radial-gradient(ellipse 70% 55% at 90% 5%,  rgba(252,196,53,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 5%  75%, rgba(252,196,53,0.07) 0%, transparent 50%),
    #ffffff;
}
@media (min-width: 768px) { .sp-hero { padding: calc(88px + var(--header-h)) 0 0; } }

.sp-hero-text {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 56px;
  text-align: center;
}

.sp-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.sp-overline::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.sp-hero-text h1 {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.sp-hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent) 0%, #f0a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-hero-desc {
  font-size: 17px;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.sp-hero-desc strong {
  display: block;
  font-weight: 700;
  color: var(--c-text);
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .sp-hero-desc strong { font-size: 21px; }
}
.sp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}


/* ─── FLOATING SPENDEN-BUTTON ─── */
.sp-floating-donate {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--c-accent);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), var(--shadow-accent);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s ease;
}
.sp-floating-donate.active {
  opacity: 1;
  pointer-events: auto;
}
.sp-floating-donate:hover {
  background: var(--c-accent-hover);
}
@media (min-width: 768px) {
  .sp-floating-donate { bottom: 32px; right: 32px; }
}


/* ─── WIDGET-SECTION CTA ─── */
.sp-widget-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


/* Mini-Fortschrittsbalken (ueber "Jetzt spenden"-Button) wird vom
   Spenden-Plugin per [lifelion_fortschritt variant="mini"] gerendert.
   Nur noch Layout-Abstand innerhalb dieser Section. */
.sp-widget-section .llb-f-card--mini {
  margin-bottom: 20px;
}


/* ─── WARUM SPENDEN ─── */
.sp-reasons {
  background: var(--c-bg-alt);
}
.sp-reasons .section-header {
  margin-bottom: 16px;
}
.sp-reasons-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-2);
  text-align: center;
}
.sp-reasons-body p {
  margin: 0 0 14px;
}
.sp-reasons-body p:last-child {
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .sp-reasons-body { font-size: 17px; }
}


/* ─── WIDGET-SECTION ─── */
.sp-widget-section {
  background: var(--c-bg-alt);
}
.sp-widget-section .section-center {
  margin-bottom: 8px;
}
.sp-widget-meta {
  font-size: 14px;
  color: var(--c-text-2);
  margin: 0 auto 28px;
  text-align: center;
  letter-spacing: 0.01em;
}


/* ─── BANKÜBERWEISUNG ─── */
.sp-bank-section {
  background: var(--c-bg-alt);
  padding: 0 0 32px;
}
@media (min-width: 768px) {
  .sp-bank-section { padding: 0 0 80px; }
}

.sp-bank {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  background: white;
  overflow: hidden;
  transition: border-color var(--ease);
}
.sp-bank.open { border-color: var(--c-accent); }

.sp-bank-toggle {
  width: 100%;
  padding: 18px 20px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--c-text-2);
  text-align: left;
  transition: background var(--ease), color var(--ease);
}
.sp-bank-toggle:hover {
  background: var(--c-accent-light);
  color: var(--c-text);
}

.sp-bank-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--c-text-3);
}
.sp-bank.open .sp-bank-arrow {
  transform: rotate(180deg);
  color: var(--c-accent-hover);
}

.sp-bank-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 20px;
}
.sp-bank.open .sp-bank-details {
  max-height: 600px;
  padding: 0 20px 20px;
}

.sp-bank-grid {
  display: block;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .sp-bank-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: center;
  }
}

.sp-bank-data dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  font-size: 15px;
  margin: 0;
}
.sp-bank-data dt {
  font-weight: 600;
  color: var(--c-text);
  align-self: center;
}
.sp-bank-data dd {
  color: var(--c-text-2);
  font-variant-numeric: tabular-nums;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.sp-bank-val {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Copy-Button */
.sp-bank-copy {
  flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  background: white;
  color: var(--c-text-2);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.sp-bank-copy:hover {
  background: var(--c-accent-light);
  color: var(--c-text);
  border-color: var(--c-accent);
}
.sp-bank-copy:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.sp-bank-copy-i,
.sp-bank-copy-c {
  position: absolute;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.sp-bank-copy-c {
  opacity: 0;
  transform: scale(0.7);
  color: #1a8a4a;
}
.sp-bank-copy.copied {
  background: #e8f5ec;
  border-color: #1a8a4a;
}
.sp-bank-copy.copied .sp-bank-copy-i {
  opacity: 0;
  transform: scale(0.7);
}
.sp-bank-copy.copied .sp-bank-copy-c {
  opacity: 1;
  transform: scale(1);
}

/* QR-Code (nur Desktop/Tablet) */
.sp-bank-qr {
  display: none;
}
@media (min-width: 768px) {
  .sp-bank-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 8px;
  }
  .sp-bank-qr-img {
    width: 150px;
    height: 150px;
    display: block;
    padding: 8px;
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
  }
  .sp-bank-qr-caption {
    font-size: 12px;
    color: var(--c-text-2);
    text-align: center;
    line-height: 1.35;
    max-width: 160px;
  }
}

.sp-bank-hint {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--c-accent-light);
  border-radius: var(--r-sm);
  border: 1px solid rgba(252,196,53,0.3);
}


/* ─── TRANSPARENZ / BUDGET ─── */
.sp-budget {
  background: var(--c-bg);
}
.sp-budget-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-budget-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-border);
  transition: border-color var(--ease);
}
.sp-budget-item:hover { border-color: var(--c-accent); }

.sp-budget-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: white;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foto-Variante: Einzelporträt im Kreis, kein Rahmen/Hintergrund */
.sp-budget-icon--photo {
  background: none;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
}
.sp-budget-icon--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Doppel-Variante: zwei runde Porträts, leicht überlappend (Daniel + Michelle) */
.sp-budget-icon--pair {
  position: relative;
  width: 68px;
  height: 44px;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.sp-budget-icon--pair img {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-bg-alt);
  transform: translateY(-50%);
}
.sp-budget-icon--pair img:first-child  { left: 0;  z-index: 2; }
.sp-budget-icon--pair img:last-child   { left: 28px; z-index: 1; }

.sp-budget-item:hover .sp-budget-icon--pair img {
  border-color: var(--c-accent-light);
  transition: border-color var(--ease);
}
.sp-budget-body { display: flex; flex-direction: column; gap: 4px; }
.sp-budget-body strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}
.sp-budget-body span {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.55;
}

/* Fazit nach den Budget-Items — ohne äußere Box, freischwebend */
.sp-budget-fazit {
  margin-top: 24px;
  padding: 8px 0 0;
  background: none;
  border: 0;
  text-align: center;
}
.sp-budget-fazit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-budget-fazit-eyebrow svg {
  color: var(--c-accent-hover);
  flex-shrink: 0;
}
.sp-budget-fazit p {
  margin: 0;
  color: var(--c-text);
}
.sp-budget-fazit-kicker {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 20px !important;
}

/* Wirkungskette: Planbares Budget → Mehr Content → Mehr Menschen
   Icon + Label gemeinsam in einem hellgelben Kreis, ohne Rand */
.sp-budget-chain {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  justify-items: center;
  margin: 0;
}
.sp-chain-step {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--c-accent-light);
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
}
.sp-chain-icon {
  width: auto;
  height: auto;
  background: none;
  border: 0;
  color: var(--c-accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-chain-icon svg {
  width: 30px;
  height: 30px;
}
.sp-chain-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-text);
}
.sp-chain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  opacity: 0.55;
  padding: 2px 0;
  transform: rotate(90deg);
}
@media (min-width: 560px) {
  .sp-budget-chain {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
  }
  .sp-chain-step {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .sp-chain-arrow {
    transform: none;
    padding: 0 2px;
  }
}
@media (min-width: 640px) {
  .sp-budget-fazit-kicker { font-size: 20px; }
  .sp-chain-label { font-size: 14px; }
  .sp-chain-icon svg { width: 32px; height: 32px; }
}

/* Echte Bruch-Darstellung für Zahlen wie 2/3 oder 1/3 */
.frac {
  display: inline;
  white-space: nowrap;
  font-weight: 600;
  color: var(--c-text);
}
.frac sup,
.frac sub {
  font-size: 0.72em;
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.frac sup { vertical-align: 0.45em; }
.frac sub { vertical-align: -0.05em; }
.frac .frac-bar {
  margin: 0 -0.05em;
  color: var(--c-accent-hover);
  font-weight: 400;
}

/* Aufklappbare Detail-Notiz innerhalb einer Budget-Kachel (z.B. Creedle-Hinweis) */
.sp-budget-note {
  margin-top: 10px;
  font-size: 13px;
}
.sp-budget-note > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  color: var(--c-text-2);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--c-border-2);
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.sp-budget-note > summary::-webkit-details-marker { display: none; }
.sp-budget-note > summary::after {
  content: '+';
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-3);
  transition: transform 0.2s ease, color 0.2s ease;
}
.sp-budget-note[open] > summary::after {
  content: '−';
  color: var(--c-accent-hover);
}
.sp-budget-note > summary:hover { color: var(--c-text); }
.sp-budget-note p {
  margin: 8px 0 0;
  padding: 10px 12px;
  background: var(--c-bg);
  border-left: 2px solid var(--c-accent);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-text-2);
}
.sp-budget-note p a {
  color: var(--c-text);
  text-decoration: underline;
  text-decoration-color: var(--c-accent);
  text-underline-offset: 2px;
}


/* ─── PYRAMIDE: TEASER FÜR MITMACHEN + BETEN ─── */
/* Bleibt im Spenden-Block visuell (gleicher bg-alt), macht Spenden dominant
   und Mitmachen/Beten zu kleineren Teasern direkt darunter. */
.sp-pyramid-extras {
  background: var(--c-bg-alt);
  padding: 12px 0 72px;
}
.sp-pyramid-intro {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-2);
  margin: 0 0 16px;
  font-weight: 500;
}
.sp-pyramid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .sp-pyramid-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.sp-pyramid-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 12px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}
.sp-pyramid-card:hover {
  border-color: var(--c-accent);
  background: var(--c-accent-light);
  transform: translateY(-2px);
}
.sp-pyramid-card:hover .sp-pyramid-arrow {
  color: var(--c-text);
  transform: translateY(2px);
}

.sp-pyramid-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-pyramid-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sp-pyramid-body strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
}
.sp-pyramid-body span {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.45;
}
.sp-pyramid-arrow {
  flex-basis: 100%;
  display: block;
  margin: 4px auto 0;
  color: var(--c-text-3);
  transition: transform 0.2s ease, color 0.2s ease;
}


/* ─── IMPACT / FINANZ-KONTEXT ─── */
.sp-impact {
  background: var(--c-bg-alt);
}

.sp-impact-progress {
  margin-bottom: 36px;
}

/* Balken-Vergleich */
.sp-impact-compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.sp-impact-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-impact-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.sp-impact-bar-label {
  font-size: 14px;
  color: var(--c-text-2);
  font-weight: 500;
}
.sp-impact-bar-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sp-impact-bar-hl {
  color: var(--c-text);
}
.sp-impact-bar-year {
  color: var(--c-text-2);
  font-weight: 400;
  margin-left: 2px;
}

.sp-impact-bar-track {
  height: 10px;
  background: var(--c-border);
  border-radius: 5px;
  overflow: hidden;
}
.sp-impact-bar-fill {
  height: 100%;
  min-width: 6px;
  background: var(--c-text-3);
  border-radius: 5px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.sp-impact-bar-fill-accent {
  background: linear-gradient(90deg, var(--c-accent) 0%, #f0a800 100%);
}

.sp-impact-footnote {
  font-size: 13px;
  color: var(--c-text-3);
  margin-top: 8px;
}

/* Toggle für Medienwerke */
.sp-compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--c-text-2);
  cursor: pointer;
  transition: color var(--ease);
}
.sp-compare-toggle:hover { color: var(--c-text); }

.sp-compare-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--c-text-3);
}
.sp-compare-toggle.active .sp-compare-arrow {
  transform: rotate(180deg);
  color: var(--c-accent-hover);
}

.sp-compare-extra {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.sp-compare-extra.open {
  max-height: 300px;
  opacity: 1;
}

.sp-impact-text {
  text-align: center;
  font-size: 17px;
  color: var(--c-text-2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}
.sp-impact-text strong {
  color: var(--c-text);
}

/* Übergangszeile vom Budget zu Impact-Zahlen */
.sp-impact-bridge {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--c-text-2);
  margin: 56px auto 32px;
  line-height: 1.55;
  max-width: 34ch;
  letter-spacing: 0;
}
@media (min-width: 640px) {
  .sp-impact-bridge {
    font-size: 17px;
    margin-top: 72px;
    margin-bottom: 44px;
    max-width: none;
  }
  .sp-impact-bridge::before,
  .sp-impact-bridge::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--c-border);
    vertical-align: middle;
    margin: 0 18px;
    transform: translateY(-2px);
  }
}

/* Impact-Zahlen — typografisch, ohne Box */
.sp-impact-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.sp-impact-stat-divider {
  width: 48px;
  height: 1px;
  background: var(--c-border);
}
@media (min-width: 640px) {
  .sp-impact-stats {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
  }
  .sp-impact-stat-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 0 48px;
  }
}

.sp-impact-stat {
  text-align: center;
  flex: 1;
  max-width: 320px;
}
.sp-impact-stat-num {
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #5a5c5b;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
@media (min-width: 640px) {
  .sp-impact-stat-num { font-size: 46px; }
}
.sp-impact-stat-plus {
  color: var(--c-accent);
  font-weight: 300;
  margin-left: 2px;
}
.sp-impact-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text-2);
  line-height: 1.5;
  margin-top: 14px;
  letter-spacing: 0.005em;
}
@media (min-width: 640px) {
  .sp-impact-stat-label { font-size: 15px; margin-top: 16px; }
}


/* ─── MITMACHEN ─── */
.sp-mitmachen {
  background: var(--c-bg);
}
.sp-mitmachen-centered {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-mitmachen-roles-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.sp-mitmachen-roles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}
.sp-mitmachen-role {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-border);
  transition: border-color var(--ease);
}
.sp-mitmachen-role:hover { border-color: var(--c-accent); }

.sp-mitmachen-role-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-mitmachen-role-body { display: flex; flex-direction: column; gap: 4px; }
.sp-mitmachen-role-body strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}
.sp-mitmachen-role-body span {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.55;
}
.sp-mitmachen-hint {
  font-size: 15px;
  color: var(--c-text-2);
  margin-bottom: 20px;
  text-align: center;
}


/* ─── BETEN ─── */
.sp-beten {
  background: var(--c-bg-alt);
}

.sp-beten-topics-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
  max-width: 100%;
}
@media (min-width: 640px) {
  .sp-beten-topics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 960px) {
  .sp-beten-topics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sp-beten-topic {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: white;
  border: 1.5px solid var(--c-border);
  transition: border-color var(--ease);
}
.sp-beten-topic:hover { border-color: var(--c-accent); }

.sp-beten-topic-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-beten-topic-body { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sp-beten-topic-body strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}
.sp-beten-topic-body span {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.55;
}


/* ─── FAQ ─── */
.sp-faq {
  background: var(--c-bg);
}
.sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-faq-item {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  overflow: hidden;
  transition: border-color var(--ease);
  background: var(--c-bg-alt);
}
.sp-faq-item.active { border-color: var(--c-accent); }

.sp-faq-q {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--c-text);
  text-align: left;
  transition: background var(--ease);
}
.sp-faq-q:hover { background: var(--c-accent-light); }

.sp-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--c-text-2);
}
.sp-faq-item.active .sp-faq-arrow {
  transform: rotate(180deg);
  color: var(--c-accent-hover);
}

.sp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.sp-faq-item.active .sp-faq-a {
  max-height: 600px;
  padding: 0 20px 20px;
}

.sp-faq-a p {
  font-size: 15px;
  color: var(--c-text-2);
  line-height: 1.7;
}
.sp-faq-a p + p {
  margin-top: 10px;
}
.sp-faq-a a {
  color: var(--c-accent-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.sp-faq-a a:hover {
  color: var(--c-text);
}

.sp-faq-a ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.sp-faq-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.sp-faq-methods li {
  font-size: 15px;
  color: var(--c-text-2);
  padding: 4px 0;
}
.sp-faq-methods li::before {
  content: '\2713';
  color: var(--c-accent-hover);
  font-weight: 700;
  margin-right: 6px;
}

/* ─── FINALER CTA ─── */
.sp-final {
  background: var(--c-bg-alt);
}
.sp-final-card {
  text-align: center;
  padding: 56px 24px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(252,196,53,0.12) 0%, transparent 60%),
    white;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.sp-final-card h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sp-final-card p {
  font-size: 17px;
  color: var(--c-text-2);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.sp-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}


/* ─── TESTIMONIALS (YouTube-Kommentare) ─── */
.sp-testimonials {
  padding: 72px 0;
  background: var(--c-bg);
}
@media (min-width: 768px) {
  .sp-testimonials { padding: 96px 0; }
}
.sp-testi-intro {
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text);
  max-width: 640px;
  margin: 14px auto 0;
}
.sp-testi-intro em {
  font-style: italic;
  color: var(--c-text);
  font-weight: 600;
}
@media (min-width: 768px) {
  .sp-testi-intro { font-size: 19px; }
}

/* Fußnoten-Link (¹) — im Hero und in der Impact-Kachel */
.sp-footnote-ref {
  color: var(--c-text-2);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2px;
}
.sp-footnote-ref:hover { color: var(--c-text); }

/* Aufklappbare Fußnote unter der Kommentar-Liste */
.sp-footnote-details {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 0;
  border-top: 1px solid var(--c-border);
}
.sp-footnote-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 8px;
  cursor: pointer;
  list-style: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text-2);
  transition: color var(--ease);
}
.sp-footnote-details > summary::-webkit-details-marker { display: none; }
.sp-footnote-details > summary:hover { color: var(--c-text); }
.sp-footnote-label sup {
  margin-right: 2px;
  font-size: 11px;
}
.sp-footnote-arrow {
  flex-shrink: 0;
  color: var(--c-text-3);
  transition: transform 0.25s ease, color 0.25s ease;
}
.sp-footnote-details[open] > summary .sp-footnote-arrow {
  transform: rotate(180deg);
  color: var(--c-accent-hover);
}
.sp-footnote-body {
  margin: 0;
  padding: 4px 8px 18px 8px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-text-2);
}
.sp-footnote-body p {
  margin: 0 0 16px;
}
.sp-footnote-body p:last-child { margin-bottom: 0; }
.sp-footnote-body strong {
  color: var(--c-text);
  font-weight: 600;
}
.sp-footnote-body a {
  color: var(--c-text);
  text-decoration: underline;
  text-decoration-color: var(--c-accent);
  text-underline-offset: 2px;
}
.sp-footnote-body a:hover { text-decoration-color: var(--c-text); }
/* „Studie ansehen" — kursiv, ohne Unterstrich */
.sp-footnote-body a.sp-footnote-link {
  text-decoration: none;
  color: var(--c-text-2);
}
.sp-footnote-body a.sp-footnote-link:hover { color: var(--c-text); }
.sp-footnote-body a.sp-footnote-link em { font-style: italic; }

/* Disclaimer-Wrapper vor der eigentlichen Herleitung */
.sp-footnote-intro {
  padding: 4px 8px 18px 22px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-text-2);
}
.sp-footnote-intro p { margin: 0 0 10px; }
.sp-footnote-intro p:last-of-type { margin-bottom: 14px; }

/* Footnote-Ortsangabe ("oben" vs. "weiter unten"): derselbe Block wird
   inline in der <details>-Fußnote angezeigt UND in das Modal geklont.
   - Inline (details unter den Testimonials)  → Testimonials stehen oben
   - Modal (über ¹-Link weit oben aufgerufen) → Testimonials stehen weiter unten  */
.sp-footnote-details .sp-footnote-loc-modal { display: none; }
.sp-footnote-modal-body .sp-footnote-loc-details { display: none; }
.sp-footnote-warn {
  color: var(--c-text-3);
  font-size: 12.5px;
  font-style: italic;
}
.sp-footnote-nested {
  border-top: 1px dashed var(--c-border);
  padding-top: 10px;
}
.sp-footnote-nested > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text-3);
  transition: color var(--ease);
}
.sp-footnote-nested > summary::-webkit-details-marker { display: none; }
.sp-footnote-nested > summary:hover { color: var(--c-text-2); }
.sp-footnote-nested[open] > summary { color: var(--c-text-2); }
.sp-footnote-nested[open] .sp-footnote-arrow { transform: rotate(180deg); color: var(--c-accent-hover); }
.sp-footnote-nested .sp-footnote-body {
  padding: 8px 0 0 18px;
}

/* Modal-Variante der Fußnote (öffnet beim Klick auf ¹) */
.sp-footnote-modal {
  padding: 0;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  background: var(--c-bg);
  color: var(--c-text);
  max-width: 640px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(36, 38, 37, 0.18);
  /* Zentrierung — Browser-Default via margin:auto, aber explizit, weil wir display:flex auf [open] setzen */
  position: fixed;
  inset: 0;
  margin: auto;
}
.sp-footnote-modal::backdrop {
  background: rgba(36, 38, 37, 0.45);
  backdrop-filter: blur(2px);
}
.sp-footnote-modal[open] {
  display: flex;
  flex-direction: column;
  animation: sp-footnote-modal-in 0.18s ease-out;
}
@keyframes sp-footnote-modal-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sp-footnote-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.sp-footnote-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.sp-footnote-modal-title sup {
  margin-right: 2px;
  font-size: 11px;
  color: var(--c-text-2);
}
.sp-footnote-modal-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--c-text-2);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.sp-footnote-modal-close:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}
.sp-footnote-modal-body {
  padding: 16px 20px 22px;
  overflow-y: auto;
}
.sp-footnote-modal-body .sp-footnote-intro {
  padding: 0;
}
@media (max-width: 600px) {
  .sp-footnote-modal {
    max-height: calc(100vh - 24px);
    width: calc(100% - 24px);
  }
  .sp-footnote-modal-header { padding: 14px 16px 12px; }
  .sp-footnote-modal-body { padding: 14px 16px 20px; }
}

/* Box mit Kommentaren — Liquid Glass / Milchglas-Look.
   Kein Rahmen, sondern viele kleine Pastell-Tupfer in warmen Creme/Sand-Tönen
   (Peach-Sand, Warm Taupe, Champagne, Cream, Peach — "Rose Garden Coral") die
   chaotisch verteilt sind. Harmoniert mit den neutralen Karten-Rahmen.

   WICHTIG: Y-Positionen und Ellipsen-Höhen in PIXELN (nicht %), damit die
   Tupfer beim Aufklappen (.sp-testi-box.expanded) NICHT mitwandern, sondern
   nur zusätzlich sichtbar werden — wie die Kommentare darunter. X-Positionen
   bleiben in %, damit es responsive auf unterschiedliche Breiten reagiert. */
.sp-testi-box {
  position: relative;
  max-width: 960px;
  margin: 48px auto 0;
  border: none;
  border-radius: 24px;
  padding: 32px 20px 64px;
  background:
    /* Oberer Bereich — sichtbar im collapsed-Zustand (≈ bis 836px Höhe).
       ~3x größere, breitere Ellipsen die sich stärker überlappen und
       bis an die Ränder reichen — horizontaler Fluss links↔rechts. */
    radial-gradient(ellipse 108% 450px at 5% 168px, rgba(248,227,192,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 120% 450px at 95% 234px, rgba(245,236,220,0.27) 0% 20%, transparent 45%),
    radial-gradient(ellipse 72% 654px at 60% 368px, rgba(250,237,215,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 132% 450px at 5% 702px, rgba(245,236,220,0.26) 0% 20%, transparent 45%),
    radial-gradient(ellipse 108% 504px at 95% 768px, rgba(232,220,198,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 120% 504px at 80% 970px, rgba(248,227,192,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 108% 552px at 50% 1254px, rgba(245,236,220,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 120% 504px at 20% 1472px, rgba(250,237,215,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 72% 504px at 100% 1538px, rgba(228,221,208,0.22) 0% 20%, transparent 45%),
    /* Weiße Aufheller — top area, 8× Größe vs. original, Softradius erneut halbiert (solid 0-58%, fade 58-62%) */
    radial-gradient(ellipse 384% 2016px at 45% 260px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 1800px at 10% 330px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 1800px at 80% 540px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 336% 2208px at 100% 600px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 336% 2208px at 15% 850px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 480% 2016px at 75% 890px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 288% 1800px at 30% 1000px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 480% 2016px at 70% 1070px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 384% 2208px at 20% 1230px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 288% 1800px at 30% 1340px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 2016px at 65% 1400px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 2208px at 85% 1620px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    /* Unterer Bereich — nur sichtbar wenn expanded (Y > 836px) */
    radial-gradient(ellipse 84% 552px at 55% 1810px, rgba(228,221,208,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 72% 504px at 0% 2040px, rgba(232,220,198,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 108% 450px at 85% 2200px, rgba(245,236,220,0.25) 0% 20%, transparent 45%),
    radial-gradient(ellipse 120% 552px at 60% 2420px, rgba(228,221,208,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 96% 504px at 5% 2680px, rgba(250,237,215,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 84% 450px at 95% 2840px, rgba(248,227,192,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 72% 552px at 65% 3090px, rgba(232,220,198,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 96% 504px at 10% 3330px, rgba(245,236,220,0.25) 0% 20%, transparent 45%),
    radial-gradient(ellipse 120% 450px at 100% 3510px, rgba(228,221,208,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 108% 552px at 45% 3750px, rgba(250,237,215,0.24) 0% 20%, transparent 45%),
    radial-gradient(ellipse 84% 504px at 15% 4010px, rgba(248,227,192,0.22) 0% 20%, transparent 45%),
    radial-gradient(ellipse 72% 450px at 100% 4210px, rgba(228,221,208,0.24) 0% 20%, transparent 45%),
    /* Weiße Aufheller — bottom area */
    radial-gradient(ellipse 384% 2016px at 70% 1840px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 336% 2016px at 40% 1970px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 2208px at 25% 2160px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 384% 1800px at 90% 2280px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 288% 1800px at 85% 2480px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 480% 2208px at 25% 2600px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 480% 2016px at 15% 2800px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 288% 2016px at 70% 2920px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 336% 2208px at 75% 3120px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 1800px at 40% 3250px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    radial-gradient(ellipse 384% 1800px at 30% 3470px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 336% 2208px at 95% 3590px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 2016px at 85% 3810px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 384% 2016px at 15% 3940px, rgba(255,255,255,0.24) 0% 58%, transparent 62%),
    radial-gradient(ellipse 288% 2208px at 20% 4160px, rgba(255,255,255,0.22) 0% 58%, transparent 62%),
    radial-gradient(ellipse 432% 2208px at 60% 4280px, rgba(255,255,255,0.23) 0% 58%, transparent 62%),
    #ffffff;
  /* Das 4500px hohe Muster aus 49 Tupfern (21 pastell + 28 weiß) kachelt vertikal, damit das
     Hintergrund-Pattern auch bei voll aufgeklappter Box bis ans Ende weiter-
     läuft statt abzubrechen. Die Tile-Höhe ist exakt so gewählt, dass
     oberer (Y=134) und unterer Rand-Tupfer (Y=4360) jeweils ~134–140px Abstand
     zur Kachelgrenze haben — da verblasst die Farbe natürlich zu transparent
     (Gradient fade bei 45% des Radius bei Pastell, 62% bei Weiß), sodass keine
     sichtbaren Kachelnähte entstehen. X bleibt bewusst auf 100% Tile-Breite. */
  background-size: 100% 4500px;
  background-repeat: repeat-y;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 1px 3px rgba(36,38,37,0.05),
    0 20px 50px -10px rgba(36,38,37,0.10);
}
@media (min-width: 768px) {
  .sp-testi-box {
    padding: 48px 48px 72px;
  }
}

/* Clip-Wrapper: trägt max-height, Maske und Glow-Padding.
   WICHTIG: nicht auf .sp-testi-list selbst, sonst flowen CSS-columns
   pathologisch in die Höhenbeschränkung und scrollHeight wird unbrauchbar. */
.sp-testi-clip {
  position: relative;
  max-height: 740px;
  overflow: hidden;
  padding: 14px;
  margin: -14px;
  mask-image: linear-gradient(to bottom, black 0, black calc(100% - 200px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0, black calc(100% - 200px), transparent 100%);
  transition: max-height 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sp-testi-box.expanded .sp-testi-clip {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Masonry mit Zeilenreihenfolge (1|2, 3|4, 5|6 …)
   Mobile: Spalten-Wrapper sind unsichtbar (display:contents),
   inline order:N stellt die korrekte Reihenfolge her.
   Desktop: zwei echte Flex-Spalten — jede .sp-testi-col ist ein eigener
   Flex-Container, Karten stapeln vertikal mit gap 18px. Dadurch bleibt
   die Lesefolge erhalten (1 links, 2 rechts, 3 links, 4 rechts …) und
   scrollHeight des Clips ist sauber berechenbar (keine column-Pathologien). */
.sp-testi-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sp-testi-col {
  display: contents;
}
@media (min-width: 700px) {
  .sp-testi-list {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }
  .sp-testi-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1 1 0;
    min-width: 0;
  }
  .sp-testi-card {
    order: unset !important;
  }
}

/* Kommentarkarte (Basis) — opak weiße Karten auf dem Pastell-Glas-Container.
   Die Distinktion zwischen christ/suchend kommt ausschließlich von Rahmen
   und farbigem Schatten. Glow-Distanz bewusst sehr kurz gehalten. */
.sp-testi-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  margin: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(36,38,37,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 0 1px rgba(36,38,37,0.04),
    0 1px 4px -1px rgba(36,38,37,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sp-testi-card:hover {
  transform: translateY(-2px);
}

/* "Zum Glauben gefunden" — helle Distinktion: weißer Rahmen + heller Glow,
   stärkerer neutraler Drop-Shadow hebt die Karte vom warmen Pastell-Hintergrund
   ab und lässt sie "leuchten". Karteninhalt bleibt weiß. */
.sp-testi-christ {
  border-color: rgba(255,255,255,0.90);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 0 0 1px rgba(255,255,255,0.50),
    0 0 1px rgba(36,38,37,0.05),
    0 2px 10px -2px rgba(36,38,37,0.14);
}
.sp-testi-christ:hover {
  border-color: rgba(255,255,255,1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 0 0 1px rgba(255,255,255,0.70),
    0 0 2px rgba(36,38,37,0.08),
    0 4px 14px -3px rgba(36,38,37,0.18);
}

/* "Suchend / nicht gläubig" — neutrale Distinktion: grauer Rahmen +
   grauer Schatten. Wirkt gedämpft/neutral gegenüber der leuchtenden
   christ-Karte. Karteninhalt bleibt weiß. */
.sp-testi-suchend {
  border-color: rgba(140,142,148,0.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 0 0 1px rgba(140,142,148,0.08),
    0 0 1px rgba(140,142,148,0.10),
    0 1px 4px -1px rgba(140,142,148,0.13);
}
.sp-testi-suchend:hover {
  border-color: rgba(140,142,148,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 0 0 1px rgba(140,142,148,0.12),
    0 0 2px rgba(140,142,148,0.14),
    0 2px 6px -1px rgba(140,142,148,0.16);
}

/* Avatar-Bild (echtes YouTube-Profilbild) */
.sp-testi-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  user-select: none;
  background: var(--c-border);
}
@media (min-width: 768px) {
  .sp-testi-avatar {
    width: 44px;
    height: 44px;
  }
}
/* Fallback-Avatar (farbiges Initial, falls Bild-Download fehlgeschlagen) */
.sp-testi-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  font-family: var(--font);
}
@media (min-width: 768px) {
  .sp-testi-avatar-fallback { font-size: 18px; }
}

/* Body (Text-Bereich) */
.sp-testi-body {
  flex: 1;
  min-width: 0;
}

.sp-testi-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.sp-testi-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
}
.sp-testi-date {
  font-size: 12px;
  color: var(--c-text-2);
}

.sp-testi-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .sp-testi-text {
    font-size: 15px;
  }
}

.sp-testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

.sp-testi-likes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-2);
  font-variant-numeric: tabular-nums;
}
.sp-testi-likes svg {
  flex-shrink: 0;
  stroke: var(--c-text-2);
}

.sp-testi-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--c-text-3);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.sp-testi-source:hover {
  color: var(--c-text-2);
  background: var(--c-bg-alt);
}

/* Toggle-Buttons Wrapper: Hauptbutton + optionaler Einklappen-Button */
.sp-testi-toggles {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

/* Toggle-Button (Reißverschluss) */
.sp-testi-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sp-testi-toggle:hover {
  background: var(--c-accent-light);
  border-color: var(--c-accent);
  box-shadow: 0 6px 20px rgba(252,196,53,0.2);
}
.sp-testi-toggle-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.sp-testi-box.expanded .sp-testi-toggle-arrow {
  transform: rotate(180deg);
}
/* Wenn alles expandiert ist, verschwindet der Haupt-Toggle komplett —
   vermeidet das versehentliche "Zurück zum Anfang" beim Weiterklicken.
   Der Einklappen-Button bleibt für die Rückkehr sichtbar. */
.sp-testi-box.expanded .sp-testi-toggle {
  display: none;
}

/* Einklappen-Button (rund, Pfeil nach oben) — nur sichtbar, wenn über Basis expandiert */
.sp-testi-collapse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.sp-testi-collapse:hover {
  background: var(--c-accent-light);
  border-color: var(--c-accent);
  box-shadow: 0 6px 20px rgba(252,196,53,0.2);
}
.sp-testi-collapse[hidden] {
  display: none;
}


/* ─── SKEPTIKER-STIMMEN (reduzierte Sektion, 3er-Grid) ─── */
.sp-testi-skeptic {
  padding: 16px 0 72px;
  background: var(--c-bg);
}
@media (min-width: 768px) {
  .sp-testi-skeptic { padding: 24px 0 56px; }
}
.sp-testi-skeptic .section-header {
  margin-bottom: 32px;
}

/* Karussell-Layout analog zum Shop-Karussell der Startseite. */
.sp-skeptic-carousel-nav {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.sp-skeptic-carousel-wrap {
  overflow: hidden;
  width: 100%;
  /* Fade breit genug, damit ein- und austretende Karten sichtbar weich faden
     (statt nur in den äußersten 3% zu "ploppen"). Mit 12/88% bleibt der
     zentrierte Kommentar überall (Desktop + Mobile) klar sichtbar. */
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  /* Höhe wird per JS an die sichtbaren Karten gebunden (Mitte + Nachbarn,
     während Transitions auch die einfahrende 4. Karte). Duration matcht
     exakt die Transform-Transition des Tracks. */
  transition: height 0.45s cubic-bezier(.4,0,.2,1);
}
.sp-skeptic-carousel-track {
  display: flex;
  align-items: flex-start;  /* Karten wachsen nach Content-Höhe, statt alle auf max-Höhe zu strecken */
  gap: 14px;
  padding: 8px 20px;
  will-change: transform;
}
/* Arrows bleiben an ihrer anfänglichen Position (entspricht der ursprünglichen
   Kartenmitte bei fixen Höhen 240/250/260px + 8px Track-Padding oben).
   Kein top:50% mehr, weil der Wrap nun mit längeren Karten wächst und
   die Pfeile dann mitwandern würden. */
.sp-skeptic-arrow {
  position: absolute;
  top: 128px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(36,38,37,0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 640px) {
  .sp-skeptic-arrow { top: 133px; }
}
@media (min-width: 900px) {
  .sp-skeptic-arrow { top: 138px; }
}
.sp-skeptic-arrow:active {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
@media (hover: hover) {
  .sp-skeptic-arrow:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    box-shadow: 0 4px 12px rgba(252,196,53,0.35);
  }
}
.sp-skeptic-arrow-left { left: 10px; }
.sp-skeptic-arrow-right { right: 10px; }

/* Kompakte Karten-Variante als Slides im Karussell.
   Feste Breite, aber DYNAMISCHE Höhe nach Content. Kurze Kommentare bleiben
   flach, längere dürfen in den großzügigen Section-Padding-Bereich wachsen
   (72px unten mobil / 96px unten desktop). */
.sp-testi-skeptic .sp-testi-card {
  flex-shrink: 0;
  width: 280px;
  margin: 0;
  padding: 14px 16px;
  gap: 10px;
  box-shadow:
    0 0 1px rgba(140,142,148,0.10),
    0 1px 3px rgba(140,142,148,0.08);
}
@media (min-width: 640px) {
  .sp-testi-skeptic .sp-testi-card { width: 300px; }
}
@media (min-width: 900px) {
  .sp-testi-skeptic .sp-testi-card { width: 320px; }
}
.sp-testi-skeptic .sp-testi-card:hover {
  transform: none;
  box-shadow:
    0 0 2px rgba(140,142,148,0.14),
    0 2px 6px -1px rgba(140,142,148,0.14);
}
.sp-testi-skeptic .sp-testi-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sp-testi-skeptic .sp-testi-text {
  flex: 1 1 auto;
  /* Kein line-clamp mehr — Text darf in voller Länge erscheinen,
     die Karte wächst mit. */
}
.sp-testi-skeptic .sp-testi-avatar {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .sp-testi-skeptic .sp-testi-avatar { width: 34px; height: 34px; }
}
.sp-testi-skeptic .sp-testi-author { font-size: 13px; }
.sp-testi-skeptic .sp-testi-date { font-size: 11px; }
.sp-testi-skeptic .sp-testi-text {
  font-size: 13.5px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .sp-testi-skeptic .sp-testi-text { font-size: 14px; }
}
.sp-testi-skeptic .sp-testi-footer {
  margin-top: 10px;
}
.sp-testi-skeptic .sp-testi-source {
  width: 24px;
  height: 24px;
}
