/* ═══════════════════════════════════════════════════════════════════
   bscg-miteinander.de · Premium-Section-Styles
   Webdesign · Entwicklung · technische Umsetzung: Slorify (slorify.com)
   © Slorify — alle Rechte am Code, Layout, Design und Animation.
   Fragen, Wartung oder Anpassungen: https://slorify.com · hello@slorify.com
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-SECTION · Training + Aktuelles + Unser Kader
   Eigenständige Klassen — keine Kollision mit alten vB-* Styles.
   ═══════════════════════════════════════════════════════════════════ */

.premium-info-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(126, 212, 122, 0.08), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(126, 212, 122, 0.05), transparent 32%),
    #050706;
  padding: 96px 48px 120px;
  color: #F4F3EE;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.premium-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ════════ Cards-Grid (Training + Aktuelles) ════════ */
.premium-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.premium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 340px;
  padding: 40px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(126, 212, 122, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  isolation: isolate;
}

.premium-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.9), transparent);
  pointer-events: none;
}

.premium-card-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168, 168, 168, 0.95);
  font-weight: 700;
  margin: 0;
}

.premium-card-h {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #F4F3EE;
}

.premium-card-foot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  color: #A8A8A8;
}
.premium-card-foot svg { color: #7ED47A; flex-shrink: 0; }

/* ════════ Schedule-Liste innerhalb der Training-Card ════════ */
.premium-sched {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.premium-sched-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 243, 238, 0.06);
  min-height: 44px;
}
.premium-sched-row:last-child { border-bottom: 0; }

.premium-sched-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 22px;
}

.premium-sched-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #F4F3EE;
}

.premium-sched-range {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #A8A8A8;
  text-transform: uppercase;
}

.premium-sched-r {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  justify-self: end;
}

.premium-sched-day {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #7ED47A;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

.premium-sched-time {
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 600;
  color: #F4F3EE;
  letter-spacing: 0.02em;
}

.premium-sched-empty {
  color: #A8A8A8;
  font-size: 12px;
  font-style: italic;
}

/* ════════ News-Liste innerhalb der News-Card ════════ */
.premium-news {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.premium-news-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 243, 238, 0.06);
}
.premium-news-row:last-child { border-bottom: 0; }

.premium-news-d {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #7ED47A;
  white-space: nowrap;
}

.premium-news-t {
  font-size: 15px;
  color: #F4F3EE;
  font-weight: 500;
  line-height: 1.35;
}
.premium-news-row.is-hot .premium-news-t { font-weight: 600; }

.premium-news-pill {
  background: #7ED47A;
  color: #050706;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.premium-news-empty {
  color: #A8A8A8;
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

/* ════════ Kader-Header ════════ */
.kader-header {
  margin-top: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.kader-title {
  margin: 0;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-transform: uppercase;
  color: #F4F3EE;
}
.kader-title span { color: #7ED47A; font-style: italic; }

.kader-sub {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A8A8A8;
  font-weight: 700;
  padding-bottom: 10px;
}
.kader-sub-sep { color: #7ED47A; font-size: 14px; }

/* ════════ Kader-Grid (5 Spalten Desktop) ════════ */
.kader-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.kader-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(126, 212, 122, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.kader-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 212, 122, 0.32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.kader-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.85), rgba(126, 212, 122, 0.08));
  pointer-events: none;
}

/* erste Karte hervorgehoben — IDENTISCHE Struktur */
.kader-card.is-featured {
  border-color: rgba(126, 212, 122, 0.45);
  background: linear-gradient(180deg, rgba(126, 212, 122, 0.08), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 0 0 1px rgba(126, 212, 122, 0.18),
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(126, 212, 122, 0.12);
}
.kader-card.is-featured .kader-number { color: #7ED47A; }
.kader-card.is-featured::after {
  background: linear-gradient(90deg, rgba(126, 212, 122, 1), rgba(126, 212, 122, 0.2));
  height: 3px;
}

.kader-number {
  font-size: clamp(4.3rem, 6vw, 6.7rem);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #F4F3EE;
  font-variant-numeric: tabular-nums;
}

.kader-role {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #A8A8A8;
  font-weight: 700;
}

.kader-empty {
  margin-top: 42px;
  color: #A8A8A8;
  font-size: 14px;
  font-style: italic;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  .kader-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .premium-info-section { padding: 72px 20px 96px; }
  .premium-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .premium-card { min-height: 300px; padding: 32px 28px; }
  .kader-header { display: block; }
  .kader-header > * + * { margin-top: 18px; }
  .kader-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .kader-card { min-height: 220px; padding: 22px; }
}

@media (max-width: 520px) {
  .kader-grid { grid-template-columns: 1fr; }
  .premium-card { padding: 28px 24px; }
  .premium-news-row { grid-template-columns: 1fr; gap: 4px; }
  .premium-news-pill { justify-self: flex-start; margin-top: 4px; }
  .premium-sched-row { grid-template-columns: 1fr; gap: 6px; }
  .premium-sched-r { justify-self: flex-end; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-GALLERY-SECTION · MOMENTE + FOLG UNS
   ═══════════════════════════════════════════════════════════════════ */

.pgal-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 212, 122, 0.07), transparent 28%),
    radial-gradient(circle at 88% 65%, rgba(126, 212, 122, 0.05), transparent 30%),
    #050706;
  padding: 120px 48px 120px;
  color: #F4F3EE;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  isolation: isolate;
}

.pgal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(transparent 96%, rgba(244, 243, 238, 0.025) 96%),
    linear-gradient(90deg, transparent 96%, rgba(244, 243, 238, 0.025) 96%);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 0%, transparent 80%);
}

.pgal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ───────── Header mit Outline-Schrift ───────── */
.pgal-head {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
  padding: 0 8px;
}

.pgal-outline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 212, 122, 0.07);
  user-select: none;
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  transform: translateY(-6%);
}

.pgal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(126, 212, 122, 0.32);
  border-radius: 999px;
  background: rgba(126, 212, 122, 0.05);
}

.pgal-title {
  margin: 0 0 14px;
  font-size: clamp(5rem, 11vw, 11.5rem);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: #F4F3EE;
}
.pgal-title span { color: #7ED47A; font-style: italic; }

.pgal-lede {
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #A8A8A8;
  letter-spacing: 0.01em;
}

/* ───────── Stage (Hauptbild + optionale Thumbs) ───────── */
.pgal-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.pgal-stage:not(.is-single) { grid-template-columns: minmax(0, 1fr); }

.pgal-card {
  position: relative;
  margin: 0;
}

.pgal-card-main { max-width: 1100px; margin: 0 auto; width: 100%; }

.pgal-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(126, 212, 122, 0.28);
  box-shadow:
    0 0 0 1px rgba(126, 212, 122, 0.1),
    0 50px 130px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(126, 212, 122, 0.07);
  background: #0a0d0c;
  isolation: isolate;
}

.pgal-frame::after {
  /* dezenter grüner Schimmer am unteren Rand */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #7ED47A, transparent);
  opacity: 0.7;
  z-index: 3;
  pointer-events: none;
}

.pgal-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0d0c;
}

/* Mannschaftsfoto-Badge mit Kamera-Icon */
.pgal-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 9, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(126, 212, 122, 0.4);
  color: #F4F3EE;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.pgal-badge svg { color: #7ED47A; flex-shrink: 0; }

/* Eckdetails */
.pgal-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 4;
  pointer-events: none;
}
.pgal-corner-tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid #7ED47A;
  border-left: 2px solid #7ED47A;
  border-top-left-radius: 12px;
  opacity: 0.85;
}
.pgal-corner-br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid #7ED47A;
  border-right: 2px solid #7ED47A;
  border-bottom-right-radius: 12px;
  opacity: 0.85;
}

/* Optionale Thumb-Reihe (für > 1 Bild) */
.pgal-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.pgal-card-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(126, 212, 122, 0.16);
  background: #0a0d0c;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pgal-card-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 212, 122, 0.4);
}
.pgal-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pgal-thumb-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F4F3EE;
  background: rgba(7, 10, 9, 0.78);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 212, 122, 0.28);
}

.pgal-empty {
  text-align: center;
  color: #A8A8A8;
  font-size: 14px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   FOLG UNS · Social-Cards
   ═══════════════════════════════════════════════════════════════════ */
.psoc-block {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid rgba(244, 243, 238, 0.07);
}

.psoc-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 36px;
}

.psoc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
}
.psoc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ED47A;
  box-shadow: 0 0 12px rgba(126, 212, 122, 0.6);
}

.psoc-h {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #F4F3EE;
  text-transform: none;
}
.psoc-h span { color: #7ED47A; font-style: italic; }

.psoc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.psoc-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(126, 212, 122, 0.16);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.22s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.psoc-card::before {
  /* dezente Akzent-Linie links */
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #7ED47A, transparent);
  opacity: 0.6;
}

.psoc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(126, 212, 122, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

.psoc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 212, 122, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(126, 212, 122, 0.18);
}
.psoc-card:hover::after { opacity: 1; }
.psoc-card:hover .psoc-arrow { transform: translateX(4px); border-color: #7ED47A; color: #050706; background: #7ED47A; }

.psoc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(126, 212, 122, 0.08);
  border: 1px solid rgba(126, 212, 122, 0.22);
  color: #7ED47A;
  flex-shrink: 0;
}

.psoc-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.psoc-platform {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A8A8A8;
  font-weight: 700;
}
.psoc-handle {
  font-size: 17px;
  font-weight: 700;
  color: #F4F3EE;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.psoc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(126, 212, 122, 0.32);
  color: #7ED47A;
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .pgal-section { padding: 88px 24px 96px; }
  .pgal-head { margin-bottom: 48px; }
  .pgal-frame { border-radius: 20px; }
  .pgal-badge { left: 14px; bottom: 14px; padding: 7px 11px; font-size: 10.5px; }
  .pgal-corner { width: 22px; height: 22px; }
  .psoc-grid { grid-template-columns: 1fr; }
  .psoc-block { margin-top: 72px; padding-top: 44px; }
}

@media (max-width: 520px) {
  .pgal-section { padding: 72px 18px 80px; }
  .pgal-eyebrow { font-size: 10px; letter-spacing: 0.32em; padding: 5px 12px; }
  .pgal-frame { border-radius: 16px; }
  .pgal-corner-tl, .pgal-corner-br { width: 18px; height: 18px; }
  .psoc-card { padding: 20px 18px; gap: 14px; }
  .psoc-icon { width: 42px; height: 42px; }
  .psoc-handle { font-size: 15px; }
  .psoc-arrow { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-CTA · BEREIT? + UNTERSTÜTZT VON
   ═══════════════════════════════════════════════════════════════════ */

.pcta-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 212, 122, 0.10), transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(126, 212, 122, 0.06), transparent 35%),
    #050706;
  padding: 120px 48px 110px;
  color: #F4F3EE;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(244, 243, 238, 0.05);
}

.pcta-section::before {
  /* großes Outline-Wort im Hintergrund — sehr dezent */
  content: 'BEREIT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 22vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 212, 122, 0.05);
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-family: 'Anton', 'Bebas Neue', 'Inter', sans-serif;
}

.pcta-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.pcta-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* ─── Main CTA ─── */
.pcta-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 56px 56px 52px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(126, 212, 122, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(126, 212, 122, 0.28);
  box-shadow:
    0 0 0 1px rgba(126, 212, 122, 0.1),
    0 40px 110px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(126, 212, 122, 0.07);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pcta-main::after {
  /* grüner Bottom-Strip */
  content: '';
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7ED47A, transparent);
  pointer-events: none;
}

.pcta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
}
.pcta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ED47A;
  box-shadow: 0 0 14px rgba(126, 212, 122, 0.7);
}

.pcta-h {
  margin: 0;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #F4F3EE;
}

.pcta-sub {
  margin: 4px 0 0;
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.55;
  color: #A8A8A8;
  max-width: 540px;
}

.pcta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.pcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: 999px;
  background: #7ED47A;
  color: #050706;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(126, 212, 122, 0.4);
  box-shadow: 0 18px 50px rgba(126, 212, 122, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.22s ease;
}
.pcta-btn:hover {
  transform: translateY(-2px);
  background: #92e08e;
  box-shadow: 0 24px 60px rgba(126, 212, 122, 0.42);
}
.pcta-btn:hover svg { transform: translateX(3px); }
.pcta-btn svg { transition: transform 0.2s ease; }

.pcta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  background: transparent;
  color: #F4F3EE;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(244, 243, 238, 0.18);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.pcta-btn-ghost:hover {
  border-color: rgba(126, 212, 122, 0.5);
  color: #7ED47A;
  background: rgba(126, 212, 122, 0.06);
}
.pcta-btn-ghost svg { color: #7ED47A; }

/* ─── Side: Sponsoren ─── */
.pcta-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(244, 243, 238, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.pcta-side-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pcta-side-tag {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A8A8A8;
  font-weight: 700;
  white-space: nowrap;
}
.pcta-side-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.32), transparent);
}

.pcta-spon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pcta-spon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 243, 238, 0.06);
  padding: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.pcta-spon-tile:hover {
  border-color: rgba(126, 212, 122, 0.28);
  background: rgba(126, 212, 122, 0.05);
  transform: translateY(-2px);
}
.pcta-spon-tile img {
  max-width: 86%;
  max-height: 78%;
  object-fit: contain;
  filter: brightness(1.05) contrast(0.95);
  transition: filter 0.2s ease;
}
.pcta-spon-tile:hover img { filter: brightness(1.15) contrast(1); }

.pcta-spon-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4F3EE;
  text-align: center;
  line-height: 1.15;
  padding: 4px;
}

.pcta-spon-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ED47A;
  background: transparent;
  border: 1px solid rgba(126, 212, 122, 0.25);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.pcta-spon-more:hover {
  border-color: #7ED47A;
  background: rgba(126, 212, 122, 0.08);
  transform: translateX(2px);
}

.pcta-side-empty {
  margin: 0;
  font-size: 13px;
  color: #A8A8A8;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.pfoot {
  position: relative;
  background: #030505;
  color: #B6B6B6;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border-top: 1px solid rgba(244, 243, 238, 0.06);
}

.pfoot-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ED47A 30%, #7ED47A 70%, transparent);
  opacity: 0.45;
}

.pfoot-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 48px 32px;
}

.pfoot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px 32px;
  margin-bottom: 56px;
}

.pfoot-col { min-width: 0; }

.pfoot-brand .pfoot-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #F4F3EE;
  margin-bottom: 14px;
}
.pfoot-brand .pfoot-mark i {
  font-style: normal;
  color: #7ED47A;
  font-size: 22px;
  line-height: 0.6;
}
.pfoot-tag {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
}
.pfoot-org {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #A8A8A8;
  max-width: 320px;
}

.pfoot-h {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F3EE;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.pfoot-h::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: #7ED47A;
}

.pfoot-addr {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: #A8A8A8;
}

.pfoot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pfoot-links li,
.pfoot-links li a {
  font-size: 13px;
  line-height: 1.45;
  color: #A8A8A8;
  text-decoration: none;
  transition: color 0.18s ease;
  word-break: break-word;
}
.pfoot-links li a:hover { color: #7ED47A; }

.pfoot-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 243, 238, 0.06);
}

.pfoot-copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6F6F6F;
}

.pfoot-legal {
  text-align: center;
}
.pfoot-legal a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #A8A8A8;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 168, 168, 0.25);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.pfoot-legal a:hover { color: #7ED47A; border-color: #7ED47A; }

.pfoot-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 12px;
  color: #6F6F6F;
}
.pfoot-credit span[aria-hidden] { color: #7ED47A; opacity: 0.55; font-size: 10px; }
.pfoot-credit a {
  color: #F4F3EE;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(126, 212, 122, 0.4);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.pfoot-credit a:hover { color: #7ED47A; border-color: #7ED47A; }
.pfoot-heart {
  color: #7ED47A;
  display: inline-block;
  animation: pfoot-heartbeat 2.2s ease-in-out infinite;
}
@keyframes pfoot-heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.15); }
  20% { transform: scale(0.95); }
}

/* ─────── Responsive ─────── */
@media (max-width: 1100px) {
  .pcta-grid { grid-template-columns: 1fr; gap: 28px; }
  .pcta-main { padding: 44px 36px 40px; }
  .pfoot-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .pfoot-bottom { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .pfoot-credit { justify-content: center; }
}

@media (max-width: 700px) {
  .pcta-section { padding: 88px 24px 80px; }
  .pcta-main { padding: 36px 28px 32px; }
  .pcta-h { font-size: clamp(3.2rem, 12vw, 5.5rem); }
  .pcta-side { padding: 28px 24px 24px; }
  .pcta-spon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pfoot-container { padding: 56px 24px 28px; }
  .pfoot-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .pcta-actions { gap: 10px; }
  .pcta-btn { padding: 15px 22px; font-size: 14px; }
}

@media (max-width: 420px) {
  .pcta-section::before { font-size: 32vw; }
  .pcta-spon-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-HEADER · pnav
   ═══════════════════════════════════════════════════════════════════ */

.pnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 6, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(244, 243, 238, 0.06);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #F4F3EE;
}

.pnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 48px;
}

.pnav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.pnav-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(126, 212, 122, 0.08);
  padding: 4px;
  border: 1px solid rgba(126, 212, 122, 0.22);
}
.pnav-brand-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #F4F3EE;
}
.pnav-brand-l1 { color: #F4F3EE; }
.pnav-brand-sep { color: #7ED47A; font-size: 18px; line-height: 0.6; }
.pnav-brand-l2 { color: #F4F3EE; }

.pnav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pnav-links > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #C9C9C9;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.pnav-links > a:hover {
  color: #F4F3EE;
  background: rgba(244, 243, 238, 0.05);
}
.pnav-links > a.pnav-cta {
  margin-left: 10px;
  padding: 10px 18px;
  background: #7ED47A;
  color: #050706;
  font-weight: 800;
  letter-spacing: 0.04em;
  gap: 8px;
  border: 1px solid rgba(126, 212, 122, 0.55);
  box-shadow: 0 12px 36px rgba(126, 212, 122, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}
.pnav-links > a.pnav-cta:hover {
  background: #92e08e;
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(126, 212, 122, 0.4);
}

.pnav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 243, 238, 0.12);
  border-radius: 12px;
  background: rgba(244, 243, 238, 0.04);
  color: #F4F3EE;
  cursor: pointer;
}
.pnav-burger-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pnav-burger-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: #F4F3EE;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.pnav-burger-icon.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pnav-burger-icon.is-open span:nth-child(2) { opacity: 0; }
.pnav-burger-icon.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.pnav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  cursor: pointer;
}

@media (max-width: 960px) {
  .pnav-inner { padding: 12px 20px; }
  .pnav-burger { display: inline-flex; }
  .pnav-links {
    position: fixed;
    top: 64px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(5, 7, 6, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(244, 243, 238, 0.08);
    border-radius: 16px;
    min-width: 220px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    z-index: 101;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .pnav-links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .pnav-links > a { padding: 12px 14px; font-size: 14px; }
  .pnav-links > a.pnav-cta { margin-left: 0; margin-top: 4px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-HERO · phero
   ═══════════════════════════════════════════════════════════════════ */

.phero {
  position: relative;
  background:
    radial-gradient(circle at 18% 8%, rgba(126, 212, 122, 0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(126, 212, 122, 0.06), transparent 40%),
    #050706;
  color: #F4F3EE;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  isolation: isolate;
  padding: 64px 48px 80px;
}

.phero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 48px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.phero-bg-word {
  font-size: clamp(8rem, 22vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 212, 122, 0.07);
  white-space: nowrap;
  transform: translateX(-12%) rotate(-2deg);
}

.phero-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.phero-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 540px;
}

.phero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.phero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(126, 212, 122, 0.42);
  border-radius: 999px;
  background: rgba(126, 212, 122, 0.06);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
  align-self: flex-start;
}
.phero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ED47A;
  box-shadow: 0 0 12px rgba(126, 212, 122, 0.7);
  animation: phero-pulse 2.4s ease-in-out infinite;
}
@keyframes phero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.phero-h {
  margin: 0;
  font-size: clamp(3.6rem, 8.5vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  color: #F4F3EE;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phero-h-row { display: block; white-space: nowrap; }
.phero-h-mid {
  color: #7ED47A;
  font-style: italic;
  font-weight: 900;
}
.phero-h-last {
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.phero-sub {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.55;
  color: #C0C0C0;
  max-width: 520px;
}

.phero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.phero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.22s ease, border-color 0.2s ease, color 0.2s ease;
}
.phero-btn-primary {
  background: #7ED47A;
  color: #050706;
  border-color: rgba(126, 212, 122, 0.55);
  box-shadow: 0 18px 50px rgba(126, 212, 122, 0.32);
}
.phero-btn-primary:hover {
  transform: translateY(-2px);
  background: #92e08e;
  box-shadow: 0 22px 60px rgba(126, 212, 122, 0.42);
}
.phero-btn-primary:hover svg { transform: translateX(3px); }
.phero-btn-primary svg { transition: transform 0.18s ease; }

.phero-btn-ghost {
  background: transparent;
  color: #F4F3EE;
  border-color: rgba(244, 243, 238, 0.18);
}
.phero-btn-ghost svg { color: #7ED47A; }
.phero-btn-ghost:hover {
  border-color: rgba(126, 212, 122, 0.5);
  color: #7ED47A;
  background: rgba(126, 212, 122, 0.06);
}

/* ─── Hero-Photo (Visual rechts) ─── */
.phero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(126, 212, 122, 0.28);
  box-shadow:
    0 0 0 1px rgba(126, 212, 122, 0.1),
    0 50px 130px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(126, 212, 122, 0.08);
  background: #0a0d0c;
  isolation: isolate;
}
.phero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
}
.phero-photo-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}
.phero-photo-corner-tl {
  top: 16px; left: 16px;
  border-top: 2px solid #7ED47A;
  border-left: 2px solid #7ED47A;
  border-top-left-radius: 12px;
  opacity: 0.85;
}
.phero-photo-corner-br {
  bottom: 16px; right: 16px;
  border-bottom: 2px solid #7ED47A;
  border-right: 2px solid #7ED47A;
  border-bottom-right-radius: 12px;
  opacity: 0.85;
}

/* ─── Werte (Für alle / Mit Herz / Auf Augenhöhe) ─── */
.phero-values {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.phero-value {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(126, 212, 122, 0.16);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.22s ease;
}
.phero-value::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.85), transparent);
  pointer-events: none;
}
.phero-value:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 212, 122, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.phero-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(126, 212, 122, 0.08);
  border: 1px solid rgba(126, 212, 122, 0.22);
  color: #7ED47A;
  flex-shrink: 0;
}
.phero-value-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.phero-value-h {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F4F3EE;
}
.phero-value-p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #A8A8A8;
}

/* ─── slorify-Credit im Hero ─── */
.phero-by-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
.phero-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(244, 243, 238, 0.04);
  border: 1px solid rgba(244, 243, 238, 0.08);
  font-size: 12px;
  color: #A8A8A8;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.phero-by:hover { border-color: rgba(126, 212, 122, 0.32); color: #F4F3EE; }
.phero-by strong { color: #7ED47A; font-weight: 800; }
.phero-by-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7ED47A;
  color: #050706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .phero { padding: 56px 24px 72px; }
  .phero-cols { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .phero-visual-frame { max-width: 480px; aspect-ratio: 16 / 11; margin-inline: auto; }
  .phero-values { grid-template-columns: 1fr; gap: 12px; margin-top: 44px; }
  .phero-bg-word { transform: translate(-30%, 30%) rotate(-2deg); opacity: 0.7; }
}
@media (max-width: 600px) {
  .phero { padding: 40px 18px 56px; }
  .phero-h { font-size: clamp(2.6rem, 13vw, 5rem); }
  .phero-tag { font-size: 10px; letter-spacing: 0.22em; }
  .phero-actions .phero-btn { padding: 14px 22px; font-size: 13px; }
  .phero-by { margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM-VALUE-STRIP · pstrip
   ═══════════════════════════════════════════════════════════════════ */

.pstrip {
  position: relative;
  background: linear-gradient(180deg, #050706, #08100d);
  border-block: 1px solid rgba(126, 212, 122, 0.12);
  padding: 28px 0;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  /* sanftes Edge-Fade über mask, damit Wörter nahtlos rein-/rausgleiten */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.pstrip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: pstrip-scroll 32s linear infinite;
  will-change: transform;
}
.pstrip:hover .pstrip-track { animation-play-state: paused; }

.pstrip-set {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-right: clamp(28px, 5vw, 64px);
  flex-shrink: 0;
}

@keyframes pstrip-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.pstrip-word {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F4F3EE;
  white-space: nowrap;
  background: linear-gradient(180deg, #F4F3EE 60%, #A8A8A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.pstrip-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7ED47A;
  filter: drop-shadow(0 0 8px rgba(126, 212, 122, 0.55));
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .pstrip-word { font-size: 1.1rem; }
  .pstrip-sep svg { width: 11px; height: 11px; }
  .pstrip-set { gap: 22px; padding-right: 22px; }
  .pstrip-track { animation-duration: 24s; }
}

@media (prefers-reduced-motion: reduce) {
  .pstrip-track { animation: none; }
  .pstrip { -webkit-mask-image: none; mask-image: none; }
  .pstrip-track { width: 100%; justify-content: center; flex-wrap: wrap; gap: 22px; }
  .pstrip-set:nth-child(2) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WAPPEN-UPGRADE für pnav-logo (im Header)
   ═══════════════════════════════════════════════════════════════════ */

.pnav-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(126, 212, 122, 0.18), rgba(126, 212, 122, 0.04) 65%);
  border: 1px solid rgba(126, 212, 122, 0.4);
  box-shadow:
    0 0 0 4px rgba(126, 212, 122, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(126, 212, 122, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
}
.pnav-brand:hover .pnav-logo-wrap {
  transform: rotate(-4deg) scale(1.04);
  border-color: rgba(126, 212, 122, 0.65);
  box-shadow:
    0 0 0 4px rgba(126, 212, 122, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(126, 212, 122, 0.32);
}
.pnav-logo {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Hauptseite: Wenn pnav-brand kein wrap-element hat (Hauptseite hatte direktes img),
   stylen wir den direct-child img genauso, damit beides konsistent ist */
.pnav-brand > .pnav-logo:not(.pnav-logo-wrap *) {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  padding: 4px !important;
  border: 1px solid rgba(126, 212, 122, 0.4) !important;
  background: radial-gradient(circle at 30% 30%, rgba(126, 212, 122, 0.18), rgba(126, 212, 122, 0.04) 65%) !important;
  box-shadow:
    0 0 0 4px rgba(126, 212, 122, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(126, 212, 122, 0.18) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   SPONSORING-PAGE · psp-*
   ═══════════════════════════════════════════════════════════════════ */

.psp-page {
  background: #050706;
  color: #F4F3EE;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

/* ───────── psp-hero · Premium · kompakt + performant ───────── */
.psp-hero {
  position: relative;
  padding: 92px 48px 84px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(126, 212, 122, 0.15), transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(126, 212, 122, 0.07), transparent 70%),
    /* statische Spotlights direkt im Background — kein blur-filter, kein animation */
    radial-gradient(circle at 8% 12%, rgba(126, 212, 122, 0.18), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(126, 212, 122, 0.10), transparent 28%),
    linear-gradient(180deg, #050706 0%, #07100c 60%, #050706 100%);
  border-bottom: 1px solid rgba(244, 243, 238, 0.05);
}

/* ─── Atmosphäre-Layer (nur SVG + Outline-Wort, alles statisch) ─── */
.psp-hero-atmos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.psp-hero-pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 0%, transparent 80%);
}
.psp-hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 212, 122, 0.06);
  white-space: nowrap;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

/* ─── Inner Stack ─── */
.psp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

/* ─── Wappen-Bühne ─── */
.psp-crest-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.psp-crest-base {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(126, 212, 122, 0.32), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ─── Wappen (kleiner, weniger Layer) ─── */
.psp-crest {
  position: relative;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
/* Glow ist statisch (kein scale-animation) */
.psp-crest-glow {
  position: absolute;
  inset: -22px;
  background: radial-gradient(circle, rgba(126, 212, 122, 0.32), transparent 65%);
  z-index: -2;
  pointer-events: none;
}
.psp-crest-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 212, 122, 0.5);
  z-index: -1;
}
/* nur ein einziger animierter Ring, will-change nutzt GPU-Layer */
.psp-crest-ring-2 {
  inset: -12px;
  border-color: rgba(126, 212, 122, 0.22);
  border-style: dashed;
  animation: psp-ring-spin 36s linear infinite;
  will-change: transform;
}
@keyframes psp-ring-spin { to { transform: rotate(360deg); } }

.psp-crest-img-frame {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(126, 212, 122, 0.26), rgba(126, 212, 122, 0.04) 70%),
    #0a0d0c;
  border: 1px solid rgba(126, 212, 122, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 5px rgba(5, 7, 6, 0.6),
    inset 0 0 0 6px rgba(126, 212, 122, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(126, 212, 122, 0.18);
  overflow: hidden;
}
.psp-crest-img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}
.psp-crest-spark {
  position: absolute;
  top: -2px;
  right: 2px;
  color: #7ED47A;
  filter: drop-shadow(0 0 8px rgba(126, 212, 122, 0.7));
  z-index: 3;
}

/* ─── Eyebrow ─── */
.psp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px;
  border: 1px solid rgba(126, 212, 122, 0.45);
  border-radius: 999px;
  background: rgba(126, 212, 122, 0.06);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7ED47A;
  font-weight: 700;
}
.psp-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ED47A;
  box-shadow: 0 0 10px rgba(126, 212, 122, 0.7);
}

/* ─── Headline (etwas kleiner) ─── */
.psp-hero-h {
  margin: 2px 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #F4F3EE;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-wrap: balance;
}
.psp-hero-h-row { display: block; position: relative; }
.psp-hero-h-row.is-accent {
  color: #7ED47A;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.psp-hero-h-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ED47A;
  box-shadow: 0 0 12px rgba(126, 212, 122, 0.8);
  flex-shrink: 0;
}

/* ─── Lede ─── */
.psp-hero-lede {
  margin: 4px auto 0;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.6;
  color: #B6B6B6;
}

/* ─── CTA (kompakter) ─── */
.psp-hero-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 0 0 0 24px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, #92e08e, #7ED47A);
  color: #050706;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(126, 212, 122, 0.7);
  box-shadow:
    0 14px 32px rgba(126, 212, 122, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.psp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(126, 212, 122, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.psp-hero-cta-label { padding-right: 16px; }
.psp-hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: -1px -1px -1px 0;
  border-radius: 50%;
  background: #050706;
  color: #7ED47A;
  border: 1px solid rgba(126, 212, 122, 0.45);
}
.psp-hero-cta:hover .psp-hero-cta-arrow svg { transform: translateY(2px); }
.psp-hero-cta-arrow svg { transition: transform 0.2s ease; }

/* ─── Bottom Divider ─── */
.psp-hero-divider {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 212, 122, 0.5), transparent);
  pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 760px) {
  .psp-hero { padding: 68px 22px 64px; }
  .psp-crest { width: 144px; height: 144px; }
  .psp-crest-img-frame { width: 120px; height: 120px; }
  .psp-crest-base { width: 170px; }
  .psp-hero-h { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .psp-hero-eyebrow { letter-spacing: 0.24em; font-size: 10px; padding: 6px 13px; }
  .psp-hero-cta { font-size: 11.5px; height: 46px; padding-left: 18px; }
  .psp-hero-cta-arrow { width: 46px; height: 46px; }
  .psp-hero-bg-text { font-size: 32vw; }
  .psp-hero-divider { left: 6%; right: 6%; }
}
@media (max-width: 460px) {
  .psp-hero-h-row.is-accent { gap: 10px; }
  .psp-hero-h-mark { width: 7px; height: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .psp-crest-ring-2 { animation: none; }
}

/* ───────── Main + Sections ───────── */
.psp-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 88px 48px 80px;
  position: relative;
}

.psp-section {
  margin-bottom: 88px;
}
.psp-section:last-of-type { margin-bottom: 0; }

.psp-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.psp-section-tag {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A8A8A8;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid rgba(244, 243, 238, 0.1);
  border-radius: 999px;
  background: rgba(244, 243, 238, 0.04);
}
.psp-section-h {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #F4F3EE;
  text-transform: none;
}
.psp-section-h span { color: #7ED47A; font-style: italic; }
.psp-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.5), transparent);
  min-width: 60px;
}

/* ───────── Grids ───────── */
.psp-grid { display: grid; gap: 22px; }
.psp-grid-premium   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.psp-grid-partner   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.psp-grid-supporter { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ───────── Card ───────── */
.psp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(126, 212, 122, 0.16);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.22s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.psp-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 212, 122, 0.85), rgba(126, 212, 122, 0.08));
  pointer-events: none;
}
.psp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 212, 122, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(126, 212, 122, 0.18);
}
.psp-card-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.psp-card-corner-tl {
  top: 12px; left: 12px;
  border-top: 1.5px solid #7ED47A;
  border-left: 1.5px solid #7ED47A;
  border-top-left-radius: 8px;
}
.psp-card-corner-br {
  bottom: 12px; right: 12px;
  border-bottom: 1.5px solid #7ED47A;
  border-right: 1.5px solid #7ED47A;
  border-bottom-right-radius: 8px;
}
.psp-card:hover .psp-card-corner { opacity: 1; }

.psp-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 243, 238, 0.07);
  border-radius: 14px;
  overflow: hidden;
}
.psp-card-logo img {
  max-width: 80%;
  max-height: 75%;
  object-fit: contain;
  filter: brightness(1.05);
}
.psp-card-logo-fallback {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(244, 243, 238, 0.85);
}

/* card-Größen */
.psp-card-lg .psp-card-logo { aspect-ratio: 16/9; min-height: 200px; }
.psp-card-md .psp-card-logo { aspect-ratio: 16/9; min-height: 140px; }
.psp-card-sm .psp-card-logo { aspect-ratio: 16/9; min-height: 100px; }
.psp-card-sm { padding: 22px; gap: 14px; }
.psp-card-sm .psp-card-logo-fallback { font-size: 26px; }

.psp-card-meta { display: flex; flex-direction: column; gap: 8px; }
.psp-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #F4F3EE;
  letter-spacing: -0.01em;
}
.psp-card-sm .psp-card-name { font-size: 14.5px; }
.psp-card-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #A8A8A8;
}
.psp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ED47A;
  margin-top: 4px;
}
.psp-card-link svg { transition: transform 0.18s ease; }
.psp-card:hover .psp-card-link svg { transform: translateX(3px); }

/* ───────── Empty-State ───────── */
.psp-empty { padding: 32px 0 0; }
.psp-empty-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border-radius: 22px;
  border: 1px dashed rgba(126, 212, 122, 0.32);
  background: rgba(255, 255, 255, 0.02);
}
.psp-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(126, 212, 122, 0.08);
  border: 1px solid rgba(126, 212, 122, 0.32);
  color: #7ED47A;
  margin-bottom: 18px;
}
.psp-empty-h { margin: 0 0 8px; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.psp-empty-card p { margin: 0; color: #A8A8A8; font-size: 14px; line-height: 1.55; }

/* ───────── CTA ───────── */
.psp-cta {
  margin-top: 72px;
  padding: 64px 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 212, 122, 0.16), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(126, 212, 122, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(126, 212, 122, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(126, 212, 122, 0.26);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.psp-cta::after {
  content: '';
  position: absolute;
  left: 32px; right: 32px; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7ED47A, transparent);
  pointer-events: none;
}
.psp-cta-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.psp-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: #7ED47A; font-weight: 700;
}
.psp-cta-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7ED47A;
  box-shadow: 0 0 14px rgba(126, 212, 122, 0.7);
}
.psp-cta-h {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1; letter-spacing: -0.04em;
  font-weight: 900; color: #F4F3EE;
}
.psp-cta-h span { color: #7ED47A; font-style: italic; }
.psp-cta-text {
  margin: 0; max-width: 560px; font-size: 15.5px; line-height: 1.6; color: #B6B6B6;
}
.psp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.psp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 28px; border-radius: 999px;
  background: #7ED47A; color: #050706;
  font-weight: 800; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(126, 212, 122, 0.55);
  box-shadow: 0 18px 50px rgba(126, 212, 122, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.22s ease;
}
.psp-cta-btn:hover { transform: translateY(-2px); background: #92e08e; box-shadow: 0 24px 60px rgba(126, 212, 122, 0.42); }
.psp-cta-btn:hover svg { transform: translateX(3px); }
.psp-cta-btn svg { transition: transform 0.2s ease; }

.psp-cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px; border-radius: 999px;
  background: transparent; color: #F4F3EE; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border: 1px solid rgba(244, 243, 238, 0.18);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.psp-cta-btn-ghost:hover { border-color: rgba(126, 212, 122, 0.5); color: #7ED47A; background: rgba(126, 212, 122, 0.06); }

/* ───────── Responsive ───────── */
@media (max-width: 1100px) {
  .psp-grid-premium   { grid-template-columns: 1fr; }
  .psp-grid-partner   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psp-grid-supporter { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .psp-hero { padding: 80px 22px 70px; }
  .psp-crest { width: 168px; height: 168px; }
  .psp-crest-img-frame { width: 140px; height: 140px; }
  .psp-main { padding: 64px 22px 56px; }
  .psp-section { margin-bottom: 64px; }
  .psp-section-head { gap: 12px; }
  .psp-section-line { display: none; }
  .psp-grid-partner   { grid-template-columns: 1fr; }
  .psp-grid-supporter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psp-cta { padding: 44px 28px; }
  .psp-card-lg .psp-card-logo { min-height: 160px; }
}
@media (max-width: 460px) {
  .psp-grid-supporter { grid-template-columns: 1fr; }
  .psp-cta-btn { padding: 15px 22px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════
   KADER · Avatar-Variante (wenn p.image vorhanden)
   ═══════════════════════════════════════════════════════════════════ */
.kader-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.kader-name {
  font-size: 14px;
  font-weight: 700;
  color: #F4F3EE;
  letter-spacing: -0.005em;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kader-card.has-img {
  padding: 22px 22px 22px;
  gap: 20px;
}
.kader-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0d0c;
  border: 1px solid rgba(126, 212, 122, 0.18);
  isolation: isolate;
}
.kader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.kader-card.has-img:hover .kader-avatar img { transform: scale(1.04); }
.kader-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 6, 0.85));
  pointer-events: none;
}
.kader-avatar-num {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #F4F3EE;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.kader-card.is-featured.has-img .kader-avatar-num { color: #7ED47A; }
.kader-card.is-featured.has-img .kader-avatar { border-color: rgba(126, 212, 122, 0.4); }

@media (max-width: 800px) {
  .kader-card.has-img { padding: 18px 18px; gap: 14px; }
  .kader-avatar { aspect-ratio: 1 / 1; }
}

/* ═══════════════════════════════════════════════════════════════════
   GALERIE · Thumb-Rail Overflow + Lightbox
   ═══════════════════════════════════════════════════════════════════ */
.pgal-card-main {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.pgal-card-main:hover { transform: translateY(-2px); }
.pgal-card-main:focus-visible { outline: 2px solid #7ED47A; outline-offset: 4px; }

.pgal-card-thumb {
  cursor: zoom-in;
}
.pgal-card-thumb:focus-visible { outline: 2px solid #7ED47A; outline-offset: 3px; }

/* +N-Overflow-Tile */
.pgal-card-thumb.is-overflow img { filter: brightness(0.4) blur(1px); }
.pgal-thumb-overflow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #F4F3EE;
  background: rgba(5, 7, 6, 0.4);
  text-shadow: 0 0 20px rgba(126, 212, 122, 0.5);
  z-index: 2;
}
.pgal-card-thumb.is-overflow:hover .pgal-thumb-overflow {
  background: rgba(126, 212, 122, 0.18);
  color: #7ED47A;
}

/* ─── Lightbox-Modal ─── */
.pgal-lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: pgal-lb-fade 0.18s ease-out;
}
@keyframes pgal-lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pgal-lb-frame {
  position: relative;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(126, 212, 122, 0.32);
  box-shadow:
    0 0 0 1px rgba(126, 212, 122, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(126, 212, 122, 0.18);
  background: #0a0d0c;
  animation: pgal-lb-zoom 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes pgal-lb-zoom {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.pgal-lb-frame img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pgal-lb-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  background: linear-gradient(0deg, rgba(5, 7, 6, 0.9), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #F4F3EE;
  letter-spacing: 0.02em;
}
.pgal-lb-counter {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(126, 212, 122, 0.14);
  border: 1px solid rgba(126, 212, 122, 0.32);
  color: #7ED47A;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}

.pgal-lb-x {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 243, 238, 0.06);
  border: 1px solid rgba(244, 243, 238, 0.14);
  color: #F4F3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  z-index: 1001;
}
.pgal-lb-x:hover {
  background: rgba(126, 212, 122, 0.12);
  border-color: rgba(126, 212, 122, 0.4);
  transform: rotate(90deg);
}

.pgal-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 243, 238, 0.06);
  border: 1px solid rgba(244, 243, 238, 0.14);
  color: #F4F3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  z-index: 1001;
}
.pgal-lb-prev { left: 20px; }
.pgal-lb-next { right: 20px; }
.pgal-lb-nav:hover {
  background: rgba(126, 212, 122, 0.16);
  border-color: rgba(126, 212, 122, 0.45);
}
.pgal-lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.pgal-lb-next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 600px) {
  .pgal-lb { padding: 0; }
  .pgal-lb-frame { border-radius: 0; max-width: 100vw; max-height: 100vh; border: 0; }
  .pgal-lb-frame img { max-height: 100vh; }
  .pgal-lb-x { top: 12px; right: 12px; width: 42px; height: 42px; }
  .pgal-lb-nav { width: 46px; height: 46px; }
  .pgal-lb-prev { left: 8px; }
  .pgal-lb-next { right: 8px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Galerie · "Mehr Bilder" CTA (statt Thumb-Rail)
   ═══════════════════════════════════════════════════════════════════ */
.pgal-more {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 540px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(126, 212, 122, 0.28);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease;
}
.pgal-more:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 212, 122, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(126, 212, 122, 0.2);
}
.pgal-more:hover .pgal-more-arrow { background: #7ED47A; color: #050706; transform: translateX(3px); }

.pgal-more-stack {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 44px;
}
.pgal-more-tile {
  position: absolute;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(244, 243, 238, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.pgal-more-tile-0 { left: 0;  top: 0;   width: 38px; height: 38px; transform: rotate(-6deg); z-index: 3; }
.pgal-more-tile-1 { left: 14px; top: 4px; width: 38px; height: 38px; transform: rotate(2deg); z-index: 2; opacity: 0.85; }
.pgal-more-tile-2 { left: 26px; top: 0;   width: 38px; height: 38px; transform: rotate(8deg); z-index: 1; opacity: 0.65; }

.pgal-more-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.pgal-more-count {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #7ED47A;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  line-height: 1;
}
.pgal-more-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pgal-more-label > span {
  font-size: 14px;
  font-weight: 700;
  color: #F4F3EE;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.pgal-more-label small {
  font-size: 11px;
  color: #A8A8A8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.pgal-more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(126, 212, 122, 0.1);
  border: 1px solid rgba(126, 212, 122, 0.32);
  color: #7ED47A;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (max-width: 540px) {
  .pgal-more { gap: 12px; padding: 12px 14px 12px 12px; }
  .pgal-more-stack { width: 54px; height: 40px; }
  .pgal-more-tile-0, .pgal-more-tile-1, .pgal-more-tile-2 { width: 32px; height: 32px; }
  .pgal-more-tile-1 { left: 12px; }
  .pgal-more-tile-2 { left: 22px; }
  .pgal-more-text { gap: 10px; }
  .pgal-more-count { font-size: 22px; }
  .pgal-more-label > span { font-size: 13px; }
  .pgal-more-label small { font-size: 10px; }
  .pgal-more-arrow { width: 36px; height: 36px; }
}

/* ─── Slorify Footer-Sub-Note ─── */
.pfoot-credit { flex-wrap: wrap; align-items: flex-start; }
.pfoot-credit-sub {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6F6F6F;
  line-height: 1.55;
  font-weight: 400;
}
.pfoot-credit-sub a {
  color: #A8A8A8;
  border-bottom: 1px solid rgba(168, 168, 168, 0.25);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.pfoot-credit-sub a:hover { color: #7ED47A; border-color: #7ED47A; }
@media (max-width: 700px) {
  .pfoot-credit { flex-direction: column; gap: 6px; }
  .pfoot-credit-sub { text-align: center; }
}

/* ─── Slorify Footer-Sub-Note ─── */
.pfoot-credit { flex-wrap: wrap; align-items: flex-start; }
.pfoot-credit-sub {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6F6F6F;
  line-height: 1.55;
  font-weight: 400;
}
.pfoot-credit-sub a {
  color: #A8A8A8;
  border-bottom: 1px solid rgba(168, 168, 168, 0.25);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.pfoot-credit-sub a:hover { color: #7ED47A; border-color: #7ED47A; }
@media (max-width: 700px) {
  .pfoot-credit { flex-direction: column; gap: 6px; }
  .pfoot-credit-sub { text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   Schedule V2 — Plätze · Zeiten · Los (mit Venue/Kategorie-Parser)
   ════════════════════════════════════════════════════════════════ */
.premium-sched-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.premium-sched-season {
  border-left: 2px solid rgba(126, 212, 122, 0.45);
  padding-left: 18px;
  position: relative;
}
.premium-sched-season.is-winter {
  border-left-color: rgba(122, 175, 212, 0.45);
}

.premium-sched-season-h {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.premium-sched-season-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4F3EE;
}
.premium-sched-season.is-winter .premium-sched-season-name {
  color: #C7E1F4;
}
.premium-sched-season.is-sommer .premium-sched-season-name {
  color: #C7F4C5;
}
.premium-sched-season-range {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: #888;
  text-transform: uppercase;
}

.premium-sched-list-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.premium-sched-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.premium-sched-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(126, 212, 122, 0.18);
  transform: translateX(2px);
}
.premium-sched-season.is-winter .premium-sched-item:hover {
  border-color: rgba(122, 175, 212, 0.20);
}

.premium-sched-day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 6px;
  background: rgba(126, 212, 122, 0.12);
  color: #7ED47A;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  border: 1px solid rgba(126, 212, 122, 0.20);
}
.premium-sched-season.is-winter .premium-sched-day-pill {
  background: rgba(122, 175, 212, 0.12);
  color: #7AAFD4;
  border-color: rgba(122, 175, 212, 0.20);
}

.premium-sched-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.premium-sched-time-v2 {
  font-variant-numeric: tabular-nums;
  font-size: 15.5px;
  font-weight: 700;
  color: #F4F3EE;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.premium-sched-venue {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #A8A8A8;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.premium-sched-venue svg {
  flex: 0 0 11px;
  opacity: 0.75;
}

.premium-sched-empty-v2 {
  color: #888;
  font-size: 12.5px;
  font-style: italic;
  padding: 8px 0 0;
}

@media (max-width: 600px) {
  .premium-sched-item { grid-template-columns: 48px 1fr; gap: 12px; padding: 9px 10px; }
  .premium-sched-day-pill { height: 32px; font-size: 12px; }
  .premium-sched-time-v2 { font-size: 14.5px; }
  .premium-sched-venue { font-size: 10.5px; }
}

/* Schedule V2: Sportart-Pill in der Body-Line */
.premium-sched-line-1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-sched-sport {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 7px 3px;
  border-radius: 4px;
  line-height: 1.1;
  white-space: nowrap;
}
.premium-sched-sport.is-default {
  background: rgba(244, 243, 238, 0.06);
  color: rgba(244, 243, 238, 0.55);
  border: 1px solid rgba(244, 243, 238, 0.08);
}
.premium-sched-sport.is-special {
  background: rgba(255, 200, 120, 0.10);
  color: #F4C988;
  border: 1px solid rgba(255, 200, 120, 0.22);
}
.premium-sched-season.is-winter .premium-sched-sport.is-special {
  background: rgba(168, 200, 244, 0.10);
  color: #B4D0F0;
  border-color: rgba(168, 200, 244, 0.22);
}

/* News V2: strukturierte Card mit Datum/Zeit · Titel · Ort · Note */
.premium-news-row.v2 {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 14px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.premium-news-row.v2:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
}
.premium-news-row.v2.is-hot {
  background: rgba(126, 212, 122, 0.07);
  border-color: rgba(126, 212, 122, 0.22);
}

.premium-news-date-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding-top: 1px;
}
.premium-news-row.v2 .premium-news-d {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #F4F3EE;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.premium-news-time {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.premium-news-body-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.premium-news-row.v2 .premium-news-t {
  font-size: 14.5px;
  font-weight: 600;
  color: #F4F3EE;
  line-height: 1.35;
}
.premium-news-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #A8A8A8;
  line-height: 1.2;
}
.premium-news-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.premium-news-loc svg { opacity: 0.7; }
.premium-news-sep { color: #555; }
.premium-news-note {
  font-style: italic;
  color: #9A9A9A;
}

@media (max-width: 600px) {
  .premium-news-row.v2 { grid-template-columns: 64px 1fr; gap: 12px; padding: 12px 10px; }
  .premium-news-row.v2 .premium-news-pill { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .premium-news-row.v2 .premium-news-d { font-size: 13px; }
  .premium-news-row.v2 .premium-news-t { font-size: 13.5px; }
}

/* ════════ Kader V2: einheitliches Layout, Staff-Code, einstellbare Bild-Position ════════ */
.kader-card {
  display: flex;
  flex-direction: column;
}
.kader-card.has-img .kader-avatar img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
/* object-position wird inline gesetzt aus imageX/imageY */

/* Staff-Code-Pill (TR / CT / GT / AL) statt Trikot-Nummer */
.kader-avatar-num.is-code,
.kader-number.is-code {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem) !important;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(126,212,122,0.95), rgba(126,212,122,0.65));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kader-card.is-staff {
  border-color: rgba(244, 200, 136, 0.22);
}
.kader-card.is-staff::after {
  background: linear-gradient(90deg, rgba(244, 200, 136, 0.95), rgba(244, 200, 136, 0.2)) !important;
}
.kader-card.is-staff .kader-avatar-num.is-code,
.kader-card.is-staff .kader-number.is-code {
  background: linear-gradient(135deg, rgba(244, 200, 136, 0.95), rgba(244, 200, 136, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
}
.kader-card.is-featured.is-staff {
  border-color: rgba(244, 200, 136, 0.45);
  background: linear-gradient(180deg, rgba(244, 200, 136, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 0 0 1px rgba(244, 200, 136, 0.18),
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(244, 200, 136, 0.12);
}

/* Konsistente Card-Höhe + Role-Text mit max 2 Zeilen */
.kader-meta {
  min-height: 56px;
}
.kader-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14.5px !important;
}
.kader-role {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.75rem !important;
  line-height: 1.35;
  letter-spacing: 0.12em;
  min-height: 28px;
}
