/* ============================================================
   WATTBALKON BRUTAL — ARTIKEL (Port aus 01-brutal-editorial.html)
   Exaktes Ziel-Design: art-head, facts, artbox, Tabellen, CTA
   Stand: 22.08.2026 · Version 1.0.0
   ============================================================ */

/* ============================================================
   ARTIKEL-LAYOUT: 2-Spalten (Content + Sidebar) — exakt aus
   01-brutal-editorial.html
   ============================================================ */
.article { max-width: 1240px; margin: 0 auto; padding: 48px 32px 64px; }

/* ---------- 2-Spalten ---------- */
.art-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}
.art-main { min-width: 0; }

/* ---------- Artikel-Kopf ---------- */
.art-head {
  border: 3px solid var(--ink); background: var(--paper);
  padding: 32px 36px; margin-bottom: 32px; position: relative;
}
.art-head-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.art-head .num {
  font-family: var(--display); font-size: 28px; line-height: 1;
  color: var(--ink); border: 3px solid var(--ink);
  padding: 6px 12px; display: inline-block;
}
.art-cat {
  display: inline-block; background: var(--ink); color: #fff;
  padding: 9px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none !important; border-radius: 0;
}
.art-cat:hover { background: var(--accent); color: var(--ink); }
.art-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.art-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  border-top: 2px dashed var(--ink-3); padding-top: 16px; margin-top: 16px;
}
.art-meta-item {
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid var(--ink); background: #fff;
  padding: 6px 12px; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink);
}
.art-meta-icon { font-size: 13px; line-height: 1; }

/* ---------- Hero-Bild ---------- */
.art-hero { position: relative; margin: 0 0 28px; border: 3px solid var(--ink); background: #fff; }
.art-hero img { width: 100%; height: auto; display: block; }

/* ---------- Artikel-Body ---------- */
.art-body { font-size: 16.5px; color: var(--ink); }
.art-body p { margin-bottom: 22px; }
.art-body h2 { font-size: 1.5rem; margin: 36px 0 16px; padding-left: 14px; border-left: 6px solid var(--accent); }
.art-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.art-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { color: var(--ink); }

/* Drop-Cap */
.dropcap::first-letter {
  font-family: var(--display); font-size: 64px; line-height: .8;
  float: left; margin: 8px 10px 0 0; color: var(--accent);
}

/* Info-Boxen */
.artbox { border: 3px solid var(--ink); padding: 22px; margin: 24px 0; background: var(--paper); }
.artbox.acc { border-color: var(--accent); background: #fff; }
.artbox h4 { font-size: 12px; letter-spacing: .12em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.artbox h4::before { content: ''; width: 12px; height: 12px; background: var(--accent); display: inline-block; }
.artbox ul { list-style: none; margin: 0; padding: 0; }
.artbox li { padding: 8px 0; border-bottom: 1px dashed var(--ink-3); font-size: 14.5px; display: flex; gap: 10px; align-items: baseline; }
.artbox li:last-child { border-bottom: none; }
.artbox li::before { content: '▸'; color: var(--accent); font-weight: 700; }

/* Fakten-Karten */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.fact { border: 3px solid var(--ink); background: var(--paper); padding: 18px; text-align: center; }
.fact b { display: block; font-family: var(--display); font-size: 26px; color: var(--accent); }
.fact span { font-size: 11.5px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* Shortcode-Fakten (sp-stats): exakt im .facts-Look — gilt automatisch für alle Artikel */
.sp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.sp-stat { border: 3px solid var(--ink); background: var(--paper); padding: 18px; text-align: center; }
.sp-stat .sp-val { display: block; font-family: var(--display); font-size: 26px; color: var(--accent); line-height: 1.15; margin-bottom: 6px; }
.sp-stat .sp-lbl { font-size: 11.5px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.sp-stat .sp-sub { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
@media (max-width: 640px) {
  .sp-stats, .facts { grid-template-columns: 1fr; }
}

/* Zitat */
.artquote { border-left: 8px solid var(--accent); background: var(--paper); padding: 22px 26px; margin: 28px 0; font-size: 17px; font-style: italic; color: var(--ink); }
.artquote .who { display: block; font-style: normal; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-top: 10px; }

/* CTA */
.artcta { border: 3px solid var(--accent); background: var(--paper); padding: 28px; margin: 32px 0; text-align: center; }
.artcta h3 { margin-bottom: 8px; }
.artcta p { font-size: 14px; color: var(--ink-2); margin-bottom: 16px; }

/* Fazit */
.artend { border: 3px solid var(--ink); padding: 24px; margin: 32px 0; background: var(--ink); color: #fff; }
.artend h3 { color: var(--accent); margin-bottom: 12px; }
.artend ul { list-style: none; margin: 0; padding: 0; }
.artend li { padding: 6px 0; font-size: 14.5px; border-bottom: 1px solid #333; }
.artend li:last-child { border-bottom: none; }
.artend li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* Autor */
.author { display: flex; gap: 18px; border: 3px solid var(--ink); padding: 20px; margin: 32px 0; background: var(--paper); align-items: center; }
.avatar { width: 64px; height: 64px; background: var(--ink); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 24px; flex-shrink: 0; border-radius: 0; }
.author h4 { font-size: 14px; margin-bottom: 4px; }
.author p { font-size: 13px; color: var(--ink-2); margin: 0; }

/* Affiliate-Hinweis */
.affiliate-note {
  font-size: 12px; color: var(--ink-3);
  border-top: 2px dashed var(--ink-3); padding-top: 14px; margin-top: 24px;
}

/* Redaktion als Text im Content NICHT mehr anzeigen — Theme-`.author`-Box übernimmt (Simon 22.08.) */
.art-body .sp-author { display: none !important; }

/* ---------- Tabellen (schwarzer Header, weiße Schrift) ---------- */
.art-body table,
.art-body .sp-table-wrap table,
.art-body .comparison-table-wrapper table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px;
}
.art-body th {
  background: var(--ink) !important; color: #fff !important;
  padding: 12px 16px; text-align: left;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  border: 1px solid var(--ink);
}
.art-body td { padding: 12px 16px; border: 1px solid var(--ink-3); background: var(--paper); }
.art-body tr:nth-child(even) td { background: var(--bg); }
.art-body tr:hover td { background: rgba(255,77,0,.06); }
.art-body .table-scroll-wrapper,
.art-body .sp-table-wrap,
.art-body .comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }

/* ---------- Bestehende sp-*/ed-* Klassen auf Brutal mappen ---------- */
.art-body .sp-box,
.art-body .info-box,
.art-body .warning-box,
.art-body .pro-tip,
.art-body .stat-highlight,
.art-body .key-feature-box,
.art-body .verdict-box,
.art-body .sp-verdict,
.art-body .sources-section {
  border: 3px solid var(--ink); border-radius: 0; background: var(--paper);
  padding: 20px 24px; margin: 24px 0; box-shadow: none;
}
.art-body .sp-disclosure,
.art-body .affiliate-disclosure {
  border: 3px solid var(--ink); border-radius: 0; background: var(--paper);
  padding: 14px 18px; margin: 20px 0; box-shadow: none;
  font-size: 12.5px; color: var(--ink-2);
}
.art-body .sp-sources {
  border: 3px solid var(--ink); border-radius: 0; background: var(--paper);
  padding: 20px 24px; margin: 24px 0; box-shadow: none;
}
.art-body .sp-sources h3 {
  font-family: var(--display); font-size: 16px; text-transform: uppercase;
  letter-spacing: .02em; margin: 0 0 12px; padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
}
.art-body .sp-sources ul { list-style: none; margin: 0; padding: 0; }
.art-body .sp-sources li {
  position: relative; padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(18,18,18,.12); font-size: 13.5px;
}
.art-body .sp-sources li:last-child { border-bottom: none; }
.art-body .sp-sources li::before {
  content: '▸'; position: absolute; left: 0; top: 8px;
  color: var(--accent); font-weight: 700;
}
.art-body .sp-sources a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.art-body .sp-sources a:hover { color: var(--ink); }
/* Quellen-Hinweis-Zeile (Disclaimer) */
.art-body .sp-sources p:last-child { font-size: 11.5px; color: var(--ink-3); margin: 12px 0 0; }
.art-body .sp-sources .source-meta,
.art-body .sp-sources p strong { color: var(--ink-2); }

.art-body .sp-faq details,
.art-body .inline-faq details {
  border: 3px solid var(--ink); border-radius: 0; background: var(--paper);
  padding: 20px 24px; margin: 24px 0; box-shadow: none;
}
.art-body .sp-faq summary,
.art-body .inline-faq summary {
  cursor: pointer; font-weight: 700; font-size: 15px;
  list-style: none; position: relative; padding-left: 28px;
}
.art-body .sp-faq summary::-webkit-details-marker,
.art-body .inline-faq summary::-webkit-details-marker { display: none; }
.art-body .sp-faq summary::before,
.art-body .inline-faq summary::before {
  content: "▶"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-size: 12px; transition: transform .2s;
}
.art-body .sp-faq details[open] summary::before,
.art-body .inline-faq details[open] summary::before { transform: rotate(90deg); }
.art-body .sp-faq details > div,
.art-body .inline-faq details > div { padding-top: 10px; }
.art-body .warning-box { border-left: 8px solid var(--accent); background: rgba(255,77,0,.05); }
.art-body .pro-tip { border-left: 8px solid var(--accent); background: rgba(255,77,0,.04); }
.art-body .sp-cta,
.art-body .cta-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 28px;
  background: var(--accent); color: var(--ink) !important;
  border: 3px solid var(--ink); border-radius: 0;
  font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none !important; transition: all .15s;
}
.art-body .sp-cta:hover,
.art-body .cta-button:hover {
  background: var(--ink); color: #fff !important;
  transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--accent);
}
.art-body blockquote { margin: 28px 0; padding: 8px 0 8px 24px; border-left: 6px solid var(--accent); font-style: italic; font-size: 17px; color: var(--ink-2); }

/* ============================================================
   SIDEBAR (exakt aus Screenshot: INHALT / PASSENDE RATGEBER /
   ERTRAGSRECHNER — weiße Boxen, schwarzer Rand, orange Titel)
   ============================================================ */
.art-side {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 90px;
}
.side-box {
  border: 3px solid var(--ink); background: #fff;
  padding: 20px; border-radius: 0;
}
.side-box-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .1em; margin-bottom: 12px;
  color: var(--accent); font-weight: 700;
}
.side-box-square { width: 10px; height: 10px; background: var(--accent); display: inline-block; flex-shrink: 0; }

/* TOC */
.toc-list { display: flex; flex-direction: column; }
.toc-list a {
  display: flex; align-items: center; min-height: 44px; padding: 9px 0;
  font-size: 13.5px; color: var(--ink);
  border-bottom: 1px dashed var(--ink-3); text-decoration: none !important;
}
.toc-list a:last-child { border-bottom: none; }
.toc-list a:hover { color: var(--accent); padding-left: 6px; }

/* Related */
.related-list { list-style: none; margin: 0; padding: 0; counter-reset: related; }
.related-list li { counter-increment: related; border-bottom: 1px dashed var(--ink-3); }
.related-list li:last-child { border-bottom: none; }
.related-list a {
  display: flex; align-items: center; min-height: 44px; gap: 10px;
  padding: 10px 0; font-size: 13.5px; color: var(--ink);
  text-decoration: none !important; line-height: 1.35;
}
.related-list a::before {
  content: counter(related); flex-shrink: 0;
  width: 22px; height: 22px; border: 2px solid var(--ink-3); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink-3);
}
.related-list a:hover { color: var(--accent); }
.related-list a:hover::before { border-color: var(--accent); color: var(--accent); }

/* Calc-Teaser (schwarze Box, orange Innenrahmen) */
.calc-teaser { background: transparent; border: 3px solid var(--ink); padding: 0; }
.calc-teaser-inner {
  background: var(--ink); color: #fff;
  border: 4px solid var(--accent); margin: 3px;
  padding: 24px 20px; text-align: left;
}
.calc-teaser-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--accent); margin-bottom: 10px;
}
.calc-teaser-q { font-family: var(--display); font-size: 15px; line-height: 1.35; margin-bottom: 6px; color: #fff; }
.calc-teaser-sub { font-size: 12px; color: #bbb; margin-bottom: 18px; }
.calc-teaser-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 46px;
  background: var(--accent); color: var(--ink) !important;
  font-weight: 700; font-size: 13px; letter-spacing: .06em;
  text-decoration: none !important; border-radius: 0;
  transition: transform .15s;
}
.calc-teaser-btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .art-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
}
@media (max-width: 900px) {
  .art-layout { grid-template-columns: 1fr; }
  .art-side { position: static; flex-direction: column; }
}
@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; }
  .art-head { padding: 24px 20px; }
  .article { padding: 28px 16px 48px; }
  .art-head .num { font-size: 22px; }
  .art-meta { gap: 8px; }
  .art-meta-item { padding: 5px 10px; font-size: 10.5px; }
  .art-head-top { flex-wrap: wrap; gap: 10px; }
}


/* ============================================================
   SP-COMPONENT-NACHRUESTUNG (LCA 22.08.2026)
   Vorher fehlten in brutal-article.css: sp-split, sp-pros, sp-cons,
   sp-feature, sp-ftitle, sp-ftext, sp-vlabel, sp-vscore, sp-vdesc,
   sp-stars, sp-cta-wrap, sp-date, sp-meta, sp-unit.
   Alle 28 Posts verwenden diese Klassen -> jetzt hier definiert.
   ============================================================ */

/* ---------- PROS / CONS SPLIT ---------- */
.art-body .sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.art-body .sp-box {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 20px 24px;
}
.art-body .sp-box.sp-pros { border-top: 6px solid #5a8f3a; }
.art-body .sp-box.sp-cons { border-top: 6px solid #c45a3a; }
.art-body .sp-box h4,
.art-body .sp-box .sp-box-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.art-body .sp-box ul { list-style: none; padding: 0; margin: 0; }
.art-body .sp-box li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px dashed var(--ink-3);
}
.art-body .sp-box li:last-child { border-bottom: none; }
.art-body .sp-box.sp-pros li::before {
  content: '✓'; position: absolute; left: 0;
  color: #5a8f3a; font-weight: 700;
}
.art-body .sp-box.sp-cons li::before {
  content: '✗'; position: absolute; left: 0;
  color: #c45a3a; font-weight: 700;
}

/* ---------- FEATURE BOX ---------- */
.art-body .sp-feature {
  background: rgba(255,77,0,.06);
  border: 3px solid var(--ink);
  border-radius: 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.art-body .sp-ftitle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.art-body .sp-feature p { font-size: 14.5px; color: var(--ink); }
.art-body .sp-box.sp-ftext {
  font-family: var(--sans);
  font-size: 1.02em;
  line-height: 1.6;
  color: var(--ink);
  border-left: 3px solid var(--accent);
}

/* ---------- VERDICT ---------- */
.art-body .sp-verdict {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-left: 8px solid var(--accent);
  border-radius: 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.art-body .sp-vlabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}
.art-body .sp-vdesc { font-size: 14.5px; color: var(--ink); line-height: 1.7; margin-bottom: 12px; }
.art-body .sp-vscore,
.art-body .sp-stars {
  font-size: 20px;
  color: #d4a83a;
  letter-spacing: 2px;
}

/* ---------- CTA WRAP ---------- */
.art-body .sp-cta-wrap { margin: 32px 0; text-align: center; }

/* ---------- DATUM / META / EINHEIT ---------- */
.art-body .sp-date {
  display: inline-block;
  font-size: 12px;
  color: var(--ink-3);
  margin: 0 2px;
}
.art-body .sp-meta {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 10px 0 16px;
}
.art-body .sp-unit {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--ink-2);
  margin-left: 1px;
}

/* ---------- Responsive: Split 1-spaltig auf Mobile ---------- */
@media (max-width: 640px) {
  .art-body .sp-split { grid-template-columns: 1fr; }
}
