/* =============================================================
   Wattbalkon — Editorial Blog CSS
   Migrates Solar Pulse (sp-*) components from dark to editorial.
   Scope: body.editorial-body .single-post-content
   Tokens: Cream/terracotta/serif — matches landing page.
   (c) 2026 wattbalkon.de  v1.1.2
   ============================================================= */

/* === BLOG POST LAYOUT (editorial) === */

/* Override dark theme :root vars — scoped to body for higher specificity */
body.editorial-body {
  --bg: #f8f6f1;
  --card: #fff;
  --border: #e6e0d6;
  --accent: #d4673a;
  --accent-soft: rgba(212,103,58,.06);
  --accent-mid: rgba(212,103,58,.12);
  --text: #1a1816;
  --text-2: #6a6660;
  --text-3: #9a9690;
  --hero-dark: #1a1816;
  --hero-mid: #2a2824;
  --radius: 4px;
  --content-w: 680px;
  --wide-w: 1120px;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  /* Override dark theme vars */
  --bg2: transparent;
  --el: var(--card);
  --bd: var(--border);
  --bdh: var(--accent);
  --tx: var(--text);
  --t2: var(--text-2);
  --t3: var(--text-3);
  --ac: var(--accent);
  --acd: var(--accent-soft);
  --r: 4px;
  --fb: var(--font-sans);
  --fh: var(--font-serif);
  /* Override Solar Pulse dark vars → editorial */
  --sp-amber: var(--accent);
  --sp-amber-light: var(--accent);
  --sp-amber-dark: var(--accent);
  --sp-amber-glow: var(--accent-soft);
  --sp-dark: var(--bg);
  --sp-dark-2: var(--card);
  --sp-dark-3: var(--card);
  --sp-surface: var(--card);
  --sp-text: var(--text);
  --sp-text-muted: var(--text-2);
  --sp-text-dim: var(--text-3);
  --sp-border: var(--border);
  --sp-radius: var(--radius);
  --sp-success-soft: rgba(90,143,58,.1);
  --sp-danger-soft: rgba(196,90,58,.1);
  /* Override style.css --color-* vars (article-v3.css uses these) */
  --color-bg-solid: var(--bg);
  --color-bg: var(--bg);
  --color-text: var(--text);
  --color-text-bright: var(--text);
  --color-text-muted: var(--text-2);
  --color-text-dim: var(--text-3);
  --color-text-link: var(--accent);
  --color-border: var(--border);
  --color-border-light: var(--border);
  --color-surface: var(--card);
  --color-surface-hover: var(--card);
  --color-surface-active: var(--card);
  --color-primary: var(--accent);
  --color-primary-hover: var(--accent);
  --color-primary-dark: var(--accent);
  --color-accent: var(--accent);
  --color-accent-hover: var(--accent);
  --color-success: #5a8f3a;
  --color-success-hover: #4a7a2a;
  --color-warm: #c47a3a;
  --color-warm-dark: #b46a2a;
  --color-danger: #c45a3a;
}

body.editorial-body {
  background: var(--bg, #f8f6f1) !important;
  color: var(--text, #1a1816) !important;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.editorial-body h1,
body.editorial-body h2,
body.editorial-body h3,
body.editorial-body h4 {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif) !important;
  color: var(--text, #1a1816) !important;
  font-weight: 400;
}

body.editorial-body p {
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body a {
  color: var(--accent, #d4673a) !important;
  text-decoration: none;
  transition: color .2s;
}
body.editorial-body a:hover {
  color: var(--text, #1a1816) !important;
}

/* === ARTICLE HEADER === */
body.editorial-body .article-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 24px;
  text-align: left;
}

/* Mobile: centered header */
@media (max-width: 768px) {
  body.editorial-body .article-header {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 24px 24px;
    text-align: center;
  }
}

body.editorial-body .article-title {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  color: var(--text, #1a1816) !important;
  margin-bottom: 12px;
}

body.editorial-body .article-meta {
  font-size: 12px;
  color: var(--text-3, #9a9690);
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

body.editorial-body .article-cat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent, #d4673a);
  margin-bottom: 10px;
}

body.editorial-body .article-readtime {
  font-size: 12px;
  color: var(--text-3, #9a9690);
}

/* === ARTICLE CONTENT === */
body.editorial-body .article-content,
body.editorial-body .single-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 60px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2, #6a6660);
}

/* Mobile: narrower content */
@media (max-width: 768px) {
  body.editorial-body .article-content,
  body.editorial-body .single-post-content {
    max-width: 100%;
    padding: 0 20px 40px;
    font-size: 15px;
    line-height: 1.75;
  }
}

body.editorial-body .article-content h2 {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif) !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--text, #1a1816) !important;
  margin: 40px 0 16px;
  line-height: 1.2;
}

body.editorial-body .article-content h3 {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--text, #1a1816) !important;
  margin: 32px 0 12px;
}

body.editorial-body .article-content p {
  color: var(--text-2, #6a6660);
  margin-bottom: 18px;
  line-height: 1.75;
}

body.editorial-body .article-content ul,
body.editorial-body .article-content ol {
  color: var(--text-2, #6a6660);
  margin-bottom: 18px;
  padding-left: 24px;
  line-height: 1.75;
}

body.editorial-body .article-content li {
  margin-bottom: 6px;
}

body.editorial-body .article-content strong {
  color: var(--text, #1a1816);
  font-weight: 600;
}

body.editorial-body .article-content blockquote {
  border-left: 2px solid var(--accent, #d4673a);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-2, #6a6660);
}

body.editorial-body .article-content img {
  border-radius: 4px;
  margin: 24px 0;
}

body.editorial-body .article-hero-img {
  width: 100%;
  max-width: 1120px;
  border-radius: 4px;
  margin: 0 auto 32px;
  display: block;
}

/* === CONTENT WIDTH EXPAND FOR WIDE COMPONENTS === */
body.editorial-body .article-content .sp-stats,
body.editorial-body .article-content .sp-split,
body.editorial-body .article-content .sp-table-wrap,
body.editorial-body .article-content .sp-cta-wrap,
body.editorial-body .article-content .sp-products {
  max-width: none;
}

/* =============================================================
   BLOG POST WIDTH ALIGNMENT (v1.1.2)
   Header + Hero-Bild = gleiche Breite wie Blog-Content (680px)
   Verhindert Breiten-Mismatch, das Mobile zum Rauszoomen zwingt.
   ============================================================= */

/* Header-Navigation auf Blog-Seiten auf Content-Breite begrenzen */
body.editorial-body.single-post .ed-nav-inner {
  max-width: 1200px;
}

/* Hero-Bild auf Blog-Seiten auf Content-Breite begrenzen (nicht 1120px) */
body.editorial-body.single-post .article-hero-img {
  max-width: 100%;
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  body.editorial-body.single-post .article-hero-img {
    max-width: 100%;
  }
}

/* Article-Main: Padding so dass Header, Hero und Content aligned sind */
body.editorial-body.single-post .article-main {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body.editorial-body.single-post .article-main {
    padding: 0 20px;
    max-width: 100%;
  }
}

/* =============================================================
   SP COMPONENTS — EDITORIAL RESTYLE
   ============================================================= */

/* === DROP CAP (editorial signature) === */
body.editorial-body .article-content > p:first-of-type::first-letter {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif);
  font-size: 56px;
  line-height: .8;
  color: var(--accent, #d4673a);
  float: left;
  margin: 4px 12px 0 0;
  font-weight: 400;
}

/* === STATS CARDS === */
body.editorial-body .sp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

body.editorial-body .sp-stat {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s;
}

body.editorial-body .sp-stat:hover {
  border-color: var(--accent, #d4673a);
}

body.editorial-body .sp-val {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent, #d4673a);
  margin-bottom: 4px;
}

body.editorial-body .sp-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3, #9a9690);
}

body.editorial-body .sp-sub {
  font-size: 12px;
  color: var(--text-3, #9a9690);
  margin-top: 2px;
}

/* === TABLE WRAP === */
body.editorial-body .sp-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  -webkit-overflow-scrolling: touch;
}

body.editorial-body .sp-table-wrap table {
  width: 100% !important;
  border-collapse: collapse;
  min-width: 400px;
}

body.editorial-body .sp-table-wrap th {
  background: var(--accent-soft, rgba(212,103,58,.06));
  color: var(--accent, #d4673a);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border, #e6e0d6);
}

body.editorial-body .sp-table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border, #e6e0d6);
  color: var(--text-2, #6a6660);
  font-size: 14px;
}

body.editorial-body .sp-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

body.editorial-body .sp-table-wrap tbody tr:nth-child(even) td {
  background: rgba(0,0,0,.015);
}

/* Backward-compat: same table styles */
body.editorial-body .comparison-table-wrapper {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
}

body.editorial-body .comparison-table-wrapper table {
  width: 100% !important;
  border-collapse: collapse;
}

body.editorial-body .comparison-table-wrapper th {
  background: var(--accent-soft, rgba(212,103,58,.06));
  color: var(--accent, #d4673a);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

body.editorial-body .comparison-table-wrapper td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border, #e6e0d6);
  color: var(--text-2, #6a6660);
}

/* === PROS / CONS SPLIT === */
body.editorial-body .sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

body.editorial-body .sp-box {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  padding: 24px;
}

body.editorial-body .sp-box.sp-pros {
  border-top: 3px solid #5a8f3a;
}

body.editorial-body .sp-box.sp-cons {
  border-top: 3px solid #c45a3a;
}

body.editorial-body .sp-box h4,
body.editorial-body .sp-box .sp-box-title {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-3, #9a9690);
  margin-bottom: 12px;
}

body.editorial-body .sp-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.editorial-body .sp-box li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-2, #6a6660);
  border-bottom: 1px solid var(--border, #e6e0d6);
}

body.editorial-body .sp-box li:last-child {
  border-bottom: none;
}

body.editorial-body .sp-box.sp-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5a8f3a;
  font-weight: 600;
}

body.editorical-body .sp-box.sp-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c45a3a;
  font-weight: 600;
}

/* Backward-compat */
body.editorial-body .pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
body.editorial-body .pros-col,
body.editorial-body .cons-col {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  padding: 24px;
}

/* === FAQ === */
body.editorial-body .sp-faq {
  margin: 28px 0;
}

body.editorial-body .sp-faq details,
body.editorial-body .inline-faq details {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

body.editorial-body .sp-faq details[open],
body.editorial-body .inline-faq details[open] {
  border-color: var(--accent, #d4673a);
}

body.editorial-body .sp-faq summary,
body.editorial-body .inline-faq summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--text, #1a1816);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.editorial-body .sp-faq summary::after,
body.editorial-body .inline-faq summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--accent, #d4673a);
  transition: transform .2s;
}

body.editorial-body .sp-faq details[open] summary::after,
body.editorial-body .inline-faq details[open] summary::after {
  transform: rotate(45deg);
}

body.editorial-body .sp-faq details > div,
body.editorial-body .sp-faq details > p,
body.editorial-body .inline-faq details > div,
body.editorial-body .inline-faq details > p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-2, #6a6660);
  line-height: 1.7;
}

/* === VERDICT === */
body.editorial-body .sp-verdict,
body.editorial-body .verdict-box {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-left: 3px solid var(--accent, #d4673a);
  border-radius: 4px;
  padding: 28px;
  margin: 28px 0;
}

body.editorial-body .sp-vlabel,
body.editorial-body .verdict-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent, #d4673a);
  margin-bottom: 8px;
}

body.editorial-body .sp-vdesc,
body.editorial-body .verdict-text {
  font-size: 14px;
  color: var(--text-2, #6a6660);
  line-height: 1.7;
  margin-bottom: 12px;
}

body.editorial-body .sp-vscore,
body.editorial-body .sp-stars {
  font-size: 20px;
  color: #d4a83a;
  letter-spacing: 2px;
}

/* === CTA === */
body.editorial-body .sp-cta-wrap,
body.editorial-body .cta-wrapper {
  margin: 32px 0;
  text-align: center;
}

body.editorial-body .sp-cta,
body.editorial-body .cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: var(--accent, #d4673a);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 1px solid var(--accent, #d4673a);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}

body.editorial-body .sp-cta:hover,
body.editorial-body .cta-button:hover {
  background: transparent;
  color: var(--accent, #d4673a) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,103,58,.12);
}

/* === FEATURE BOX === */
body.editorial-body .sp-feature,
body.editorial-body .key-feature-box {
  background: var(--accent-soft, rgba(212,103,58,.06));
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
}

body.editorial-body .sp-ftitle,
body.editorial-body .kf-title {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent, #d4673a);
  margin-bottom: 8px;
}

body.editorial-body .sp-feature p {
  font-size: 14px;
  color: var(--text-2, #6a6660);
}

/* === AUTHOR BIO === */
body.editorial-body .sp-author,
body.editorial-body .author-bio {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  border-radius: 4px;
  margin: 32px 0;
}

body.editorial-body .sp-avatar,
body.editorial-body .author-bio-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft, rgba(212,103,58,.06));
  flex-shrink: 0;
}

body.editorial-body .sp-author-info {
  flex: 1;
}

body.editorial-body .sp-arole,
body.editorial-body .author-bio-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent, #d4673a);
  margin-bottom: 4px;
}

body.editorial-body .sp-author h4,
body.editorial-body .author-bio h4 {
  font-family: var(--font-serif, 'Source Serif 4', Georgia, serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #1a1816);
  margin-bottom: 4px;
}

body.editorial-body .sp-author p {
  font-size: 13px;
  color: var(--text-3, #9a9690);
  line-height: 1.5;
}

/* === SOURCES === */
body.editorial-body .sp-sources,
body.editorial-body .sources-section {
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border, #e6e0d6);
}

body.editorial-body .sp-sources h4,
body.editorial-body .sources-section h4 {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-3, #9a9690);
  margin-bottom: 12px;
}

body.editorial-body .sp-sources ol,
body.editorial-body .sp-sources ul {
  font-size: 12px;
  color: var(--text-3, #9a9690);
  padding-left: 20px;
  line-height: 1.6;
}

body.editorial-body .sp-sources li {
  margin-bottom: 4px;
}

body.editorial-body .sp-sources a,
body.editorial-body .sources-section a {
  color: var(--text-3, #9a9690) !important;
  text-decoration: none;
  border-bottom: 1px dotted var(--text-3, #9a9690);
}

body.editorial-body .sp-sources a:hover {
  color: var(--accent, #d4673a) !important;
  border-bottom-color: var(--accent, #d4673a);
}

/* === DISCLOSURE === */
body.editorial-body .sp-disclosure,
body.editorial-body .affiliate-disclosure {
  font-size: 12px;
  color: var(--text-3, #9a9690);
  padding: 12px 0;
  border-top: 1px solid var(--border, #e6e0d6);
  margin-top: 32px;
  font-style: italic;
}

/* === EZ-TOC (Table of Contents) === */
body.editorial-body #ez-toc-container {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  padding: 20px 24px !important;
  margin-bottom: 2em !important;
}

body.editorial-body #ez-toc-container .ez-toc-title {
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  color: var(--text-3, #9a9690) !important;
}

body.editorial-body #ez-toc-container a {
  color: var(--text-2, #6a6660) !important;
  font-size: 13px;
  text-decoration: none;
}

body.editorial-body #ez-toc-container a:hover {
  color: var(--accent, #d4673a) !important;
}

/* === ARTICLE NAV (prev/next) === */
body.editorial-body .article-nav {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border, #e6e0d6);
  margin-top: 40px;
}

body.editorial-body .article-nav a {
  font-size: 13px;
  color: var(--text-2, #6a6660) !important;
  text-decoration: none;
}

body.editorial-body .article-nav a:hover {
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .article-nav-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-3, #9a9690);
  display: block;
  margin-bottom: 4px;
}

/* === SCROLL TO TOP === */
body.editorial-body .scroll-to-top {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e6e0d6);
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .scroll-to-top:hover {
  border-color: var(--accent, #d4673a);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  body.editorial-body .sp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  body.editorial-body .sp-split,
  body.editorial-body .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  body.editorial-body .sp-author,
  body.editorial-body .author-bio {
    flex-direction: column;
    text-align: center;
  }

  body.editorial-body .article-content > p:first-of-type::first-letter {
    font-size: 42px;
  }

  /* ── Article Layout Mobile Fix (v1.1.2 — width alignment) ── */
  body.editorial-body .article-main {
    padding: 0 16px !important;
  }

  /* CRITICAL: article-content-col darf nicht aus dem Viewport ausbrechen
     style.css setzt max-width: 780px auf ≤1024px — das ist breiter als Mobile-Viewport */
  body.editorial-body .article-content-col {
    max-width: 100% !important;
    overflow: hidden;
  }

  body.editorial-body .article-content {
    max-width: 100% !important;
  }

  /* Header-Inner auf Mobile: gleiches Padding wie article-main */
  body.editorial-body.single-post .ed-nav-inner {
    max-width: 100%;
    padding: 0 16px;
  }

  body.editorial-body .article-header {
    padding: 24px 0 16px !important;
    text-align: center;
  }

  body.editorial-body .article-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    line-height: 1.15 !important;
  }

  body.editorial-body .article-meta {
    font-size: 12px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  body.editorial-body .article-cat-badge {
    margin-bottom: 8px;
  }

  body.editorial-body .article-hero-img {
    max-width: 100% !important;
    margin: 0 0 24px !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    border-radius: 4px !important;
    overflow: hidden;
  }

  body.editorial-body .article-hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  body.editorial-body .article-wrap {
    padding: 16px 0 40px !important;
  }

  body.editorial-body .article-content {
    font-size: 16px;
  }

  body.editorial-body .article-content h2 {
    font-size: 20px !important;
  }

  body.editorial-body .article-content h3 {
    font-size: 17px !important;
  }

  body.editorial-body .article-nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  body.editorial-body .sp-stats {
    grid-template-columns: 1fr;
  }

  body.editorial-body .sp-cta,
  body.editorial-body .cta-button {
    display: block;
    width: 100%;
  }

  body.editorial-body .article-content > p:first-of-type::first-letter {
    float: none;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
  }

  /* ── Article Layout Small Mobile Fix (v1.1.2 — width alignment) ── */
  body.editorial-body .article-main {
    padding: 0 12px !important;
  }

  body.editorial-body .article-content-col {
    max-width: 100% !important;
  }

  body.editorial-body .article-content {
    max-width: 100% !important;
  }

  /* Header-Inner: gleiches 12px Padding wie article-main */
  body.editorial-body.single-post .ed-nav-inner {
    padding: 0 12px;
  }

  body.editorial-body .article-header {
    padding: 16px 0 12px !important;
  }

  body.editorial-body .article-title {
    font-size: 1.35rem !important;
    line-height: 1.2 !important;
  }

  body.editorial-body .article-meta {
    font-size: 11px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  body.editorial-body .article-meta-sep {
    display: none;
  }

  body.editorial-body .article-cat-badge {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  body.editorial-body .article-content {
    font-size: 15px;
  }

  body.editorial-body .article-content h2 {
    font-size: 18px !important;
  }

  body.editorial-body .article-content h3 {
    font-size: 16px !important;
  }
}

/* === REDUCED MOTION === */

/* ── Hero Image: Editorial override (remove dark-theme remnants) ── */
body.editorial-body .article-hero-img {
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  border-radius: 4px !important;
  overflow: hidden;
}

body.editorial-body .article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  body.editorial-body * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* ===== DESKTOP RESPONSIVE + DARK THEME FIXES (v1.1.3) ===== */

/* Cookie Banner: centered on desktop */
@media (min-width: 769px) {
  .cmplz-cookiebanner {
    top: 50% !important;
    left: 50% !important;
    right: initial !important;
    bottom: initial !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
}

/* Cookie Banner: full-width bottom sheet on mobile (v1.1.6) */
@media (max-width: 768px) {
  .cmplz-cookiebanner {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px 12px 0 0 !important;
  }
}

/* Fix article-v3.css dark hardcoded values for editorial body */
body.editorial-body .mobile-toc-drawer {
  background: var(--card, #fff) !important;
  border-left: 1px solid var(--border, #e6e0d6) !important;
}

body.editorial-body .article-hero-img {
  border: 1px solid var(--border, #e6e0d6) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

body.editorial-body .article-content table,
body.editorial-body .article-content .comparison-table {
  border: 1px solid var(--border, #e6e0d6) !important;
}

body.editorial-body .article-content table thead {
  background: var(--accent-soft, rgba(212,103,58,0.06)) !important;
}

body.editorial-body .article-content table th {
  color: var(--text, #1a1816) !important;
  border-bottom: 2px solid var(--border, #e6e0d6) !important;
}

body.editorial-body .article-content table td {
  color: var(--text-2, #6a6660) !important;
  border-bottom: 1px solid var(--border, #e6e0d6) !important;
}

body.editorial-body .article-content table tbody tr:hover {
  background: var(--accent-soft, rgba(212,103,58,0.03)) !important;
}

body.editorial-body .article-content .product-card,
body.editorial-body .article-content .inline-faq details,
body.editorial-body .article-content .sources-section,
body.editorial-body .article-content .affiliate-disclosure {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
}

body.editorial-body .article-content .affiliate-disclosure {
  color: var(--text-3, #9a9690) !important;
  background: rgba(0,0,0,0.01) !important;
}

body.editorial-body .article-content .stat-highlight,
body.editorial-body .article-content .pro-tip {
  background: var(--accent-soft, rgba(212,103,58,0.04)) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  border-left: 3px solid var(--accent, #d4673a) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .article-content .warning-box {
  background: rgba(196,90,58,0.04) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  border-left: 3px solid #c47a3a !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .article-content .step-guide > *::before {
  background: var(--accent, #d4673a) !important;
  color: #fff !important;
}

body.editorial-body .article-content blockquote {
  background: transparent !important;
  border-left: 2px solid var(--accent, #d4673a) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .article-content .cta-button {
  background: var(--accent, #d4673a) !important;
  color: #fff !important;
}

body.editorial-body .article-content .cta-button:hover {
  background: #b85633 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(212,103,58,0.2) !important;
}

/* ====== CTA BUTTON TEXT VISIBILITY FIX ====== */
/* Problem: .article-content a { color: accent } overrides .sp-cta color */
/* Fix: Higher specificity + !important to ensure white text on accent bg */

body.editorial-body .article-content .sp-cta,
body.editorial-body .article-content .sp-cta:link,
body.editorial-body .article-content .sp-cta:visited,
body.editorial-body .article-content .sp-cta:focus {
  background: var(--accent, #d4673a) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 36px;
  border-radius: 6px;
  border: 1px solid var(--accent, #d4673a);
  text-decoration: none !important;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(212,103,58,0.2);
  transition: all 0.2s ease;
}

body.editorial-body .article-content .sp-cta:hover {
  background: #b85633 !important;
  color: #ffffff !important;
  border-color: #b85633 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,103,58,0.3);
  text-decoration: none !important;
}

body.editorial-body .article-content .sp-cta:active {
  transform: translateY(0);
}

/* Also fix generic cta-button inside article-content */
body.editorial-body .article-content .cta-button,
body.editorial-body .article-content .cta-button:link,
body.editorial-body .article-content .cta-button:visited {
  background: var(--accent, #d4673a) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

body.editorial-body .article-content .cta-button:hover {
  background: #b85633 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Also fix any generic button/link inside sp-cta-wrap */
body.editorial-body .article-content .sp-cta-wrap a:not(.sp-cta) {
  color: var(--accent, #d4673a);
}

/* Fix product links inside sp-products */
body.editorial-body .article-content .sp-products a,
body.editorial-body .article-content .product-card a {
  color: var(--accent, #d4673a);
}

body.editorial-body .article-content .sp-products a:hover,
body.editorial-body .article-content .product-card a:hover {
  color: #b85633;
}

/* ====== TABLE DOUBLE-BORDER FIX ====== */
/* Problem: .table-scroll-wrapper AND table both have border = double frame */
/* Fix: Remove border from wrappers, keep it only on the table itself */

body.editorial-body .article-content .table-scroll-wrapper,
body.editorial-body .article-content .sp-table-wrap,
body.editorial-body .article-content .comparison-table-wrapper {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.editorial-body .article-content .table-scroll-wrapper table,
body.editorial-body .article-content .sp-table-wrap table,
body.editorial-body .article-content table {
  border: 1px solid var(--border, #e6e0d6) !important;
  border-radius: 8px !important;
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0;
  margin: 24px 0 !important;
  width: 100%;
}

/* Desktop layout: ensure proper article width and readability */
@media (min-width: 769px) {
  body.editorial-body .article-main {
    max-width: 728px;
    margin: 0 auto;
    padding: 0 24px;
  }

  body.editorial-body .article-content,
  body.editorial-body .single-post-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 0 60px;
  }

  body.editorial-body .article-header {
    max-width: 680px;
    margin: 0 auto 32px;
    padding-top: 24px;
  }

  body.editorial-body .article-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text, #1a1816) !important;
    line-height: 1.2;
  }

  body.editorial-body .article-meta {
    color: var(--text-2, #6a6660) !important;
  }

  body.editorial-body .article-content h2 {
    color: var(--text, #1a1816) !important;
  }

  body.editorial-body .article-content h3 {
    color: var(--text, #1a1816) !important;
  }

  body.editorial-body .article-content p,
  body.editorial-body .article-content ul,
  body.editorial-body .article-content ol {
    color: var(--text-2, #6a6660);
  }

  body.editorial-body .article-content a {
    color: var(--accent, #d4673a);
  }

  /* Components: ensure full width within content area */
  body.editorial-body .article-content .sp-stats,
  body.editorial-body .article-content .sp-split,
  body.editorial-body .article-content .sp-table-wrap,
  body.editorial-body .article-content .sp-cta-wrap,
  body.editorial-body .article-content .sp-verdict,
  body.editorial-body .article-content .sp-feature,
  body.editorial-body .article-content .sp-author,
  body.editorial-body .article-content .sp-sources,
  body.editorial-body .article-content .sp-faq,
  body.editorial-body .article-content .sp-disclosure {
    max-width: none;
  }

  body.editorial-body .article-content .sp-split {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  body.editorial-body .article-content .sp-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Enhancements.css overrides — kill dark !important rules */
body.editorial-body #ez-toc-container {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  border-radius: 4px !important;
}

body.editorial-body #ez-toc-container .ez-toc-title {
  color: var(--text, #1a1816) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

body.editorial-body #ez-toc-container a {
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .lp-footer,
body.editorial-body .site-footer,
body.editorial-body footer {
  background: var(--bg, #f8f6f1) !important;
  border-top: 1px solid var(--border, #e6e0d6) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .lp-footer a,
body.editorial-body .site-footer a {
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .wp-pagenavi a,
body.editorial-body .wp-pagenavi span {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .wp-pagenavi a:hover {
  border-color: var(--accent, #d4673a) !important;
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .wp-pagenavi .current {
  background: var(--accent, #d4673a) !important;
  color: #fff !important;
  border-color: var(--accent, #d4673a) !important;
}

body.editorial-body ::-webkit-scrollbar-track {
  background: var(--bg, #f8f6f1) !important;
}

body.editorial-body ::-webkit-scrollbar-thumb {
  background: var(--border, #e6e0d6) !important;
}

body.editorial-body ::-webkit-scrollbar-thumb:hover {
  background: var(--accent, #d4673a) !important;
}

body.editorial-body ::selection {
  background: rgba(212,103,58,0.2) !important;
  color: var(--text, #1a1816) !important;
}

body.editorial-body .read-more,
body.editorial-body .more-link {
  color: var(--accent, #d4673a) !important;
}

body.editorial-body a[href*="amazon.de"],
body.editorial-body a[href*="amzn.to"] {
  color: var(--accent, #d4673a) !important;
  border-bottom: 1px dashed var(--accent, #d4673a) !important;
}

body.editorial-body a[href*="amazon.de"]:hover,
body.editorial-body a[href*="amzn.to"]:hover {
  color: #b85633 !important;
}

/* ez-toc sidebar TOC styling for editorial */
body.editorial-body .ez-toc-widget-container,
body.editorial-body .ez-toc-container {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  padding: 20px !important;
}

body.editorial-body .ez-toc-widget-container .ez-toc-title,
body.editorial-body .ez-toc-container .ez-toc-title {
  color: var(--text-3, #9a9690) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
}

body.editorial-body .ez-toc-widget-container ul li a,
body.editorial-body .ez-toc-container ul li a {
  color: var(--accent, #d4673a) !important;
  font-size: 13px !important;
}

body.editorial-body .ez-toc-widget-container ul li a:hover,
body.editorial-body .ez-toc-container ul li a:hover {
  color: #b85633 !important;
}/* ====== DESKTOP LAYOUT: Two-column grid with TOC sidebar ====== */

/* Desktop: wider content column, no TOC sidebar yet */
@media (min-width: 769px) {
  body.editorial-body .article-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  body.editorial-body .article-content,
  body.editorial-body .single-post-content {
    max-width: 760px !important;
    margin: 0 auto;
    padding: 0 0 60px;
    font-size: 17px;
    line-height: 1.8;
  }

  body.editorial-body .article-header {
    max-width: 800px;
    margin: 0 auto 32px;
    padding-top: 24px;
    text-align: left;
  }

  body.editorial-body .article-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text, #1a1816) !important;
    line-height: 1.15;
  }

  body.editorial-body .article-meta {
    color: var(--text-2, #6a6660) !important;
    justify-content: flex-start;
  }

  body.editorial-body .article-content h2 {
    color: var(--text, #1a1816) !important;
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 48px 0 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #e6e0d6);
  }

  body.editorial-body .article-content h3 {
    color: var(--text, #1a1816) !important;
    font-size: clamp(18px, 2vw, 22px);
    margin: 36px 0 16px;
  }

  body.editorial-body .article-content p,
  body.editorial-body .article-content ul,
  body.editorial-body .article-content ol {
    color: var(--text-2, #6a6660);
  }

  body.editorial-body .article-content a {
    color: var(--accent, #d4673a);
  }
}

/* Wide desktop (≥1024px): two-column layout with sticky TOC sidebar */
@media (min-width: 1024px) {
  body.editorial-body .article-body {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
    padding: 0 24px;
  }

  body.editorial-body .article-content-col {
    max-width: none !important;
    margin: 0;
  }

  body.editorial-body .article-content,
  body.editorial-body .single-post-content {
    max-width: none !important;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
  }

  /* ez-toc: move to sidebar column, sticky */
  body.editorial-body #ez-toc-container {
    grid-column: 2;
    grid-row: 1 / -1;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--card, #fff) !important;
    border: 1px solid var(--border, #e6e0d6) !important;
    border-radius: 8px;
    padding: 20px !important;
    margin: 0 !important;
  }

  body.editorial-body #ez-toc-container .ez-toc-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-3, #9a9690) !important;
    margin-bottom: 12px;
  }

  body.editorial-body #ez-toc-container ul li a {
    font-size: 13px !important;
    color: var(--accent, #d4673a) !important;
    line-height: 1.5;
    padding: 4px 0;
    display: block;
  }

  body.editorial-body .article-header {
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 40px 0 0;
  }
}

/* Extra-wide desktop (≥1440px): cap content for readability */
@media (min-width: 1440px) {
  body.editorial-body .article-body {
    max-width: 1320px;
  }
}


/* Enhancements.css overrides — kill dark !important rules */
body.editorial-body #ez-toc-container {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  border-radius: 4px !important;
}

body.editorial-body #ez-toc-container .ez-toc-title {
  color: var(--text, #1a1816) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

body.editorial-body #ez-toc-container a {
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .lp-footer,
body.editorial-body .site-footer,
body.editorial-body footer {
  background: var(--bg, #f8f6f1) !important;
  border-top: 1px solid var(--border, #e6e0d6) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .lp-footer a,
body.editorial-body .site-footer a {
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .wp-pagenavi a,
body.editorial-body .wp-pagenavi span {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  color: var(--text-2, #6a6660) !important;
}

body.editorial-body .wp-pagenavi a:hover {
  border-color: var(--accent, #d4673a) !important;
  color: var(--accent, #d4673a) !important;
}

body.editorial-body .wp-pagenavi .current {
  background: var(--accent, #d4673a) !important;
  color: #fff !important;
  border-color: var(--accent, #d4673a) !important;
}

body.editorial-body ::-webkit-scrollbar-track {
  background: var(--bg, #f8f6f1) !important;
}

body.editorial-body ::-webkit-scrollbar-thumb {
  background: var(--border, #e6e0d6) !important;
}

body.editorial-body ::-webkit-scrollbar-thumb:hover {
  background: var(--accent, #d4673a) !important;
}

body.editorial-body ::selection {
  background: rgba(212,103,58,0.2) !important;
  color: var(--text, #1a1816) !important;
}

body.editorial-body .read-more,
body.editorial-body .more-link {
  color: var(--accent, #d4673a) !important;
}

body.editorial-body a[href*="amazon.de"],
body.editorial-body a[href*="amzn.to"] {
  color: var(--accent, #d4673a) !important;
  border-bottom: 1px dashed var(--accent, #d4673a) !important;
}

body.editorial-body a[href*="amazon.de"]:hover,
body.editorial-body a[href*="amzn.to"]:hover {
  color: #b85633 !important;
}

/* ez-toc sidebar TOC styling for editorial */
body.editorial-body .ez-toc-widget-container,
body.editorial-body .ez-toc-container {
  background: var(--card, #fff) !important;
  border: 1px solid var(--border, #e6e0d6) !important;
  padding: 20px !important;
}

body.editorial-body .ez-toc-widget-container .ez-toc-title,
body.editorial-body .ez-toc-container .ez-toc-title {
  color: var(--text-3, #9a9690) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
}

body.editorial-body .ez-toc-widget-container ul li a,
body.editorial-body .ez-toc-container ul li a {
  color: var(--accent, #d4673a) !important;
  font-size: 13px !important;
}

body.editorial-body .ez-toc-widget-container ul li a:hover,
body.editorial-body .ez-toc-container ul li a:hover {
  color: #b85633 !important;
}
