/**
 * Modernisierte News-CSS v2.0
 * Fokus: Klares, weißes Design mit konsistenten lila Akzenten.
 * Reduzierte Farbpalette für einen professionellen und kohärenten Look.
 * Alle ursprünglichen Klassen und Strukturen wurden beibehalten.
 */

:root {
  /* 🎨 MODERNISIERTES & FOKUSSIERTES FARBSYSTEM */
  --primary-color: #7c3aed;
  --primary-light: #f5f3ff;
  --primary-dark: #6d28d9;
  
  /* Hintergrund- & Textfarben für optimalen Kontrast und Lesbarkeit */
  --background-color: #f8fafc; /* Sehr helles, fast weißes Grau */
  --card-background: #ffffff;
  --text-color: #475569;
  --text-muted: #64748b;
  --heading-color: #1e293b;
  --border-color: #e2e8f0;
  
  /* 📐 KONSISTENTE ABSTÄNDE */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 2.5rem;   /* 40px */
  --space-3xl: 3rem;     /* 48px */
  
  /* 🎯 MODERNE, SUBTILE SCHATTEN */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  /* 📏 KONSISTENTE RADII */
  --radius-sm: 0.25rem;    /* 4px */
  --radius: 0.5rem;        /* 8px */
  --radius-md: 0.75rem;    /* 12px */
  --radius-lg: 1rem;       /* 16px */
  --radius-xl: 1.5rem;     /* 24px */
  --radius-full: 9999px;
  
  /* 📝 TYPOGRAFIE-SKALA */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  
  /* 🌈 GRADIENTEN BASIEREND AUF PRIMÄRFARBE */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-subtle: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);

  /* 🎯 HIGHLIGHT-SYSTEM BASIEREND AUF PRIMÄRFARBE */
  --highlight-bg: var(--primary-light);
  --highlight-text: var(--primary-dark);
  --highlight-border: rgba(124, 58, 237, 0.2);
}

/* 🔄 MODERN RESET & BASE */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { 
  font-size: 16px; 
  scroll-behavior: smooth; 
}
body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
  background: var(--background-color); 
  color: var(--text-color); 
  line-height: 1.7; 
  overflow-x: hidden; 
  min-height: 100vh; 
  padding-top: 5rem;
}
.container { 
  max-width: 80rem;
  margin: 0 auto; 
  padding: var(--space-2xl) var(--space-lg); 
}

/* 📊 READING PROGRESS BAR */
#reading-progress-bar {
  position: fixed;
  top: 5rem;
  left: 0;
  height: var(--space-xs);
  background: var(--gradient-primary);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* 📰 ARTICLE CONTAINER */
.article-container { 
  max-width: 50rem;
  margin: 0 auto; 
  background: var(--card-background); 
  padding: var(--space-2xl); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow); 
  position: relative; 
}
@media (max-width: 48rem) {
  .article-container { 
    padding: var(--space-lg); 
    padding-top: 5rem;
  } 
}
@media (max-width: 30rem) {
  .article-container { 
    padding-top: 4.375rem;
  } 
}

/* 📝 ARTICLE HEADER */
.article-header .category { 
  display: inline-block; 
  background: var(--primary-color); 
  color: white; 
  padding: var(--space-xs) var(--space-sm); 
  border-radius: var(--radius-full); 
  font-size: var(--text-sm); 
  font-weight: 600; 
  margin-bottom: var(--space-lg); 
}
.article-header h1 { 
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl)); 
  font-weight: 800; 
  color: var(--heading-color); 
  line-height: 1.2; 
  margin-bottom: var(--space-md); 
}
.article-meta { 
  display: flex; 
  align-items: center; 
  gap: var(--space-md); 
  margin-bottom: var(--space-xl); 
  flex-wrap: wrap; 
  color: var(--text-muted); 
  font-size: var(--text-sm); 
}
.author-info { 
  display: flex; 
  align-items: center; 
  gap: var(--space-sm); 
}
.author-avatar { 
  width: var(--space-2xl); 
  height: var(--space-2xl); 
  border-radius: var(--radius-full); 
  object-fit: cover; 
}

/* 🖼️ ARTICLE IMAGE */
.article-image { 
  width: 100%; 
  height: auto; 
  max-height: 31.25rem;
  object-fit: cover; 
  border-radius: var(--radius-lg); 
  margin-bottom: var(--space-2xl); 
  box-shadow: var(--shadow-lg); 
}

/* 📰 ARTICLE CONTENT */
.article-content { 
  font-size: var(--text-lg); 
}
.article-content h2 { 
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl)); 
  font-weight: 700; 
  color: var(--heading-color); 
  margin: var(--space-2xl) 0 var(--space-md); 
  line-height: 1.3; 
}
.article-content p { 
  margin-bottom: var(--space-lg); 
}
.article-content a { 
  color: var(--primary-color); 
  text-decoration: none; 
  font-weight: 600; 
  transition: color 0.15s ease;
}
.article-content a:hover { 
  text-decoration: underline; 
  color: var(--primary-dark);
}
.article-content ul { 
  list-style: none; 
  padding-left: 0; 
  margin-bottom: var(--space-lg); 
}
.article-content li { 
  padding-left: var(--space-xl); 
  position: relative; 
  margin-bottom: var(--space-xs); 
}
.article-content li::before { 
  content: '✓'; 
  position: absolute; 
  left: 0; 
  color: var(--primary-color); /* Vereinheitlicht */
  font-weight: 800; 
}

/* 💡 KEY TAKEAWAYS */
.key-takeaways { 
  background: var(--primary-light); 
  border-left: var(--space-xs) solid var(--primary-color); 
  padding: var(--space-lg); 
  margin: var(--space-xl) 0; 
  border-radius: var(--radius); 
}
.key-takeaways h3 { 
  color: var(--primary-dark); 
  font-size: var(--text-xl); 
  margin-top: 0; 
  margin-bottom: var(--space-md); 
}
.key-takeaways ul { 
  margin-bottom: 0; 
}
.key-takeaways li::before { 
  content: '›'; /* Moderneres, cleaneres Icon */
  font-weight: 700;
}

/* 💬 BLOCKQUOTE */
.article-content blockquote { 
  font-size: var(--text-xl); 
  font-style: italic; 
  color: var(--heading-color); 
  border-left: var(--space-xs) solid var(--primary-color); /* Vereinheitlicht */
  padding: var(--space-md) var(--space-lg); 
  margin: var(--space-xl) 0; 
  background-color: var(--background-color); 
  border-radius: 0 var(--radius) var(--radius) 0; 
}
.article-content blockquote footer { 
  font-style: normal; 
  font-size: var(--text-sm); 
  color: var(--text-color); 
  margin-top: var(--space-md); 
}

/* ↩️ ZURÜCK-BUTTON */
.back-to-news { 
  display: inline-flex; 
  align-items: center; 
  gap: var(--space-sm); 
  background: var(--card-background); 
  color: var(--heading-color); 
  padding: var(--space-sm) var(--space-sm); 
  border-radius: var(--radius-full); 
  text-decoration: none; 
  font-weight: 700; 
  box-shadow: var(--shadow); 
  border: 1px solid var(--border-color); 
  transition: transform 0.15s ease, box-shadow 0.15s ease; 
}
.back-to-news i { 
  color: var(--primary-color); 
  font-size: var(--text-sm); 
}
.back-to-news:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-lg); 
}

/* 📍 BUTTON VARIANTS */
.back-to-news.top { 
  position: absolute; 
  top: var(--space-2xl); 
  left: var(--space-2xl); 
  padding: var(--space-sm) var(--space-md); 
  border-radius: var(--radius-md); 
  font-size: var(--text-sm); 
}
@media (max-width: 48rem) {
  .back-to-news.top { 
    top: var(--space-lg); 
    left: var(--space-lg); 
    font-size: var(--text-xs); 
    padding: var(--space-xs) var(--space-sm); 
  } 
}

/* Bottom button container */
.back-row-bottom { 
  margin-top: var(--space-xl); 
  padding-top: var(--space-xl); 
  text-align: center; 
  border-top: 1px solid var(--border-color); 
}
.back-to-news.bottom { 
  border-radius: var(--radius-md); 
  padding: var(--space-sm) var(--space-lg); 
  font-size: var(--text-base); 
}

/* 📖 LEAD PARAGRAPH */
.article-content .lead { 
  font-size: var(--text-xl); 
  font-weight: 500; 
  color: var(--heading-color); 
  margin-bottom: var(--space-lg);
}

/* 🔗 ALT-LINK-BOX - Universal für News & Blog */
.alt-link-box {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); /* Vereinheitlicht */
  border: 2px solid var(--primary-color); /* Vereinheitlicht */
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.alt-link-box:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.alt-link-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--space-xs);
  background: var(--gradient-primary); /* Vereinheitlicht */
}
.alt-link-box p {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.alt-link-box strong {
  color: var(--primary-color); /* Vereinheitlicht */
  font-weight: 700;
}
.alt-link-box a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.alt-link-box a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
/* Bottom variant */
.alt-link-box.bottom {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-color: var(--border-color);
  margin-top: var(--space-2xl);
}
.alt-link-box.bottom::before {
  background: var(--text-muted);
}
.alt-link-box.bottom strong {
  color: var(--text-muted);
}
/* Mobile optimizations */
@media (max-width: 48rem) {
  .alt-link-box {
    padding: var(--space-md);
    margin: var(--space-lg) 0;
  }
  .alt-link-box p {
    font-size: var(--text-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  .alt-link-box a {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
  }
  /* Hide reading mode toggle + discussion jumps on mobile */
  .lesemodus-toggle{ display:none !important; }
  .lesemodus-toggle .discuss-btn{ display:none !important; }
  .opinion-comments .btn-discuss{ display:none !important; }
}

/* --- Overrides added by fix --- */

/* Ensure status grid responsive and centered */
.status-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}
@media (max-width: 1100px){
  .status-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 640px){
  .status-grid{grid-template-columns: 1fr; max-width: 720px; margin:0 auto;}
}

/* Equal height cards & tidy header */
.status-card{
  background: var(--card-background, #fff);
  border:1px solid var(--border-color,#e2e8f0);
  border-radius: var(--radius-lg, 16px); /* Korrigierter Radius */
  box-shadow: var(--shadow, 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05));
  padding:20px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.status-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:6px;
}
.status-icon{
  width:40px; height:40px; border-radius:9999px;
  display:grid; place-items:center;
  background: var(--primary-light, #f5f3ff);
  color: var(--primary-color, #7c3aed);
  flex:0 0 40px;
}
.status-value{font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); font-weight:800; color: var(--heading-color,#1e293b); margin:6px 0;}
.status-description{color: var(--text-color,#475569); margin-bottom:10px;}
.status-footnote{margin-top:auto; font-size:0.95rem;}
.status-footnote .inline-sources a, .status-card a{
  color: var(--primary-color); /* Vereinheitlicht */
  text-decoration: underline;
}
.status-footnote .inline-sources a:hover, .status-card a:hover{opacity:.85}

/* Latest/Older sections layout tweaks */
.section-header, .status-header, #older-articles-section .section-header{
  align-items:center;
}

/* Related articles (cards) */
.related-articles, .related-legal { margin-top: 2rem; }
.related-articles h3, .related-legal h2, .related-legal h3 { margin-bottom: 1rem; color: var(--heading-color); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--card-background, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.related-card img { width: 100%; height: 110px; object-fit: cover; display:block; }
.related-card span, .related-card .related-card-body { padding: 10px 12px; font-weight: 600; line-height: 1.2; }
.related-card .related-card-body strong { display:block; margin-bottom:6px; color: var(--heading-color); font-weight:700; }
.related-card .tag { display:inline-block; margin-top:6px; font-size:0.85rem; color:#64748b; }

@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-card img { height: 140px; }
}

/* 💭 OPINION BLOCK - Universal */
.opinion-block {
  background: var(--gradient-subtle);
  border: 2px solid var(--primary-color); /* Vereinheitlicht */
  border-radius: var(--radius-lg);
  margin: var(--space-3xl) 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.opinion-header {
  background: var(--primary-color); /* Vereinheitlicht */
  color: white;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.opinion-author-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.opinion-avatar {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: var(--radius-full);
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}
.opinion-meta h4 {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 700;
}
.opinion-disclaimer {
  font-size: var(--text-sm);
  opacity: 0.9;
  margin: 0;
}
.opinion-toggle button {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  transition: all 0.2s ease;
}
.opinion-toggle button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.opinion-content {
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  font-size: var(--text-lg);
  line-height: 1.7;
}
.opinion-content p {
  margin-bottom: var(--space-md);
}
.opinion-content p:last-of-type {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--heading-color);
}
.opinion-comments {
  border-top: 1px solid rgba(124, 58, 237, 0.2); /* Vereinheitlicht */
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
}
.opinion-comments h5 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

/* Main Comments Section */
.main-comments-section {
  background: var(--background-color);
  padding: 3rem 0;
  margin-top: 4rem;
}
.comments-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--radius-lg); /* Angepasst */
  box-shadow: var(--shadow);
}
.comments-container h3 {
  margin: 0 0 2rem 0;
  color: var(--heading-color);
  font-size: 1.5rem;
}
/* Responsive Opinion Block */
@media (max-width: 768px) {
  .opinion-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .opinion-content {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
  .opinion-comments {
    padding: 1rem;
  }
  .comments-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}
@media (max-width: 480px) {
  .opinion-avatar {
    width: 40px;
    height: 40px;
  }
  .opinion-meta h4 {
    font-size: 1rem;
  }
  .opinion-disclaimer {
    font-size: 0.8rem;
  }
}
/* Inline/flush variant */
.opinion-inline.flush{
  margin: 0 0 1rem 0;
  border-radius: 14px;
}
.comments-container .opinion-inline.flush{
  border-width: 1px;
  border-color: var(--border-color);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 80%);
  box-shadow: none;
}
.opinion-comments .opinion-cta{display:flex; justify-content:flex-end;}
.opinion-comments .btn-discuss{
  display:inline-flex; align-items:center; gap:.5rem;
  background: var(--primary-color); color:#fff; text-decoration:none;
  padding:.6rem 1rem; border-radius:999px; font-weight:700; box-shadow: var(--shadow);
}
.opinion-comments .btn-discuss:hover{filter:brightness(1.05); transform: translateY(-1px);}

/* 🎯 ULTRA-MINIMAL, EINHEITLICHES HIGHLIGHTING */
/* Alle Highlights nutzen nun das primäre Farbschema für Konsistenz. */
.highlight-success, .highlight-win, .highlight-positive, .highlight-quality, .highlight-balance, .highlight-benefit, .highlight-goal, .highlight-achieved, .highlight-safe, .highlight-controlled, .highlight-clean,
.highlight-stable, .highlight-protection, .highlight-learning, .highlight-growth, .highlight-growth-huge, .highlight-opposite, .highlight-easy, .highlight-open,
.highlight-attention, .highlight-impressive, .highlight-excitement, .highlight-big, .highlight-clear { 
  background: var(--highlight-bg);
  color: var(--highlight-text);
  padding: 2px 5px; 
  border-radius: 3px; 
  font-weight: 600; 
  border: 1px solid var(--highlight-border);
}

/* Zahlen im Monospace-Look */
.highlight-number, .highlight-number-big, .highlight-number-huge, .highlight-stable-number, .highlight-big-number { 
  background: var(--highlight-bg);
  color: var(--primary-dark); 
  padding: 2px 5px; 
  border-radius: 4px; 
  font-weight: 650; 
  font-family: ui-monospace, 'SF Mono', 'Monaco', 'Roboto Mono', monospace; 
  font-size: 0.9em;
  border: 1px solid var(--highlight-border);
}

/* Spezialfälle */
.highlight-date { 
  background: var(--highlight-bg);
  color: var(--highlight-text); 
  padding: 1px 4px; 
  border-radius: 2px; 
  font-weight: 600; 
  font-family: ui-monospace, 'SF Mono', 'Monaco', 'Roboto Mono', monospace;
  border: 1px solid var(--highlight-border);
}
.highlight-quote { 
  background: var(--highlight-bg);
  border-left: 2px solid var(--primary-color); 
  padding: 3px 6px; 
  font-style: italic; 
  font-weight: 500; 
  border-radius: 0 2px 2px 0;
}
.highlight-negative { 
  background: rgba(71, 85, 105, 0.1); 
  color: #475569; 
  padding: 2px 5px; 
  border-radius: 3px; 
  font-weight: 600; 
  text-decoration: line-through; 
  opacity: 0.7;
  border: 1px solid rgba(71, 85, 105, 0.2);
}

/* Subtile Icon-Animationen */
.highlight-trend { 
  display: inline-block; 
  animation: subtle-float 3s ease-in-out infinite; 
}
.highlight-stable-icon, .highlight-success-icon, .highlight-thumbs, .highlight-party, .highlight-science, .highlight-medical, .highlight-world, .highlight-eyes, .highlight-pride, .highlight-debunk, .highlight-relief, .highlight-truth { 
  display: inline-block; 
  animation: subtle-pulse 2.5s ease-in-out infinite; 
}

/* 📚 LEXICON SYSTEM */
.lexicon-term {
  position: relative;
  display: inline;
  cursor: help;
  border-bottom: 2px dotted var(--primary-color);
  background: var(--highlight-bg);
  color: var(--highlight-text);
  padding: 1px 3px;
  border-radius: 3px;
  transition: all 0.2s ease;
  font-weight: 600;
}
.lexicon-term:hover, .lexicon-term:focus {
  background: rgba(124, 58, 237, 0.2);
  border-bottom-color: var(--primary-dark);
}

/* Tooltip */
.lexicon-tooltip {
  position: fixed;
  background: var(--card-background);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
  pointer-events: none;
}
.lexicon-tooltip.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lexicon-tooltip .lexicon-term-title {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  display: block;
  font-size: 0.95rem;
}

/* Keyframe Animations */
@keyframes subtle-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-1px); }
}
@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* 📚 LESEMODUS */
.lesemodus-toggle {
  position: fixed;
  top: 8.75rem;
  right: var(--space-lg);
  z-index: 999;
  transition: all 0.3s ease;
}
.lesemodus-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.lesemodus-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.lesemodus-btn i {
  font-size: var(--text-lg);
}

/* Discuss button placed under Lesemodus toggle */
.lesemodus-toggle .discuss-btn{
  display:flex; align-items:center; gap:.5rem; margin-top:.5rem;
  background: #ffffff; color: var(--primary-color);
  border:1px solid var(--border-color); border-radius: 999px;
  padding: .5rem .875rem; font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow);
}
.lesemodus-toggle .discuss-btn:hover{
  background: var(--primary-light); border-color: var(--primary-color);
}
.lesemodus-toggle .discuss-btn i{ font-size: 1rem; }

/* LESEMODUS ACTIVE STATE */
body.lesemodus-active {
  background: #fefefe;
}
body.lesemodus-active #header,
body.lesemodus-active #footer,
body.lesemodus-active .back-to-news,
body.lesemodus-active .alt-link-box,
body.lesemodus-active .related-articles,
body.lesemodus-active .main-comments-section,
body.lesemodus-active #reading-progress-bar {
  display: none !important;
}
body.lesemodus-active .container {
  max-width: 700px;
  padding: 20px;
}
body.lesemodus-active .article-container {
  box-shadow: none;
  border: none;
  padding: 40px 20px;
  margin-top: 0;
}
body.lesemodus-active .article-header .category {
  background: #64748b;
  font-size: 0.8rem;
  padding: 4px 12px;
}
body.lesemodus-active .article-header h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
body.lesemodus-active .article-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 2.5rem;
}
body.lesemodus-active .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2d3748;
}
body.lesemodus-active .article-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: #1a202c;
}
body.lesemodus-active .article-content p {
  margin-bottom: 1.5rem;
}
body.lesemodus-active .article-image {
  margin-bottom: 2rem;
  border-radius: 8px;
}

/* Remove highlights in Lesemodus */
body.lesemodus-active .highlight-success,
body.lesemodus-active .highlight-win,
body.lesemodus-active .highlight-positive,
body.lesemodus-active .highlight-stable,
body.lesemodus-active .highlight-number,
body.lesemodus-active .highlight-number-big,
body.lesemodus-active .highlight-attention,
body.lesemodus-active .highlight-date,
body.lesemodus-active .lexicon-term {
  background: none !important;
  color: inherit !important;
  border: none !important;
  padding: 0 !important;
  font-weight: inherit !important;
  border-radius: 0 !important;
}

/* Lesemodus Button active style */
body.lesemodus-active .lesemodus-btn {
  background: #dc2626;
  color: white;
}
body.lesemodus-active .lesemodus-btn:hover {
  background: #b91c1c;
}
body.lesemodus-active .lesemodus-btn span::before {
  content: "Lesemodus beenden";
}
body.lesemodus-active .lesemodus-btn span {
  font-size: 0;
}

/* 📱 MOBILE OPTIMIZATIONS */
@media (max-width: 48rem) {
  .lexicon-tooltip { 
    max-width: 17.5rem;
    padding: var(--space-sm) var(--space-xs); 
    font-size: var(--text-sm); 
  }
  .lesemodus-toggle {
    top: 7.5rem;
    right: var(--space-sm);
  }
  .lesemodus-btn {
    padding: var(--space-sm) var(--space-sm);
    font-size: var(--text-sm);
  }
  .lesemodus-toggle .discuss-btn{ padding: .45rem .75rem; font-size: .9rem; }
  body.lesemodus-active .container {
    padding: var(--space-sm);
  }
  body.lesemodus-active .article-container {
    padding: var(--space-lg) var(--space-sm);
  }
}