/* ============================================================
   ENERGIEWENDE-CHECK.DE — CSS (Mobile First)
   Base = 375px · Tablet = 600px · Desktop = 768px · Wide = 1024px
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg:        #07100f;
  --card:      #111f1d;
  --dark:      #0c1a18;
  --border:    #1a2e2b;
  --green:     #2dbd6e;
  --green-h:   #24a85f;
  --teal:      #18c4a8;
  --white:     #e8f5f2;
  --text:      #D1D5DB;
  --muted:     #7aab9d;
  --dim:       #5a8a7c;
  --heading:   #F8F9FA;
  --gold:      #f5c842;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);

  /* Spacing Scale (Mobile) */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  2.5rem;

  /* Sticky CTA height — body-padding-bottom auf Mobile */
  --sticky-h:  68px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Platz für Sticky CTA auf Mobile */
  padding-bottom: var(--sticky-h);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }

/* --- Typografie (Mobile-First, clamp skaliert automatisch) --- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(1.35rem, 5.5vw, 3.2rem); }
h2 { font-size: clamp(1.3rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 3vw, 1.5rem); }
h4 { font-size: .95rem; font-family: 'DM Sans', sans-serif; }
p  { color: var(--text); margin-bottom: .75rem; }
strong { color: var(--white); font-weight: 600; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 480px)  { .container { padding-inline: 1.25rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section    { padding-block: var(--space-xl); }
.section-sm { padding-block: var(--space-lg); }
@media (min-width: 768px) {
  .section    { padding-block: 4rem; }
  .section-sm { padding-block: 2.5rem; }
}

/* --- Buttons (min 44px touch target) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) { .btn { white-space: nowrap; } }
.btn-primary {
  background: var(--green);
  color: #07100f;
}
.btn-primary:hover, .btn-primary:active {
  background: var(--green-h);
  color: #07100f;
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover, .btn-outline:active {
  background: rgba(45,189,110,.1);
  color: var(--green);
}
.btn-lg { min-height: 48px; padding: .65rem 1.25rem; font-size: .95rem; }
@media (min-width: 768px) {
  .btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
}

/* --- Cards --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color .2s;
}
@media (min-width: 768px) {
  .card { padding: 1.5rem; }
  .card:hover { border-color: rgba(45,189,110,.35); transform: translateY(-2px); }
}

/* --- Tags --- */
.tag {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tag-green { background: rgba(45,189,110,.15); color: var(--green); }
.tag-teal  { background: rgba(24,196,168,.15);  color: var(--teal); }
.tag-gold  { background: rgba(245,200,66,.15);  color: var(--gold); }
.tag-muted { background: rgba(122,171,157,.1);  color: var(--muted); }

/* ============================================================
   STICKY CTA BAR (nur Mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  display: flex;
  gap: .6rem;
  align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
}
.sticky-cta .btn { font-size: .88rem; min-height: 44px; }
.sticky-cta .btn-primary { flex: 1.4; }
.sticky-cta .btn-outline { flex: 1; }
.sticky-cta-label {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.3;
  flex-shrink: 0;
  max-width: 80px;
  display: none;
}
@media (min-width: 380px) { .sticky-cta-label { display: block; } }
/* Ab Desktop ausblenden */
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: rgba(7,16,15,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: .75rem;
}
@media (min-width: 768px) { .nav { height: 68px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { width: 32px; height: 32px; }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--green); }
@media (min-width: 768px) {
  .nav-logo img { width: 38px; height: 38px; }
  .nav-logo-text { font-size: 1.1rem; }
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  list-style: none;
}
.nav-cta { display: none; }

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
  }
  .nav-links a {
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem .75rem;
    min-height: 36px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: background .2s, color .2s;
  }
  .nav-links a:hover { background: var(--card); color: var(--heading); }
  .nav-cta { display: flex; margin-left: .5rem; }
}

/* Mobile Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .6rem;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
  pointer-events: none;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Mobile Nav Overlay */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 100%;
  left: 0; right: 0;
  height: calc(100vh - 60px - var(--sticky-h));
  height: calc(100dvh - 60px - var(--sticky-h));
  background: var(--dark);
  padding: 1.5rem 1rem;
  gap: .25rem;
  z-index: 99;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-links.open li { width: 100%; }
.nav-links.open a {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  min-height: 52px;
  transition: background .15s, color .15s;
}
.nav-links.open a:hover,
.nav-links.open a:active { background: var(--card); color: var(--heading); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,189,110,.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero { padding-block: 5rem 4rem; }
  .hero::before { width: 600px; height: 600px; top: -120px; right: -100px; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--green); }

.hero-desc {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.1rem; max-width: 540px; margin-bottom: 2rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 400px) {
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .75rem; }
}
@media (min-width: 768px) { .hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; } }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}
.trust-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
@media (min-width: 768px) { .trust-item { font-size: .85rem; align-items: center; } }

/* Hero stat cards — Desktop only */
.hero-visual { display: none; }
@media (min-width: 768px) {
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    width: 280px;
    flex-shrink: 0;
  }
}
.hero-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero-stat-card .stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  display: block;
}
.hero-stat-card .stat-label { font-size: .72rem; color: var(--muted); line-height: 1.3; margin-top: .2rem; }
.hero-stat-card.teal .stat-num { color: var(--teal); }
.hero-stat-card.gold .stat-num { color: var(--gold); }

/* ============================================================
   STATS BAR — horizontal scroll auf Mobile
   ============================================================ */
.stats-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-block: .75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stats-bar-wrap {
  position: relative;
}
.stats-bar-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--dark));
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) { .stats-bar-wrap::after { display: none; } }

.stats-bar-inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  width: max-content;
  padding-inline: 1rem;
  min-width: 100%;
}
@media (min-width: 768px) {
  .stats-bar-inner {
    width: auto;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-inline: 0;
    gap: .75rem 1.5rem;
  }
  .stats-bar { overflow-x: visible; }
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.stats-bar-item .num      { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: .9rem; }
.stats-bar-item .num.up   { color: var(--green); }
.stats-bar-item .num.down { color: #e05c5c; }
.stats-bar-item .num.neu  { color: var(--teal); }
.stats-bar-item .lbl      { color: var(--muted); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}
.section-title { display: flex; flex-direction: column; gap: .3rem; }
.section-header .lead {
  color: var(--muted);
  font-size: .9rem;
  max-width: 500px;
  margin: .25rem 0 0;
}

/* ============================================================
   KATEGORIEN — 2 Spalten auf Mobile
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (min-width: 480px)  { .gap { gap: 1rem; } }
@media (max-width: 639px)  { .categories-grid .cat-card:last-child { grid-column: 1 / -1; } }
@media (min-width: 640px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }

.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  transition: border-color .2s;
}
.cat-card:active { border-color: rgba(45,189,110,.4); }
@media (min-width: 768px) {
  .cat-card { padding: 1.5rem 1.25rem; gap: .6rem; }
  .cat-card:hover { border-color: rgba(45,189,110,.4); transform: translateY(-3px); }
}

.cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .cat-icon { width: 44px; height: 44px; font-size: 1.4rem; } }

.cat-icon.green { background: rgba(45,189,110,.12); }
.cat-icon.teal  { background: rgba(24,196,168,.12); }
.cat-icon.gold  { background: rgba(245,200,66,.12); }
.cat-icon.blue  { background: rgba(96,165,250,.12); }
.cat-icon.pink  { background: rgba(244,114,182,.12); }

.cat-card h3 {
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--heading);
  margin: 0;
  line-height: 1.3;
}
.cat-card p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  display: none;
}
.cat-priority { font-size: .62rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .05em; line-height: 1.2; }

@media (min-width: 640px) {
  .cat-card h3 { font-size: 1rem; }
  .cat-card p  { display: block; }
}

/* ============================================================
   VERDICT / TESTSIEGER BOX
   ============================================================ */
.verdict-box {
  background: linear-gradient(135deg, var(--card) 0%, rgba(45,189,110,.06) 100%);
  border: 1px solid rgba(45,189,110,.25);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) { .verdict-box { padding: 1.75rem; margin-top: 2rem; } }

.verdict-box-header {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .75rem;
}
@media (min-width: 480px) {
  .verdict-box-header { flex-direction: row; align-items: flex-start; gap: .65rem; flex-wrap: wrap; }
}
.verdict-rank {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #0c1a18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.verdict-box h3 { color: var(--heading); font-size: 1rem; margin: 0; flex: 1; min-width: 0; }
@media (min-width: 480px) { .verdict-box h3 { font-size: 1.1rem; } }

.article-meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}
@media (min-width: 480px) {
  .article-meta { flex-direction: row; align-items: center; gap: .5rem; flex-wrap: wrap; }
}
.article-meta span { display: flex; align-items: center; gap: .3rem; }

/* Score Bars */
.score-bars { display: flex; flex-direction: column; gap: .55rem; margin: 1rem 0; }
.score-row {
  display: grid;
  grid-template-columns: 75px 1fr 28px;
  align-items: center;
  gap: .5rem;
}
@media (min-width: 480px) { .score-row { grid-template-columns: 110px 1fr 30px; gap: .6rem; } }
@media (min-width: 768px) { .score-row { grid-template-columns: 130px 1fr 30px; } }

.score-label { font-size: .72rem; color: var(--muted); }
@media (min-width: 480px) { .score-label { font-size: .78rem; } }
.score-track { height: 6px; background: var(--dark); border-radius: 3px; overflow: hidden; }
.score-fill  { height: 100%; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 3px; }
.score-val   { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--green); font-weight: 600; text-align: right; }

/* CTA row in verdict box */
.verdict-cta-row {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .75rem;
}
@media (min-width: 480px) {
  .verdict-cta-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
}
.verdict-price { font-size: .8rem; color: var(--muted); }
@media (min-width: 480px) { .verdict-price { margin-left: auto; } }

/* ============================================================
   ARTIKEL GRID
   ============================================================ */
.featured-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.article-featured {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: relative;
  overflow: hidden;
}
.article-featured::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}
.article-featured h3 { font-size: 1rem; line-height: 1.35; }
@media (min-width: 768px) {
  .article-featured { padding: 2rem; gap: 1rem; }
  .article-featured h3 { font-size: 1.35rem; }
}

.article-list { display: flex; flex-direction: column; gap: .75rem; }

.article-small {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.article-small h4 { color: var(--heading); line-height: 1.35; font-size: .9rem; }
.article-small p  { font-size: .8rem; color: var(--muted); margin: 0; }

/* ============================================================
   AUTOR-BOX (inline in Artikeln)
   ============================================================ */
.author-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.author-box-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--green);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .author-box-photo { width: 56px; height: 56px; }
}
.author-box-info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.author-box-name { color: var(--heading); font-weight: 600; font-size: .88rem; }
.author-box-role { color: var(--green); font-size: .76rem; }
.author-box-bio  { color: var(--muted); font-size: .76rem; line-height: 1.4; }

/* ============================================================
   TRUST / E-E-A-T GRID
   ============================================================ */
@media (max-width: 379px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem .875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
}
@media (min-width: 768px) {
  .trust-card { padding: 1.25rem; align-items: center; text-align: center; }
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(45,189,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.trust-card h4 { color: var(--heading); font-size: .88rem; }
.trust-card p  { color: var(--muted); font-size: .78rem; margin: 0; line-height: 1.4; }

/* ============================================================
   EXPERTE / AUTOR SEKTION
   ============================================================ */
.expert-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.expert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .expert-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 2.5rem;
  }
}
@media (min-width: 768px) { .expert-inner { gap: 3rem; } }

.expert-photo-wrap { position: relative; flex-shrink: 0; }
.expert-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--green);
  box-shadow: 0 0 32px rgba(45,189,110,.18), 0 6px 24px rgba(0,0,0,.5);
  display: block;
}
@media (min-width: 640px) { .expert-photo { width: 180px; height: 180px; } }
@media (min-width: 768px) { .expert-photo { width: 220px; height: 220px; } }

.expert-badge {
  position: absolute;
  bottom: 6px;
  right: 4px;
  background: var(--green);
  color: #07100f;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
@media (min-width: 640px) { .expert-badge { right: -6px; } }

.expert-content { display: flex; flex-direction: column; gap: .75rem; }
.expert-name  { font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 4vw, 1.8rem); color: var(--heading); margin: 0; line-height: 1.1; }
.expert-title { color: var(--green); font-weight: 600; font-size: .9rem; margin: 0; }
.expert-bio   { color: var(--text); font-size: .9rem; line-height: 1.7; max-width: 560px; margin: 0; }

.expert-credentials { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
@media (min-width: 640px) { .expert-credentials { justify-content: flex-start; } }

.expert-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 640px) { .expert-actions { justify-content: flex-start; } }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: rgba(45,189,110,.06);
  border: 1px solid rgba(45,189,110,.15);
  border-radius: var(--radius);
  padding: .6rem .75rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}
.disclaimer-bar a { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-block: 2rem 1.25rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .footer-top { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
}
@media (min-width: 768px) {
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; padding-bottom: 2rem; margin-bottom: 2rem; }
}

.footer-brand { display: flex; flex-direction: column; gap: .65rem; }
.footer-logo  { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.footer-logo img { width: 30px; height: 30px; }
.footer-logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: .95rem; color: var(--heading); }
.footer-logo-text span { color: var(--green); }
.footer-tagline { font-size: .8rem; color: var(--muted); line-height: 1.5; }
@media (min-width: 640px) { .footer-tagline { max-width: 260px; } }

.footer-nav h5 {
  color: var(--heading);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.footer-nav a  { font-size: .85rem; color: var(--muted); min-height: 44px; display: flex; align-items: center; }
@media (min-width: 768px) { .footer-nav a { min-height: 32px; } }
.footer-nav a:hover { color: var(--text); }

/* 2 Spalten für Nav-Links auf Mobile */
@media (max-width: 639px) {
  .footer-nav-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.amazon-disclaimer { font-size: .72rem; color: var(--dim); line-height: 1.65; }
@media (min-width: 640px) { .amazon-disclaimer { font-size: .76rem; } }
.footer-copy       { font-size: .76rem; color: var(--dim); white-space: nowrap; }
