/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: visible;
  background: transparent;
  padding: clamp(28px, 4vw, 50px) var(--pad) clamp(56px, 7vw, 92px);
}
.hero::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 150px;
  background:
    linear-gradient(180deg, rgba(11,14,20,.84) 0%, rgba(11,14,20,.3) 46%, rgba(11,14,20,0) 100%);
  pointer-events: none;
  z-index: 1;
}
/* grid pattern — fades out at bottom */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,45,232,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,45,232,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
.hero-deco-candle {
  position: absolute;
  bottom: 40px;
  right: 8%;
  width: 320px;
  height: 260px;
  opacity: .06;
  pointer-events: none;
}
.hero-deco-bars {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: .04;
  pointer-events: none;
}
.hero-deco-bars span {
  display: block;
  width: 14px;
  background: #fff;
  border-radius: 2px 2px 0 0;
}
.hero-glow-or {
  position: absolute; top: -200px; right: -140px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,102,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-bl {
  position: absolute; bottom: -150px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(43,45,232,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-center {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(43,45,232,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-chart {
  position: absolute; bottom: 0; right: 0;
  width: 52%; max-width: 680px;
  opacity: .04; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,45,232,.15);
  border: 1px solid rgba(87,89,240,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #8b8df5;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: #8b8df5; border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.3; transform:scale(.7); }
}
.hero h1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.12;
  color: #fff;
  max-width: 780px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px;
  font-size: 16px; font-weight: 600;
  border-radius: 7px; text-decoration: none;
  box-shadow: 0 5px 24px var(--orange-glow);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-hero-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,102,0,.55);
}
.btn-hero-primary::after { content: '\2192'; margin-left: 2px; }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.5);
  padding: 14px 28px;
  font-size: 16px; font-weight: 500;
  border-radius: 7px; border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: all .2s;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.hero-pill  { animation: fadeUp .5s .05s both; }
.hero h1    { animation: fadeUp .5s .15s both; }
.hero-sub   { animation: fadeUp .5s .25s both; }
.hero-ctas  { animation: fadeUp .5s .35s both; }

/* ─── STATS ─────────────────────────────────────────────────── */
.stats {
  position: relative;
  overflow: visible;
  padding: 34px var(--pad) 36px;
  background: transparent;
}
.stats-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  position: relative;
  padding: 30px 26px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #141828 0%, #181e30 100%);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,102,0,.95) 0%, rgba(69,71,238,.95) 100%);
}
.stat::after {
  content: '';
  position: absolute;
  top: -34px;
  right: -18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,45,232,.18) 0%, rgba(43,45,232,0) 72%);
  pointer-events: none;
}
.stat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(87,89,240,.24);
  background: rgba(43,45,232,.14);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -.02em;
  color: #fff;
  position: relative;
}
.stat-num span { color: #fff; }
.stat-lbl {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: #fff;
}
.stat-sub {
  font-size: 15px;
  color: rgba(255,255,255,.66);
  margin-top: 10px;
  line-height: 1.65;
}

/* ─── MISSION ────────────────────────────────────────────────── */
.section-mission {
  background: transparent;
}
.mission-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 10px;
}
.mission-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-height: 280px;
  background:
    radial-gradient(circle at top right, rgba(255,102,0,.28), transparent 32%),
    linear-gradient(160deg, var(--navy) 0%, #17213b 45%, #0f1320 100%);
}
.mission-visual {
  position: relative;
  width: 100%;
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  z-index: 1;
  color: #fff;
}
.mission-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
  pointer-events: none;
}
.mission-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 116px;
}
.mission-bars span {
  display: block;
  width: 34px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(69,71,238,.48) 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.mission-visual-copy { max-width: 300px; }
.mission-visual-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.mission-visual-copy span {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'DM Serif Display', serif;
}
.mission-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,14,20,.18) 0%, transparent 70%);
  pointer-events: none;
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 28px;
}
.mission-pull {
  position: relative;
  padding: 36px;
  background: linear-gradient(180deg, #141828 0%, #181e30 100%);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}
.mission-pull::before {
  display: none;
}
.mission-pull::after {
  content: '';
  position: absolute;
  top: -34px;
  right: -18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,45,232,.18) 0%, rgba(43,45,232,0) 72%);
  pointer-events: none;
}
.mission-pull blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-style: italic;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.mission-pull cite {
  display: block;
  margin-top: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-style: normal;
  color: rgba(255,255,255,.66);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
}
.mission-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}
.mission-right p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #374151;
}
.btn-mission-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 4px 18px var(--orange-glow);
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: 6px;
  align-self: center;
}
.btn-mission-cta:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,102,0,.55);
}
.btn-mission-cta::after { content: '\2192'; margin-left: 2px; }

/* ─── HEUTE IM FOKUS ─────────────────────────────────────────── */
.section-fokus {
  background: transparent;
}
.fokus-sub {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 28px;
  margin-top: 4px;
  max-width: 620px;
  line-height: 1.65;
}
.fokus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fokus-card {
  position: relative;
  background: linear-gradient(180deg, #141828 0%, #181e30 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.fokus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0,0,0,.22);
}
/* Middle card — orange accent */
.fokus-card--featured {
  background: linear-gradient(180deg, #1f1508 0%, #2a1a0a 100%);
  border-color: rgba(255,102,0,.2);
  box-shadow: 0 18px 40px rgba(255,102,0,.08);
}
.fokus-card--featured:hover {
  box-shadow: 0 24px 44px rgba(255,102,0,.14);
}
.fokus-card::after {
  content: '';
  position: absolute;
  top: -34px;
  right: -18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,45,232,.16) 0%, rgba(43,45,232,0) 72%);
  pointer-events: none;
}
.fokus-card--featured::after {
  background: radial-gradient(circle, rgba(255,102,0,.14) 0%, rgba(255,102,0,0) 72%);
}
.fokus-top { height: 3px; }
.fokus-top.hot  { background: var(--orange); }
.fokus-top.mom  { background: var(--blue); }
.fokus-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.fokus-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fokus-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.badge-hot  { background: rgba(255,102,0,.08); color: var(--orange); }
.badge-mom  { background: rgba(43,45,232,.08); color: var(--blue); }
.badge-neu  { background: rgba(0,200,150,.08); color: var(--green); }
.fokus-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.fokus-ticker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}
.fokus-wkn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
  background: rgba(255,255,255,.08);
  padding: 3px 8px;
  border-radius: 3px;
}
.fokus-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 8px;
}
.fokus-thesis {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  flex: 1;
  margin-bottom: 16px;
}
.fokus-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all .2s;
  align-self: center;
}
.fokus-cta::after { content: '\2192'; font-size: 13px; transition: margin-left .15s; }
.fokus-cta:hover::after { margin-left: 4px; }
/* Filled CTA — for featured/middle card */
.fokus-cta.orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 3px 14px rgba(255,102,0,.3);
}
.fokus-cta.orange:hover {
  background: var(--orange-hot);
  box-shadow: 0 5px 20px rgba(255,102,0,.45);
}
/* Outline CTAs — for side cards */
.fokus-cta.blue,
.fokus-cta.green {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: none;
}
.fokus-cta.blue:hover,
.fokus-cta.green:hover {
  background: rgba(43,45,232,.08);
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  box-shadow: none;
}

/* ─── VORSPRUNG ──────────────────────────────────────────────── */
.section-vorsprung {
  background: transparent;
}
.section-vorsprung .sec-label { color: var(--orange); }
.vorsprung-h2 { color: var(--navy); }

/* 2+1 Grid like Drip */
.vorsprung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.vorsprung-card {
  background: linear-gradient(180deg, #1e2440 0%, #1a2038 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s;
}
.vorsprung-card:hover {
  border-color: rgba(255,255,255,.14);
}
.vorsprung-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vorsprung-card-content {
  padding: 32px 28px;
}
.vorsprung-card--wide .vorsprung-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vorsprung-card-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.vorsprung-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}
.vorsprung-card-visual {
  padding: 16px 28px 24px;
  display: flex;
  align-items: flex-end;
}
.vorsprung-card--wide .vorsprung-card-visual {
  padding: 24px 28px;
  align-items: center;
}
.vorsprung-svg {
  width: 100%;
  height: auto;
}

/* ─── ANALYSEANSATZ ──────────────────────────────────────────── */
.section-ansatz {
  background: transparent;
}
.section-ansatz .sec-label { color: var(--orange); }
.section-ansatz .sec-h2 { color: #fff; }
.section-ansatz .sec-body { color: rgba(255,255,255,.65); }
.ansatz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.ansatz-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 28px;
  background: linear-gradient(180deg, #1a2040 0%, #1e2648 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ansatz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
}
.ansatz-num {
  position: absolute;
  bottom: -14px; right: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  opacity: .04;
  pointer-events: none;
  user-select: none;
}
.ansatz-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.ansatz-list { list-style: none; }
.ansatz-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ansatz-list li:last-child { border-bottom: none; }
.ansatz-check {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ansatz-check svg { width: 9px; height: 9px; }

/* ─── TEAM ──────────────────────────────────────────────────── */
.section-team {
  background: transparent;
  overflow: hidden;
}
.section-team .sec-label { color: var(--orange); }
.team-h2 { color: #fff; }
.team-sub {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}
.team-header { margin-bottom: 36px; }

/* Carousel wrapper with fade edges */
.team-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team-carousel-wrap::before,
.team-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.team-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11,14,20,1) 0%, rgba(11,14,20,0) 100%);
}
.team-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11,14,20,1) 0%, rgba(11,14,20,0) 100%);
}

/* Scrolling track */
.team-carousel {
  display: flex;
  gap: 20px;
  animation: teamScroll 35s linear infinite;
  width: max-content;
}
.team-carousel:hover {
  animation-play-state: paused;
}

@keyframes teamScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card */
.team-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 16px;
  background: linear-gradient(135deg, #161c34 0%, #1a2040 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  min-width: 240px;
  transition: border-color .25s, box-shadow .25s;
}
.team-card:hover {
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.team-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #222a4c 0%, #2a3260 100%);
  border: 2px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-card-initials {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
.team-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.team-card-role {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.3;
}

/* ─── WARUM WIR ──────────────────────────────────────────────── */
.section-warum {
  background: transparent;
}
.section-warum .sec-label { color: var(--orange); }
.warum-h2 { color: #fff; }

/* Timeline rail */
.warum-timeline {
  position: relative;
  margin-top: 36px;
  padding-left: 32px;
}
.warum-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255,255,255,.08) 100%);
  border-radius: 2px;
}

/* Timeline item */
.warum-timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.warum-timeline-item:last-child {
  padding-bottom: 0;
}

/* Dot on the rail */
.warum-timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1a2040;
  border: 2px solid rgba(255,255,255,.15);
  z-index: 1;
}
.warum-timeline-dot--accent {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,102,0,.5);
}

/* Content */
.warum-timeline-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.warum-timeline-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 560px;
}

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.section-cta {
  background: transparent;
  position: relative;
}
.section-cta .sec-label { color: var(--orange); }

/* Drip-style CTA layout */
.cta-layout {
  background: linear-gradient(135deg, #161c34 0%, #1a2040 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
}
.cta-h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  max-width: 520px;
}
.cta-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 500px;
  margin-bottom: 32px;
}

/* Checklist */
.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.cta-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cta-checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,102,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.cta-checklist-icon svg { width: 11px; height: 11px; }
.cta-checklist-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.cta-checklist-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.4);
}

/* CTA button */
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 28px var(--orange-glow);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-cta-main:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,102,0,.55);
}
.btn-cta-main span { font-size: 18px; transition: margin-left .15s; }
.btn-cta-main:hover span { margin-left: 4px; }

/* ─── TRANSPARENCY ───────────────────────────────────────────── */
.section-transp {
  background: transparent;
  padding: 22px var(--pad);
  text-align: center;
}
.transp-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 660px;
  margin: 0 auto;
}
.transp-text strong { color: rgba(255,255,255,.6); }
.transp-text a { color: #8b8df5; text-decoration: none; }

/* ─── ARCHIVE & SINGLE POST STYLES ──────────────────────────── */
.archive-header {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 50%, #131831 100%);
  padding: clamp(40px, 5vw, 70px) var(--pad);
  text-align: center;
}
.archive-header .sec-label,
.archive-header .sec-h2 {
  color: #fff;
  max-width: 100%;
}
.archive-header .sec-body {
  color: rgba(255,255,255,.5);
  max-width: 600px;
  margin: 0 auto;
}

.post-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-line);
  transition: transform .22s, box-shadow .22s;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card-body {
  padding: 20px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--gray-text);
}
.post-card-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(43,45,232,.08);
  color: var(--blue);
}
.post-card-source.eigen {
  background: rgba(255,102,0,.08);
  color: var(--orange);
}
.post-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
}
.post-card-title a:hover {
  color: var(--blue);
}
.post-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.post-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.post-card-link:hover {
  color: var(--orange-hot);
}
.post-card-link::after {
  content: ' \2192';
}

/* Single post */
.single-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px var(--pad) 60px;
}
.single-article-header {
  margin-bottom: 32px;
}
.single-article-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.single-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-text);
  flex-wrap: wrap;
}
.single-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.single-article-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--dark);
}
.single-article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--dark);
}
.single-article-content p {
  margin-bottom: 18px;
}
.single-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.single-article-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--gray-bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-text);
}

/* CTA Banner (inline between content) */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #131831 100%);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

/* CTA at bottom of legal pages — distinct module card */
.legal-cta-wrap {
  max-width: calc(var(--max) * 0.85);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 24px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 64px);
}
.legal-cta-wrap .cta-banner {
  position: relative;
  background: linear-gradient(145deg, rgba(11,14,20,.85) 0%, rgba(19,24,49,.9) 55%, rgba(15,19,32,.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(43,45,232,.18);
  border-radius: 16px;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px);
  margin: 0;
}
.legal-cta-wrap .cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,45,232,.18) 0%, transparent 70%);
  pointer-events: none;
}
.legal-cta-wrap .cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,102,0,.10) 0%, transparent 70%);
  pointer-events: none;
}
.legal-cta-wrap .cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .sec-h2 {
  color: #fff;
  font-size: 22px;
  max-width: 100%;
  margin-bottom: 12px;
}
.cta-banner .sec-body {
  color: rgba(255,255,255,.5);
  max-width: 100%;
  margin: 0 auto 20px;
  font-size: 14px;
}
.cta-disclaimer {
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 620px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.3);
}
.cta-disclaimer strong { color: rgba(255,255,255,.45); }
.cta-disclaimer a { color: rgba(255,255,255,.4); text-decoration: none; }
.cta-disclaimer a:hover { color: rgba(255,255,255,.7); }

/* Pagination */
.pagination {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad) 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.pagination a {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--gray-line);
}
.pagination a:hover {
  background: var(--gray-bg);
  border-color: var(--blue);
}
.pagination .current {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

/* ─── STATIC PAGES ──────────────────────────────────────────── */
.page-header {
  background: transparent;
  padding: clamp(40px, 5vw, 70px) var(--pad);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,45,232,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,45,232,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  pointer-events: none;
}
.page-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header .sec-h2 {
  color: #fff;
  max-width: 100%;
}

.page-content-area {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px var(--pad) 60px;
}
.page-content-area h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--dark);
}
.page-content-area p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* Plain flowing text — no card, no colour accents */
.legal-prose {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.8;
}

.legal-prose p {
  margin: 0 0 16px;
}

.legal-prose__intro {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px !important;
}

.legal-prose h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 10px;
  letter-spacing: 0;
  text-transform: none;
}

.legal-prose a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: #fff;
}

/* Legal pages */
.legal-content {
  max-width: calc(var(--max) * 0.85);
  margin: 0 auto;
  padding: clamp(8px, 1.2vw, 16px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 64px);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  background: rgba(11,14,20,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 10px;
  margin-bottom: 0;
}
.legal-content > h2:first-child {
  margin-top: 0;
}
.legal-content h1,
.legal-content h2 {
  color: #fff;
  margin: 28px 0 12px;
}
.legal-content h1 { font-size: 28px; }
.legal-content h2 { font-size: 22px; }
.legal-content h3 { font-size: 18px; margin: 20px 0 8px; color: rgba(255,255,255,.9); }
.legal-content p { margin-bottom: 14px; }
.legal-content strong { color: rgba(255,255,255,.9); }
.legal-content ul, .legal-content ol {
  margin: 12px 0 18px 24px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: #8b8df5;
  text-decoration: none;
}
.legal-content a:hover {
  color: var(--orange);
  text-decoration: none;
}
.legal-content hr,
.legal-content [style*="border-top"] {
  border-color: rgba(255,255,255,.1) !important;
}
.legal-content [style*="color: var(--gray-text)"] {
  color: rgba(255,255,255,.35) !important;
}

/* Impressum card */
.impressum-card {
  position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 55%, #131831 100%);
  border: 1px solid rgba(43,45,232,.22);
  border-radius: 16px;
  overflow: hidden;
  margin: 8px 0 36px;
}
.impressum-card__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
}
.impressum-card__glow--blue {
  background: radial-gradient(circle, rgba(43,45,232,.22) 0%, transparent 70%);
  top: -80px;
  right: -60px;
}
.impressum-card__glow--orange {
  background: radial-gradient(circle, rgba(255,102,0,.14) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}
.impressum-card__inner {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 40px);
}
/* Prose variant — flowing text instead of key/value grid */
.impressum-card__inner--prose p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin: 0 0 18px;
}

.impressum-card__inner--prose p strong {
  color: #fff;
  font-weight: 600;
}

.impressum-card__inner--prose p a {
  color: var(--orange);
  text-decoration: none;
}

.impressum-card__inner--prose p a:hover {
  text-decoration: underline;
}

.impressum-card__inner--prose h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 32px 0 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.impressum-card__inner--prose h2:first-of-type {
  margin-top: 28px;
}

.impressum-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px !important;
}
.impressum-fields {
  display: grid;
  gap: 0;
}
.impressum-field {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.impressum-field:last-child {
  border-bottom: none;
}
.impressum-field__key {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  padding-top: 2px;
}
.impressum-field__val {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.65;
}
.impressum-field__val a {
  color: var(--blue-mid);
  text-decoration: none;
}
.impressum-field__val a:hover {
  color: var(--orange);
}

/* Disclaimer pending */
.disclaimer-pending__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.disclaimer-pending__text {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0 !important;
}

/* Datenschutz TOC */
.dsgvo-toc {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.dsgvo-toc__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px !important;
}
.dsgvo-toc__list {
  margin: 0 0 0 18px;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}
.dsgvo-toc__list li {
  margin-bottom: 6px;
  font-size: 14px;
  break-inside: avoid;
}
.dsgvo-toc__list a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
}
.dsgvo-toc__list a:hover {
  color: #fff;
}

/* Contact page */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad) 60px;
}
.kontakt-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.kontakt-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 12px;
}
.kontakt-form-area {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   NEWS & ANALYSEN ARCHIVE — Handelsblatt Layout v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.analyse-archive-main {
  background: transparent;
  min-height: 60vh;
}

/* ── Archive page — light-blue/white gradient (mirrors homepage structure) ── */
body.post-type-archive-analyse {
  background:
    radial-gradient(circle at top right, rgba(43,45,232,.05) 0%, transparent 22%),
    radial-gradient(circle at 12% 55%, rgba(43,45,232,.04) 0%, transparent 26%),
    linear-gradient(180deg,
      #d8e8f8 0%,
      #e4eef9 6%,
      #eef5fc 12%,
      #f4f9ff 20%,
      #f9fcff 28%,
      #fcfeff 36%,
      #ffffff 46%,
      #fdfeff 56%,
      #f8fbff 64%,
      #f1f7fd 72%,
      #e8f0fb 80%,
      #dfeaf8 88%,
      #d8e4f7 100%
    );
}

body.post-type-archive-analyse .analyse-archive-header {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sort bar */
.analyse-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.analyse-sort-bar__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 22px);
  color: #0a0c10;
  margin: 0;
}

.analyse-sort-select {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #374151;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 7px 32px 7px 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .18s;
}

.analyse-sort-select:focus {
  outline: none;
  border-color: var(--blue);
}

/* Infinite scroll sentinel & loader */
.analyse-scroll-sentinel {
  height: 1px;
}

.analyse-autoload-spinner {
  display: none;
  justify-content: center;
  padding: 20px 0;
}

.analyse-autoload-spinner.is-active {
  display: flex;
}

.analyse-autoload-spinner::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #e8eaed;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.analyse-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Archive header ── */
.analyse-archive-header {
  background: #fff;
  border-bottom: 2px solid #e8eaed;
  padding: 32px 0 24px;
}

.analyse-archive-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.analyse-archive-header__inner--center {
  text-align: center;
}

.analyse-archive-header__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #0a0c10;
  line-height: 1.1;
  margin: 0;
}

/* ── USP blocks ── */
.analyse-archive-header__usps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.analyse-archive-header__usp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(43,45,232,.06);
  border: 1px solid rgba(43,45,232,.14);
  border-radius: 6px;
  padding: 7px 14px;
}

.analyse-archive-header__usp svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--blue);
}

.analyse-archive-header__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.analyse-archive-header__stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.analyse-archive-header__stat strong {
  color: var(--blue);
}

.analyse-archive-header__label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.analyse-archive-header__sub {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 8px auto 0;
  max-width: 580px;
}

.analyse-archive-header__dot {
  color: #d1d5db;
}

/* ── Shared atoms ── */
.analyse-kicker {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.analyse-kicker--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: #16a34a;
  border-radius: 20px;
  padding: 3px 10px;
  line-height: 1.6;
}

.analyse-kicker--live::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.4s ease-in-out infinite;
}

.analyse-partner-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.6;
}

.analyse-partner-badge--sm {
  font-size: 9px;
  padding: 1px 5px;
}

.analyse-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
}

.analyse-meta time {
  font-family: 'IBM Plex Mono', monospace;
}

.analyse-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .15s;
}

.analyse-link:hover {
  gap: 8px;
}

/* ── Duo Hero ── */
.analyse-duo-wrap {
  padding: 32px 0 0;
  background: transparent;
}

.analyse-duo {
  display: flex;
  gap: 28px;
  align-items: stretch;
  border-bottom: 1px solid #e8eaed;
  padding-bottom: 32px;
}

.analyse-duo__main {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 28px;
  border-right: 1px solid #e8eaed;
}

.analyse-duo__main-img-link {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/2;
}

.analyse-duo__main-img-link img,
.analyse-duo__main-img--fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyse-duo__main-img--fallback {
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
}

.analyse-duo__main-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.analyse-duo__main-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
  color: #0a0c10;
  margin: 0;
}

.analyse-duo__main-title a {
  color: inherit;
  text-decoration: none;
}

.analyse-duo__main-title a:hover {
  color: var(--blue);
}

.analyse-duo__main-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

.analyse-duo__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analyse-duo__side-img-link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  height: 160px;
}

.analyse-duo__side-img-link img,
.analyse-duo__side-img--fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyse-duo__side-img--fallback {
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
  height: 100%;
}

.analyse-duo__side-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.analyse-duo__side-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.3;
  color: #0a0c10;
  margin: 0;
  flex: 1;
}

.analyse-duo__side-title a {
  color: inherit;
  text-decoration: none;
}

.analyse-duo__side-title a:hover {
  color: var(--blue);
}

/* ── Trio ── */
.analyse-trio-wrap {
  padding: 28px 0 0;
  background: transparent;
}

.analyse-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-bottom: 1px solid #e8eaed;
  padding-bottom: 32px;
}

.analyse-trio-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.analyse-trio-card__img-link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  height: 170px;
}

.analyse-trio-card__img-link img,
.analyse-trio-card__img--fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyse-trio-card__img--fallback {
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
  height: 100%;
}

.analyse-trio-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.analyse-trio-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.35;
  color: #0a0c10;
  margin: 0;
}

.analyse-trio-card__title a {
  color: inherit;
  text-decoration: none;
}

.analyse-trio-card:hover .analyse-trio-card__title,
.analyse-trio-card:hover .analyse-trio-card__title a {
  color: var(--blue);
}

/* ── Market Overview ── */
.analyse-market-wrap {
  background: #f8f9fb;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
  padding: 36px 0;
  position: relative;
}

.analyse-market-live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.analyse-market-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.analyse-market-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 28px;
}

.analyse-market-header h2,
.analyse-market-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #0a0c10;
  margin: 0;
}

/* ── Image badges ── */
.analyse-img-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.analyse-img-badge--hot      { background: var(--orange); color: #fff; }
.analyse-img-badge--trending { background: var(--blue); color: #fff; }
.analyse-img-badge--breaking { background: #dc2626; color: #fff; }
.analyse-img-badge--neu      { background: #059669; color: #fff; }
.analyse-img-badge--exklusiv { background: #7c3aed; color: #fff; }
.analyse-img-badge--analyse  { background: rgba(43,45,232,.12); color: var(--blue); border: 1px solid rgba(43,45,232,.3); }
.analyse-img-badge--meinung  { background: rgba(0,0,0,.45); color: #fff; backdrop-filter: blur(4px); }
.analyse-img-badge--interview{ background: rgba(0,0,0,.45); color: #fff; backdrop-filter: blur(4px); }

.analyse-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #16a34a;
  border-radius: 20px;
  padding: 3px 10px;
}

.analyse-live-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.analyse-market-widget {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

/* ── CTA Section ── */
.analyse-cta-section {
  padding: 0;
  background: transparent;
}

/* CTA light-blue override for analyse archive */
body.post-type-archive-analyse .analyse-cta-section {
  padding: 28px 0;
}
body.post-type-archive-analyse .analyse-cta-section .cta-banner {
  background: linear-gradient(135deg, rgba(43,45,232,.09) 0%, rgba(43,45,232,.05) 100%);
  border: 1px solid rgba(43,45,232,.16);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(43,45,232,.06);
}
body.post-type-archive-analyse .analyse-cta-section .cta-banner .sec-h2 {
  color: #0a0c10;
}
body.post-type-archive-analyse .analyse-cta-section .cta-banner .sec-body {
  color: #374151;
}
body.post-type-archive-analyse .analyse-cta-section .cta-disclaimer {
  border-top-color: rgba(43,45,232,.1);
}

/* ── Categories ── */
.analyse-cats-wrap {
  background: transparent;
  border-top: 1px solid #e8eaed;
  padding: 36px 0;
}

.analyse-cats-header {
  margin-bottom: 20px;
}

.analyse-cats-header h2,
.analyse-cats-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #0a0c10;
  margin: 0;
}

.analyse-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.analyse-cat-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s, box-shadow .18s;
}

.analyse-cat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(43,45,232,.1);
}

.analyse-cat-card__img-area {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, rgba(43,45,232,.09) 0%, rgba(43,45,232,.04) 100%);
  flex-shrink: 0;
  overflow: hidden;
}

.analyse-cat-card__img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyse-cat-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  flex: 1;
}

.analyse-cat-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(43,45,232,.1) 0%, rgba(43,45,232,.05) 100%);
  border-radius: 8px;
  color: var(--blue);
}

.analyse-cat-card__icon svg {
  width: 18px;
  height: 18px;
}

.analyse-cat-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #0a0c10;
  line-height: 1.3;
  flex: 1;
}

.analyse-cat-card__count {
  font-size: 12px;
  color: #6b7280;
  font-family: 'IBM Plex Mono', monospace;
  flex-shrink: 0;
}

/* ── Article List ── */
.analyse-list-wrap {
  background: transparent;
  border-top: 1px solid #e8eaed;
  padding: 36px 0;
}

.analyse-list-header {
  margin-bottom: 20px;
}

.analyse-list-header h2,
.analyse-list-header__title,
.analyse-list-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #0a0c10;
  margin: 0;
}

.analyse-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.analyse-list-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f0f1f3;
  text-decoration: none;
  color: inherit;
}

.analyse-list-item--partner {
  position: relative;
}

.analyse-list-item__img-link {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 120px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.analyse-list-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyse-list-item__img--fallback {
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
}

.analyse-list-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.analyse-list-item__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.analyse-list-item__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.35;
  color: #0a0c10;
  margin: 0;
}

.analyse-list-item__title a {
  color: inherit;
  text-decoration: none;
}

.analyse-list-item__title a:hover {
  color: var(--blue);
}

.analyse-list-item__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* ── Source Badge ── */
.analyse-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 2px 7px;
}

/* ── Load More ── */
.analyse-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0 12px;
}

.analyse-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.analyse-load-more:hover:not(:disabled) {
  background: var(--blue);
  color: #fff;
}

.analyse-load-more:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.analyse-load-more__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.analyse-load-more.is-loading .analyse-load-more__spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   AKTUELLE TRENDS ARCHIVE
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared ── */
.trend-archive-main {
  background: #fff;
  min-height: 60vh;
}

.trend-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Hero Header ── */
.trend-archive-header {
  position: relative;
  background: var(--navy);
  padding: clamp(40px, 5vw, 64px) 0 clamp(44px, 5.5vw, 72px);
  overflow: hidden;
}

.trend-archive-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.6) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.6) 70%, transparent 100%);
  pointer-events: none;
}

.trend-archive-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.trend-archive-header__label {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.trend-archive-header__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px;
}

.trend-archive-header__title em {
  font-style: italic;
  color: var(--orange);
}

.trend-archive-header__sub {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 0 0 32px;
}

.trend-archive-header__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trend-archive-header__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trend-archive-header__stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  color: #fff;
  font-weight: 400;
}

.trend-archive-header__stat-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.trend-archive-header__dot {
  font-size: 28px;
  color: rgba(255,255,255,.15);
  line-height: 1;
  align-self: center;
}

/* ── Buzzword Cloud ── */
.trend-buzzwords-wrap {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
}

.trend-buzzwords-header {
  text-align: center;
  margin-bottom: 36px;
}

.trend-buzzwords-label {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.trend-buzzwords-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.trend-buzzwords-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline; /* baseline = natural height variation per row */
  gap: 0 2px;            /* almost no gap — words breathe via padding + transforms */
  padding: 16px 0 28px;
  line-height: 1;
}

/* Central heat glow */
.trend-buzzwords-cloud::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 48%,
      rgba(255,102,0,.18) 0%,
      rgba(255,102,0,.06) 38%,
      transparent 68%),
    radial-gradient(ellipse 80% 70% at 50% 50%,
      rgba(43,45,232,.08) 0%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Base word ── */
.trend-buzz {
  /* CSS custom props set inline per-word from PHP */
  --rot: 0deg;
  --dy:  0px;

  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  text-decoration: none;
  line-height: 1.15;
  padding: 5px 8px;
  border-radius: 4px;
  transform: rotate(var(--rot)) translateY(var(--dy));
  transform-origin: center bottom;
  transition:
    transform .22s cubic-bezier(.34,1.56,.64,1),
    text-shadow .22s ease,
    color .15s ease;
  animation: buzz-in .55s cubic-bezier(.22,1,.36,1) both;
  cursor: pointer;
}

.trend-buzz:hover {
  transform: rotate(var(--rot)) translateY(var(--dy)) scale(1.15);
  text-shadow: 0 0 32px currentColor, 0 0 64px currentColor;
  z-index: 2;
}

/* ── Status colors ── */
.trend-buzz--heiss    { color: var(--orange); }
.trend-buzz--steigend { color: var(--green); }
.trend-buzz--stabil   { color: rgba(255,255,255,.4); }
.trend-buzz--stabil:hover { color: rgba(255,255,255,.75); }

/* ── Weight tiers ── */
.trend-buzz--5 {
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: -.02em;
  padding: 6px 10px;
}
.trend-buzz--4 {
  font-size: clamp(26px, 3.8vw, 42px);
  padding: 5px 9px;
}
.trend-buzz--3 {
  font-size: clamp(18px, 2.4vw, 28px);
  padding: 5px 7px;
}
.trend-buzz--2 {
  font-size: clamp(14px, 1.6vw, 19px);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  padding: 5px 6px;
}
.trend-buzz--1 {
  font-size: clamp(11px, 1.1vw, 13px);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,.25);
  padding: 4px 5px;
}
.trend-buzz--1.trend-buzz--heiss    { color: rgba(255,102,0,.35); }
.trend-buzz--1.trend-buzz--steigend { color: rgba(0,200,150,.35); }

/* ── Entrance animation (respects per-word transform) ── */
@keyframes buzz-in {
  from {
    opacity: 0;
    transform: rotate(var(--rot)) translateY(calc(var(--dy) + 14px)) scale(.8);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: rotate(var(--rot)) translateY(var(--dy)) scale(1);
    filter: blur(0);
  }
}

/* Legend */
.trend-buzzwords-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.trend-buzzwords-legend__item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trend-buzzwords-legend__item--heiss   { color: var(--orange); }
.trend-buzzwords-legend__item--steigend { color: var(--green); }
.trend-buzzwords-legend__item--stabil  { color: rgba(255,255,255,.4); }

.trend-buzzwords-legend__sep {
  color: rgba(255,255,255,.15);
  font-size: 16px;
}

/* ── TradingView Sector Widget ── */
.trend-tv-wrap {
  background: var(--navy2);
  padding: 32px 0;
}

.trend-tv-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.trend-tv-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #fff;
  margin: 0;
}

.trend-tv-widget {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* ── Heatmap ── */
.trend-heatmap-wrap {
  background: #fff;
  border-bottom: 1px solid var(--gray-line);
  padding: 40px 0;
}

.trend-heatmap-header {
  margin-bottom: 24px;
}

.trend-heatmap-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #0a0c10;
  margin: 0;
}

.trend-heatmap-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 6px 0 0;
}

.trend-heatmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trend-score-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-top: 3px solid var(--gray-line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}

.trend-score-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.trend-score-card--heiss {
  border-top-color: var(--orange);
}

.trend-score-card--steigend {
  border-top-color: var(--green);
}

.trend-score-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,45,232,.08);
  color: var(--blue);
  flex-shrink: 0;
}

.trend-score-card--heiss .trend-score-card__icon-wrap {
  background: rgba(255,102,0,.1);
  color: var(--orange);
}

.trend-score-card--steigend .trend-score-card__icon-wrap {
  background: rgba(0,200,150,.1);
  color: var(--green);
}

.trend-score-card__icon-wrap svg {
  width: 20px;
  height: 20px;
}

.trend-score-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.trend-score-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  line-height: 1.3;
  color: #0a0c10;
  margin: 0;
}

.trend-score-card__title a {
  color: inherit;
  text-decoration: none;
}

.trend-score-card__title a:hover {
  color: var(--blue);
}

.trend-score-card__bar-wrap {
  height: 6px;
  background: #f0f1f3;
  border-radius: 3px;
  overflow: hidden;
}

.trend-score-card__bar {
  height: 100%;
  width: calc(var(--score, 0) * 1%);
  border-radius: 3px;
  background: var(--blue);
  transition: width .6s ease;
}

.trend-score-card--heiss .trend-score-card__bar {
  background: var(--orange);
}

.trend-score-card--steigend .trend-score-card__bar {
  background: var(--green);
}

.trend-score-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trend-score-card__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #0a0c10;
  line-height: 1;
}

.trend-score-card__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 9px;
  line-height: 1.6;
}

.trend-score-card__badge--heiss {
  background: rgba(255,102,0,.1);
  color: var(--orange);
}

.trend-score-card__badge--steigend {
  background: rgba(0,200,150,.12);
  color: var(--green);
}

.trend-score-card__badge--stabil {
  background: #f3f4f6;
  color: #6b7280;
}

.trend-score-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap .15s;
}

.trend-score-card__link:hover {
  gap: 7px;
}

/* ── Filter Pills ── */
.trend-filter-wrap {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-line);
  padding: 16px 0;
}

.trend-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.trend-filter-scroll::-webkit-scrollbar {
  display: none;
}

.trend-filter-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, background .15s, color .15s;
}

.trend-filter-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(43,45,232,.04);
}

.trend-filter-pill--active,
.trend-filter-pill--active:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.trend-filter-pill__count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  opacity: .7;
}

.trend-filter-pill svg {
  width: 14px;
  height: 14px;
}

/* ── Articles Grid ── */
.trend-grid-wrap {
  background: #fff;
  border-top: 1px solid var(--gray-line);
  padding: 36px 0;
}

.trend-grid-header {
  margin-bottom: 22px;
}

.trend-grid-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #0a0c10;
  margin: 0;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trend-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.trend-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.trend-card__img-link {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.trend-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.trend-card:hover .trend-card__img-link img {
  transform: scale(1.03);
}

.trend-card__img--fallback {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.trend-card__score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(11,14,20,.8);
  border-radius: 4px;
  padding: 3px 7px;
  line-height: 1;
}

.trend-card__score-badge--heiss   { background: var(--orange); }
.trend-card__score-badge--steigend { background: var(--green); }

.trend-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.trend-card__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trend-card__kat-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 4px;
  padding: 2px 7px;
}

.trend-card__status-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
}

.trend-card__status-badge--heiss   { background: rgba(255,102,0,.1);   color: var(--orange); }
.trend-card__status-badge--steigend { background: rgba(0,200,150,.12); color: var(--green); }
.trend-card__status-badge--stabil   { background: #f3f4f6;             color: #6b7280; }

.trend-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.35;
  color: #0a0c10;
  margin: 0;
}

.trend-card__title a {
  color: inherit;
  text-decoration: none;
}

.trend-card__title a:hover {
  color: var(--blue);
}

.trend-card__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.trend-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f1f3;
}

.trend-card__foot time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #9ca3af;
}

.trend-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .15s;
}

.trend-link:hover {
  gap: 8px;
}

.trend-pagination {
  display: flex;
  justify-content: center;
  padding: 32px 0 8px;
}

/* ── CTA Section ── */
.trend-cta-section {
  padding: 0;
  background: #fff;
}
