:root {
  --color-primary:        #1D4ED8;
  --color-primary-dark:   #1e3a8a;
  --color-primary-light:  #eff6ff;
  --color-primary-subtle: #dbeafe;
  --color-primary-muted:  #93c5fd;
  --color-primary-border: #bfdbfe;
  --color-green:          #16a34a;
  --color-green-bg:       #f0fdf4;
  --color-green-border:   #bbf7d0;
  --color-amber:          #d97706;
  --color-amber-bg:       #fffbeb;
  --color-red:            #dc2626;
  --color-red-bg:         #fff1f2;
  --color-red-border:     #fecdd3;
  --color-orange:         #f97316;
  --color-purple:         #7c3aed;
  --color-purple-bg:      #f5f3ff;
  --color-cyan:           #0891b2;
  --color-bg:             #f1f5f9;
  --color-surface:        #ffffff;
  --color-border:         #e5e7eb;
  --color-border-light:   #f3f4f6;
  --color-text:           #111111;
  --color-text-secondary: #374151;
  --color-text-muted:     #6b7280;
  --color-text-faint:     #9ca3af;
  --color-dark:           #0f172a;
  --color-amazon:         #f59e0b;
  --color-amazon-hover:   #d97706;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 14px;
  --line-height: 1.7;
  --max-width: 880px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,.07);
  --shadow-lg: 0 4px 16px rgba(0,0,0,.08);
  --shadow-primary: 0 4px 16px rgba(29,78,216,0.1);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.6; font-size: var(--font-size-base); }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ── Nav ── */
nav { background: var(--color-primary); height: 52px; display: flex; align-items: center; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; width: 100%; display: flex; align-items: center; gap: 24px; }
.nav-brand { color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -0.5px; text-decoration: none; }
.nav-brand span { color: var(--color-primary-muted); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--color-primary-border); font-size: 13px; text-decoration: none; }
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: auto; background: #fff; color: var(--color-primary); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 5px; text-decoration: none; }

/* ── Footer ── */
.site-footer { background: var(--color-surface); border-top: 3px solid var(--color-primary); margin-top: 40px; }
.site-footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.footer-brand-name { font-size: 16px; font-weight: 800; color: var(--color-text); margin-bottom: 5px; letter-spacing: -0.3px; }
.footer-brand-name span { color: var(--color-primary); }
.footer-affiliate { font-size: 11px; color: var(--color-text-faint); line-height: 1.6; max-width: 480px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 13px; color: var(--color-text-secondary); font-weight: 500; text-decoration: none; }
.footer-nav a:hover { color: var(--color-primary); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: var(--color-text-faint); text-decoration: none; }
.footer-legal a:hover { color: var(--color-text-secondary); }
.footer-copy { font-size: 11px; color: #d1d5db; }
.site-footer-bottom { background: #f9fafb; border-top: 1px solid var(--color-border); padding: 9px 24px; text-align: center; font-size: 11px; color: var(--color-text-faint); }

/* ── Score / Bar ── */
.score-green { color: var(--color-green); }
.score-blue  { color: var(--color-primary); }
.score-amber { color: var(--color-amber); }
.score-red   { color: var(--color-red); }
.score-grey  { color: var(--color-text-muted); }
.bar-good { background: var(--color-green); }
.bar-mid  { background: var(--color-primary); }
.bar-low  { background: var(--color-amazon); }
.bar-poor { background: #ef4444; }

/* ── Shared utilities ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.breadcrumb { font-size: 12px; color: var(--color-text-muted); padding: 12px 0; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb span { color: var(--color-text-secondary); }

/* ── Page header (listing / ratgeber / hersteller) ── */
.page-header { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; padding: 40px 24px; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.page-header p { font-size: 15px; opacity: .85; }

/* ── Filter bar ── */
.filter-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: 12px 0; position: sticky; top: 52px; z-index: 90; }
.filter-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 11px; font-weight: 700; color: var(--color-text-faint); text-transform: uppercase; letter-spacing: .5px; }
.chip { padding: 5px 12px; border-radius: 99px; border: 1px solid var(--color-border); background: var(--color-surface); font-size: 12px; font-weight: 500; cursor: pointer; color: var(--color-text-secondary); transition: all .15s; }
.chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.chip.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.chip-sep { width: 1px; height: 20px; background: var(--color-border); margin: 0 4px; }
.listing-meta { max-width: var(--max-width); margin: 0 auto; padding: 14px 20px; font-size: 12px; color: var(--color-text-muted); }
#count-display { font-weight: 700; color: var(--color-text-secondary); }

/* ── Review grid (listing page) ── */
.review-grid { max-width: var(--max-width); margin: 0 auto; padding: 16px 20px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; position: relative; transition: transform .15s, box-shadow .15s; }
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rc-card-link { position: absolute; inset: 0; z-index: 1; }
.rc-image { background: #f9fafb; height: 160px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.rc-score-badge { position: absolute; top: 10px; right: 10px; font-size: 13px; font-weight: 800; padding: 3px 8px; border-radius: 5px; background: rgba(255,255,255,.92); }
.rc-archiv-badge { position: absolute; top: 10px; right: 10px; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px; background: var(--color-amber-bg); color: var(--color-amber); border: 1px solid #fcd34d; }
.archiv-card { opacity: 0.75; }
.rc-photo-hint { position: absolute; bottom: 6px; left: 8px; font-size: 10px; color: var(--color-text-faint); }
.rc-body { padding: 14px; }
.rc-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--color-text-muted); margin-bottom: 5px; }
.rc-type { font-weight: 600; }
.rc-price { font-weight: 700; color: var(--color-text); }
.rc-title { font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 5px; line-height: 1.3; }
.rc-verdict { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 10px; }
.rc-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.rc-tags .rtag { font-size: 10px; padding: 1px 6px; }
.rc-actions { position: relative; z-index: 2; flex-shrink: 0; }
.rc-amz-btn { background: var(--color-orange); color: #fff; padding: 5px 10px; border-radius: 5px; font-size: 11px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.rc-amz-btn:hover { background: #ea6c07; text-decoration: none; }

/* ── Review page ── */
.review-header { background: var(--color-surface); border-radius: var(--radius-lg); padding: 28px; margin: 16px 0; display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; box-shadow: var(--shadow-sm); }
.review-header-img { text-align: center; }
.review-header-img img, .review-header-img .amz-placeholder { width: 200px; height: 200px; object-fit: contain; display: block; margin: 0 auto; font-size: 80px; line-height: 200px; }
.review-header-meta h1 { font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; color: var(--color-text); }
.review-header-meta .subtitle { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 14px; }
.score-big { font-size: 52px; font-weight: 900; line-height: 1; }
.score-label { font-size: 13px; font-weight: 600; color: var(--color-text-secondary); margin-top: 2px; }
.stars { font-size: 18px; color: var(--color-amazon); letter-spacing: 2px; margin-top: 4px; }
.rtags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.rtag { background: var(--color-primary-light); color: var(--color-primary); border-radius: var(--radius-sm); padding: 2px 8px; font-size: 11px; font-weight: 600; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px; }
.spec-table td { padding: 5px 0; border-bottom: 1px solid var(--color-border-light); }
.spec-table td:first-child { color: var(--color-text-muted); width: 140px; }

.amazon-bar { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius-md); padding: 14px 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.amazon-bar .amz-price { font-size: 20px; font-weight: 800; color: var(--color-text); }
.amazon-bar .amz-btn { background: var(--color-orange); color: #fff; padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.amazon-bar .amz-btn:hover { background: #ea6c07; text-decoration: none; }
.amazon-bar .amz-note { font-size: 11px; color: var(--color-text-faint); }

.review-layout { display: grid; grid-template-columns: 1fr 220px; gap: 24px; align-items: start; margin-bottom: 40px; }
.review-main { min-width: 0; }
.review-sidebar { position: sticky; top: 64px; }

.toc-box { background: var(--color-surface); border-radius: var(--radius-md); padding: 16px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.toc-box h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 10px; }
.toc-box ol { list-style: decimal; padding-left: 18px; }
.toc-box li { margin-bottom: 4px; }
.toc-box a { color: var(--color-text-secondary); font-size: 13px; }
.toc-box a:hover { color: var(--color-primary); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--color-surface); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.pros-cons h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.pros-cons .pros-col h3 { color: var(--color-green); }
.pros-cons .cons-col h3 { color: var(--color-red); }
.pros-cons ul { list-style: none; }
.pros-cons li { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 6px; padding-left: 4px; }

.rating-box { background: var(--color-surface); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.rating-box h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 14px; }
.rating-row { margin-bottom: 10px; }
.rating-row .rating-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.rating-bar-bg { background: var(--color-border-light); border-radius: 99px; height: 8px; }
.rating-bar-fill { border-radius: 99px; height: 8px; transition: width .3s; }

.review-section { background: var(--color-surface); border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.review-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--color-text); }
.review-section h3 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; color: var(--color-primary); }
.review-section p { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 12px; line-height: 1.7; }
.review-section ul, .review-section ol { margin: 8px 0 12px 20px; }
.review-section li { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 4px; }
.review-section table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.review-section th, .review-section td { padding: 8px 10px; border: 1px solid var(--color-border); font-size: 13px; }
.review-section th { background: #f9fafb; font-weight: 600; }

/* Markdown-Artikel-Text */
.review-article-text { background: var(--color-surface); border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 16px; box-shadow: var(--shadow-sm); line-height: 1.8; }
.review-article-text h1 { font-size: 24px; font-weight: 800; margin: 0 0 18px; color: var(--color-text); }
.review-article-text h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--color-text); padding-top: 16px; border-top: 1px solid var(--color-border); }
.review-article-text h3 { font-size: 16px; font-weight: 600; margin: 20px 0 8px; color: var(--color-primary); }
.review-article-text p { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 14px; }
.review-article-text ul, .review-article-text ol { margin: 8px 0 14px 22px; }
.review-article-text li { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 5px; }
.review-article-text table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.review-article-text th, .review-article-text td { padding: 9px 12px; border: 1px solid var(--color-border); font-size: 13px; }
.review-article-text th { background: #f9fafb; font-weight: 600; }
.review-article-text strong { color: var(--color-text); font-weight: 700; }
.review-article-text a { color: var(--color-primary); text-decoration: underline; }
.review-article-text hr { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }
.review-article-text blockquote { border-left: 4px solid var(--color-primary); padding: 8px 16px; margin: 16px 0; background: #f0f4ff; border-radius: 0 8px 8px 0; color: var(--color-text-secondary); font-style: italic; }

/* Foto-Galerie */
.foto-galerie { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.foto-galerie a { display: block; border-radius: 8px; overflow: hidden; }
.foto-galerie img { width: 120px; height: 90px; object-fit: cover; display: block; transition: opacity .2s; }
.foto-galerie img:hover { opacity: .85; }

.faq-section details { border-bottom: 1px solid var(--color-border); }
.faq-section summary { padding: 14px 0; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--color-text); }
.faq-section summary:hover { color: var(--color-primary); }
.faq-section details p { padding: 0 0 14px; font-size: 14px; color: var(--color-text-secondary); }

.verdict-box { border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; }
.verdict-box.positive { background: var(--color-green-bg); border: 1px solid var(--color-green-border); }
.verdict-box.negative { background: #fef2f2; border: 1px solid #fecaca; }
.verdict-box h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.verdict-box.positive h2 { color: var(--color-green); }
.verdict-box.negative h2 { color: var(--color-red); }
.verdict-box p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }

.amazon-bottom { background: #fff7ed; border: 2px solid var(--color-orange); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; text-align: center; }
.amazon-bottom p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; }
.amazon-bottom .amz-btn-big { background: var(--color-orange); color: #fff; padding: 14px 32px; border-radius: var(--radius-md); font-weight: 800; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.amazon-bottom .amz-btn-big:hover { background: #ea6c07; text-decoration: none; }
.amazon-bottom .price-hint { font-size: 22px; font-weight: 800; color: var(--color-text); margin-bottom: 6px; }

.alt-section { margin-bottom: 20px; }
.alt-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--color-text); }
.alt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.alt-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); }
.alt-card .alt-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.alt-card .alt-price { font-size: 12px; color: var(--color-text-muted); margin-bottom: 10px; }
.alt-card a { font-size: 12px; color: var(--color-primary); font-weight: 600; }

.sidebar-box { background: var(--color-surface); border-radius: var(--radius-md); padding: 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.sidebar-box h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 12px; }
.sidebar-score-big { font-size: 48px; font-weight: 900; text-align: center; line-height: 1; }
.sidebar-score-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--color-text-secondary); margin-top: 4px; }
.sidebar-stars { text-align: center; font-size: 16px; color: var(--color-amazon); margin-top: 4px; }
.sidebar-amz-img { text-align: center; margin-bottom: 10px; }
.sidebar-amz-img img { max-height: 140px; width: auto; object-fit: contain; }
.sidebar-amz-price { text-align: center; font-size: 18px; font-weight: 800; color: var(--color-text); margin-bottom: 8px; }
.sidebar-amz-btn { display: block; background: var(--color-orange); color: #fff; text-align: center; padding: 10px; border-radius: 6px; font-weight: 700; font-size: 13px; text-decoration: none; }
.sidebar-amz-btn:hover { background: #ea6c07; text-decoration: none; }
.related-list { list-style: none; }
.related-list li { margin-bottom: 8px; border-bottom: 1px solid var(--color-border-light); padding-bottom: 8px; }
.related-list a { font-size: 13px; color: var(--color-text-secondary); font-weight: 500; }
.related-list a:hover { color: var(--color-primary); }
.related-list .rel-note { font-size: 11px; color: var(--color-text-muted); }

/* ── Homepage hero ── */
.hero { background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); padding: 36px 0 32px; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 40px; }
.hero-text { flex: 1; }
.hero-eyebrow { font-size: 11px; color: var(--color-primary-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.hero h1 { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.5px; }
.hero-sub { font-size: 14px; color: var(--color-primary-border); line-height: 1.65; margin-bottom: 18px; max-width: 500px; }
.hero-actions { display: flex; gap: 10px; }
.btn-white { background: #fff; color: var(--color-primary); font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 6px; text-decoration: none; }
.btn-white:hover { background: #f0f9ff; text-decoration: none; }
.btn-outline { background: transparent; color: #fff; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.4); text-decoration: none; }
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.hero-stats { display: flex; gap: 28px; flex-shrink: 0; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 24px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 11px; color: var(--color-primary-muted); margin-top: 2px; }

/* ── Homepage sections ── */
.section { padding: 28px 0; }
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); margin-bottom: 14px; }
.section-header { display: flex; align-items: baseline; margin-bottom: 14px; }
.section-header .section-label { margin-bottom: 0; flex: 1; }
.view-all { font-size: 12px; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.view-all:hover { text-decoration: underline; }

/* ── Testsieger ── */
.testsieger-box { background: var(--color-surface); border-radius: var(--radius-xl); border: 2px solid var(--color-primary); padding: 20px 24px; display: flex; gap: 20px; align-items: center; box-shadow: var(--shadow-primary); margin-bottom: 12px; }
.ts-image { width: 90px; height: 75px; background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-primary-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; font-size: 30px; }
.ts-image img { width: 90px; height: 75px; object-fit: contain; }
.ts-badge { background: var(--color-primary); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 8px; letter-spacing: .5px; }
.ts-title { font-size: 20px; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.ts-sub { font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; }
.ts-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.ts-tag { background: var(--color-primary-light); color: var(--color-primary); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: var(--radius-sm); }
.ts-tag-green { background: var(--color-green-bg); color: var(--color-green); }
.ts-score { text-align: center; flex-shrink: 0; }
.ts-score-num { font-size: 48px; font-weight: 900; line-height: 1; }
.ts-score-label { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }
.ts-score-stars { color: var(--color-amazon); font-size: 14px; margin-top: 4px; }
.ts-buy { flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.btn-amazon { background: var(--color-amazon); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 7px; text-decoration: none; white-space: nowrap; }
.btn-amazon:hover { background: var(--color-amazon-hover); text-decoration: none; }
.btn-review { color: var(--color-primary); font-size: 12px; font-weight: 600; text-decoration: none; }
.btn-review:hover { text-decoration: underline; }

/* ── Empfehlung cards ── */
.empfehlungen-grid { display: flex; flex-direction: column; gap: 8px; }
.emp-card { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); padding: 12px 16px; display: flex; gap: 14px; align-items: center; text-decoration: none; color: inherit; transition: all .15s; }
.emp-card:hover { border-color: var(--color-primary-muted); box-shadow: 0 2px 10px rgba(29,78,216,0.07); text-decoration: none; }
.emp-card-image { width: 40px; height: 40px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; font-size: 18px; }
.emp-card-image img { width: 40px; height: 40px; object-fit: contain; }
.emp-card-image.blue { background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-primary-light)); }
.emp-card-image.green { background: linear-gradient(135deg, #dcfce7, var(--color-green-bg)); }
.emp-card-image.amber { background: linear-gradient(135deg, #fef9c3, var(--color-amber-bg)); }
.emp-card-image.slate { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
.emp-card-image.purple { background: linear-gradient(135deg, #ede9fe, var(--color-purple-bg)); }
.emp-card-body { flex: 1; min-width: 0; overflow: hidden; }
.emp-cat-badge { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.emp-cat-badge.budget { color: var(--color-green); }
.emp-cat-badge.homelab { color: var(--color-purple); }
.emp-cat-badge.einsteiger { color: var(--color-cyan); }
.emp-cat-badge.heimnetz { color: var(--color-cyan); }
.emp-cat-badge.performance { color: var(--color-red); }
.emp-card-name { font-size: 12px; font-weight: 700; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.emp-card-sub { font-size: 10px; color: var(--color-text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.emp-card-score { flex-shrink: 0; text-align: right; min-width: 36px; }
.emp-score-num { font-size: 15px; font-weight: 800; }
.emp-score-label { font-size: 9px; color: var(--color-text-faint); }

/* ── Use cases ── */
.use-cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.use-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 16px; border: 1px solid var(--color-border); text-decoration: none; color: inherit; display: block; transition: all .15s; }
.use-card:hover { border-color: var(--color-primary); text-decoration: none; }
.use-icon { font-size: 22px; margin-bottom: 7px; }
.use-title { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; }
.use-desc { font-size: 11px; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 7px; }
.use-count { font-size: 11px; color: var(--color-primary); font-weight: 600; }

/* ── Reviews grid (homepage) ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reviews-grid .review-card { border: 1px solid var(--color-border); box-shadow: none; }
.reviews-grid .review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.reviews-grid .rc-image { height: 110px; background: linear-gradient(135deg, var(--color-primary-subtle) 0%, var(--color-primary-light) 100%); font-size: 38px; }
.reviews-grid .rc-image img { width: 100%; height: 110px; object-fit: contain; }
.reviews-grid .rc-photo-hint { position: absolute; bottom: 6px; right: 8px; left: auto; font-size: 9px; color: #94a3b8; background: rgba(255,255,255,0.85); padding: 2px 5px; border-radius: 3px; }
.reviews-grid .rc-meta { align-items: center; gap: 6px; margin-bottom: 5px; justify-content: flex-start; }
.rc-score { margin-left: auto; font-size: 12px; font-weight: 800; }
.reviews-grid .rc-title { font-size: 13px; margin-bottom: 4px; }
.reviews-grid .rc-verdict { font-size: 11px; margin-bottom: 7px; }
.rc-tag { font-size: 10px; background: var(--color-bg); color: var(--color-text-secondary); padding: 2px 6px; border-radius: 3px; }

/* ── SEO section ── */
.seo-section { background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); padding: 32px; }
.seo-section h2 { font-size: 20px; font-weight: 800; color: var(--color-text); margin-bottom: 14px; }
.seo-body { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: start; }
.seo-text p { font-size: 13px; color: #4b5563; line-height: 1.8; margin-bottom: 14px; }
.seo-text p:last-child { margin-bottom: 0; }
.seo-text strong { color: var(--color-text); }
.seo-photo { background: var(--color-bg); border: 2px dashed #cbd5e1; border-radius: var(--radius-lg); height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #94a3b8; }
.seo-photo-icon { font-size: 28px; }
.seo-photo-label { font-size: 11px; font-weight: 600; }
.seo-photo-hint { font-size: 10px; color: #cbd5e1; }
.category-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cat-link { background: var(--color-bg); border: 1px solid var(--color-border); color: var(--color-primary); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 20px; text-decoration: none; }
.cat-link:hover { background: var(--color-primary-light); text-decoration: none; }

/* ── HDD section ── */
.hdd-section { background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); overflow: hidden; }
.hdd-header { background: var(--color-dark); padding: 20px 28px; display: flex; align-items: center; gap: 16px; }
.hdd-header-text { flex: 1; }
.hdd-header h2 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.hdd-header p { font-size: 12px; color: #94a3b8; }
.hdd-header-link { color: #60a5fa; font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.hdd-header-link:hover { text-decoration: underline; }
.hdd-body { padding: 20px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.hdd-text p { font-size: 13px; color: #4b5563; line-height: 1.8; margin-bottom: 12px; }
.hdd-text strong { color: var(--color-text); }
.hdd-links-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 10px; margin-top: 4px; }
.hdd-link-list { display: flex; flex-direction: column; gap: 6px; }
.hdd-link { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: #f8fafc; border: 1px solid var(--color-border); border-radius: 7px; text-decoration: none; color: inherit; }
.hdd-link:hover { border-color: var(--color-primary); background: var(--color-primary-light); text-decoration: none; }
.hdd-link-icon { font-size: 16px; flex-shrink: 0; }
.hdd-link-text { flex: 1; }
.hdd-link-title { font-size: 12px; font-weight: 600; color: var(--color-text); }
.hdd-link-sub { font-size: 10px; color: var(--color-text-muted); margin-top: 1px; }
.hdd-link-arrow { font-size: 12px; color: var(--color-primary); }
.hdd-right { display: flex; flex-direction: column; gap: 12px; }
.hdd-toplist { background: #f8fafc; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.hdd-toplist-header { background: var(--color-primary); padding: 8px 14px; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .4px; text-transform: uppercase; }
.hdd-toplist-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--color-border); text-decoration: none; color: inherit; }
.hdd-toplist-item:last-child { border-bottom: none; }
.hdd-toplist-item:hover { background: var(--color-primary-light); text-decoration: none; }
.hdd-toplist-rank { font-size: 13px; font-weight: 800; color: var(--color-primary); width: 18px; flex-shrink: 0; }
.hdd-toplist-name { flex: 1; font-size: 12px; font-weight: 600; color: var(--color-text); }
.hdd-toplist-tag { font-size: 10px; background: var(--color-green-bg); color: var(--color-green); padding: 2px 6px; border-radius: 3px; font-weight: 600; }

/* ── Ratgeber grid ── */
.ratgeber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ratgeber-card { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); overflow: hidden; text-decoration: none; color: inherit; display: block; transition: all .15s; }
.ratgeber-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-1px); text-decoration: none; }
.rg-image { height: 90px; display: flex; align-items: center; justify-content: center; position: relative; font-size: 32px; }
.rg-image.blue { background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-primary-light)); }
.rg-image.green { background: linear-gradient(135deg, #dcfce7, var(--color-green-bg)); }
.rg-image.amber { background: linear-gradient(135deg, #fef9c3, var(--color-amber-bg)); }
.rg-photo-hint { position: absolute; bottom: 6px; right: 8px; font-size: 9px; color: #94a3b8; background: rgba(255,255,255,0.85); padding: 2px 5px; border-radius: 3px; }
.rg-body { padding: 12px 14px; }
.rg-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.rg-cat { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 3px; }
.rg-cat.ratgeber { background: var(--color-green-bg); color: var(--color-green); }
.rg-cat.vergleich { background: #fef9c3; color: #92400e; }
.rg-cat.tipps { background: var(--color-primary-light); color: var(--color-primary); }
.rg-lesezeit { margin-left: auto; font-size: 10px; color: var(--color-text-faint); }
.rg-title { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 5px; line-height: 1.4; }
.rg-excerpt { font-size: 11px; color: var(--color-text-muted); line-height: 1.6; }
.ratgeber-strip { background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); padding: 20px 24px; display: flex; align-items: center; gap: 20px; }
.rs-left { flex: 1; }
.rs-title { font-size: 15px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; }
.rs-sub { font-size: 12px; color: var(--color-text-muted); }
.rs-links { display: flex; gap: 8px; flex-wrap: wrap; }
.rs-link { background: var(--color-bg); color: var(--color-primary); font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 6px; text-decoration: none; }
.rs-link:hover { background: var(--color-primary-light); text-decoration: none; }

/* ── Article hero image ── */
.article-hero-img { margin-bottom: 20px; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero-img img { width: 100%; height: auto; display: block; max-height: 340px; object-fit: cover; }

/* ── Article page ── */
.article-header { background: var(--color-surface); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.article-typ { display: inline-block; background: var(--color-primary-light); color: var(--color-primary); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-sm); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.article-header h1 { font-size: 28px; font-weight: 900; line-height: 1.2; margin-bottom: 10px; color: var(--color-text); }
.article-header .intro { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 14px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--color-text-muted); }
.article-meta span { display: flex; align-items: center; gap: 4px; }
.container-article { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: 32px; align-items: start; margin-bottom: 40px; }
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 64px; }
.article-content { background: var(--color-surface); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.article-content h2 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; color: var(--color-text); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; color: var(--color-primary); }
.article-content p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 14px; }
.article-content ul, .article-content ol { margin: 8px 0 14px 20px; }
.article-content li { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 6px; }
.article-content table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.article-content th, .article-content td { padding: 8px 12px; border: 1px solid var(--color-border); font-size: 13px; text-align: left; }
.article-content th { background: #f9fafb; font-weight: 600; }
.sidebar-nas-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 14px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.sidebar-nas-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.sidebar-nas-card .s-note { font-size: 12px; color: var(--color-text-muted); }
.sidebar-nas-card a { font-size: 12px; color: var(--color-primary); font-weight: 600; }
.faq-section.standalone { background: var(--color-surface); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.faq-section.standalone h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }

/* ── Ratgeber index (articles grid) ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.art-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.art-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.art-card-img-placeholder { width: 100%; height: 160px; background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.art-card-img-placeholder img { width: 100%; height: 160px; object-fit: cover; }
.art-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.art-card-typ { font-size: 10px; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.art-card h2 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.35; color: var(--color-text); }
.art-card p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; line-height: 1.5; flex: 1; }
.art-card-link { font-size: 13px; color: var(--color-primary); font-weight: 600; text-decoration: none; }
.art-card-link:hover { text-decoration: underline; }
.art-card .meta { font-size: 11px; color: var(--color-text-faint); margin-bottom: 8px; }
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .articles-grid { grid-template-columns: 1fr; } }

/* ── Hersteller pages ── */
.hersteller-hero { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: #fff; padding: 48px 24px; text-align: center; }
.hersteller-hero h1 { font-size: 34px; font-weight: 900; margin-bottom: 8px; }
.hersteller-hero .meta { font-size: 13px; opacity: .8; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.hersteller-hero a { color: var(--color-primary-border); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.info-box { background: var(--color-surface); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.info-box h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.info-box p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }
.info-box ul { list-style: none; padding: 0; }
.info-box li { font-size: 13px; color: var(--color-text-secondary); padding: 4px 0; border-bottom: 1px solid var(--color-border-light); }
.info-box li:last-child { border-bottom: none; }
.nas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.nas-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); }
.nas-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.nas-card .price { font-size: 12px; color: var(--color-text-muted); margin-bottom: 8px; }
.nas-card .note-badge { font-size: 13px; font-weight: 800; }
.nas-card a { font-size: 12px; color: var(--color-primary); font-weight: 600; }
.hersteller-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0 40px; }
.h-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.h-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.h-card p { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 14px; line-height: 1.6; }
.h-card-meta { font-size: 11px; color: var(--color-text-faint); margin-bottom: 12px; }
.h-card a { font-size: 13px; color: var(--color-primary); font-weight: 600; }

/* ── Archiv ── */
.archiv-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin: 24px 0 40px; }
.archiv-table th { background: #f9fafb; padding: 12px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); text-align: left; border-bottom: 2px solid var(--color-border); }
.archiv-table td { padding: 12px 14px; font-size: 13px; color: var(--color-text-secondary); border-bottom: 1px solid var(--color-border-light); }
.archiv-table tr:last-child td { border-bottom: none; }
.archiv-table a { color: var(--color-primary); font-weight: 600; }
.security-ok { color: var(--color-green); font-weight: 600; }
.security-expired { color: var(--color-red); font-weight: 600; }

/* ── Hersteller page redesign ── */
.h-page-header { background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); padding: 40px 24px 28px; }
.h-page-header-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.h-logo-block { width: 68px; height: 68px; border-radius: var(--radius-lg); background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; color: #fff; flex-shrink: 0; letter-spacing: -1px; }
.h-header-info { flex: 1; }
.h-header-info h1 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.h-meta-row { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.75); align-items: center; }
.h-meta-row a { color: var(--color-primary-border); text-decoration: none; }
.h-meta-row span { display: flex; align-items: center; gap: 4px; }
.h-score-block { text-align: center; flex-shrink: 0; background: rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 12px 20px; }
.h-score-num { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.h-score-label { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }
.h-score-sub { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 2px; }

.quick-stats-bar { background: #f1f5f9; border-bottom: 1px solid var(--color-border); padding: 10px 0; }
.quick-stats-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; }
.quick-stat { flex: 1; text-align: center; border-right: 1px solid var(--color-border); padding: 6px 0; }
.quick-stat:last-child { border-right: none; }
.quick-stat-num { font-size: 16px; font-weight: 800; color: var(--color-text); }
.quick-stat-label { font-size: 10px; color: var(--color-text-muted); margin-top: 1px; text-transform: uppercase; letter-spacing: .5px; }

.h-content-area { max-width: var(--max-width); margin: 0 auto; padding: 24px 20px; }
.h-desc-box { background: var(--color-surface); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm); font-size: 15px; color: var(--color-text-secondary); line-height: 1.8; }
.h-desc-box p { margin: 0 0 14px; }
.h-desc-box p:last-child { margin-bottom: 0; }

.staerken-schwaechen { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.ss-box { border-radius: var(--radius-md); padding: 18px; }
.ss-box.staerken { background: var(--color-green-bg); border: 1px solid var(--color-green-border); }
.ss-box.schwaechen { background: var(--color-red-bg); border: 1px solid var(--color-red-border); }
.ss-box h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.ss-box.staerken h3 { color: var(--color-green); }
.ss-box.schwaechen h3 { color: var(--color-red); }
.ss-box ul { list-style: none; }
.ss-box li { font-size: 13px; color: var(--color-text-secondary); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.ss-check { color: var(--color-green); font-weight: 700; flex-shrink: 0; }
.ss-cross { color: var(--color-red); font-weight: 700; flex-shrink: 0; }

.bay-filter-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: 10px 0; position: sticky; top: 52px; z-index: 90; }
.bay-filter-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; gap: 8px; align-items: center; }
.bay-chip { padding: 4px 12px; border-radius: 99px; border: 1px solid var(--color-border); background: var(--color-surface); font-size: 12px; font-weight: 500; cursor: pointer; color: var(--color-text-secondary); transition: all .15s; text-decoration: none; display: inline-block; }
.bay-chip:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }

.h-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.h-reviews-header h2 { font-size: 18px; font-weight: 800; }
.h-reviews-count { font-size: 12px; color: var(--color-text-muted); background: var(--color-bg); padding: 3px 10px; border-radius: 99px; }

.vergleich-strip { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); border-radius: var(--radius-xl); padding: 18px 24px; display: flex; align-items: center; gap: 20px; margin: 20px 0; }
.vs-left { flex: 1; }
.vs-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.vs-sub { font-size: 12px; color: rgba(255,255,255,.7); }
.vs-btn { background: #fff; color: var(--color-primary); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 6px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.vs-btn:hover { background: var(--color-primary-light); text-decoration: none; }

.hersteller-chips-section { margin-top: 20px; }
.hersteller-chips-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 10px; }
.hersteller-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hersteller-chip { background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text-secondary); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 99px; text-decoration: none; }
.hersteller-chip:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }

/* ── Hersteller index redesign ── */
.hersteller-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0 40px; }
.hi-card { background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); padding: 22px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; transition: all .15s; text-decoration: none; color: inherit; }
.hi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; }
.hi-logo { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: var(--color-primary); flex-shrink: 0; letter-spacing: -1px; }
.hi-body { flex: 1; min-width: 0; }
.hi-name { font-size: 18px; font-weight: 800; color: var(--color-text); margin-bottom: 3px; }
.hi-meta { font-size: 11px; color: var(--color-text-faint); margin-bottom: 8px; }
.hi-desc { font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 10px; }
.hi-footer { display: flex; justify-content: space-between; align-items: center; }
.hi-count { font-size: 11px; color: var(--color-text-muted); }
.hi-link { font-size: 12px; color: var(--color-primary); font-weight: 700; }
.hi-score { flex-shrink: 0; text-align: center; }
.hi-score-num { font-size: 26px; font-weight: 900; }
.hi-score-label { font-size: 10px; color: var(--color-text-faint); }

/* ── Archiv listing redesign ── */
.archiv-grid { max-width: var(--max-width); margin: 0 auto; padding: 24px 20px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.archiv-card-item { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); padding: 18px; box-shadow: var(--shadow-sm); opacity: .85; position: relative; overflow: hidden; transition: opacity .15s; }
.archiv-card-item:hover { opacity: 1; }
.archiv-item-ribbon { position: absolute; top: 14px; right: -20px; background: var(--color-amber); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 28px; transform: rotate(35deg); }
.archiv-item-title { font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; line-height: 1.3; padding-right: 36px; }
.archiv-item-meta { font-size: 11px; color: var(--color-text-muted); margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.archiv-item-note { font-size: 22px; font-weight: 900; line-height: 1; }
.archiv-item-verdict { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }
.archiv-item-footer { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--color-border-light); display: flex; flex-direction: column; gap: 6px; }
.archiv-nachfolger-link { font-size: 12px; color: var(--color-primary); font-weight: 600; }
.archiv-security-ok { font-size: 11px; color: var(--color-green); font-weight: 500; }
.archiv-security-expired { font-size: 11px; color: var(--color-red); font-weight: 500; }

/* ── Archiv review page banner ── */
.archiv-banner { background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 2px solid #fbbf24; border-left: 5px solid var(--color-amber); border-radius: var(--radius-xl); padding: 20px 24px; margin-bottom: 20px; display: flex; gap: 18px; align-items: flex-start; }
.archiv-banner-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.archiv-banner-body { flex: 1; }
.archiv-banner-body h3 { font-size: 15px; font-weight: 800; color: #92400e; margin-bottom: 5px; }
.archiv-banner-body p { font-size: 13px; color: #78350f; line-height: 1.6; margin-bottom: 12px; }
.archiv-nachfolger-box { background: #fff; border: 1px solid #fcd34d; border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nachfolger-label { font-size: 11px; font-weight: 700; color: #92400e; text-transform: uppercase; letter-spacing: .4px; }
.nachfolger-name { font-size: 13px; font-weight: 700; color: var(--color-text); flex: 1; }
.nachfolger-btn { background: var(--color-amazon); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 5px; text-decoration: none; white-space: nowrap; }
.nachfolger-btn:hover { background: var(--color-amazon-hover); text-decoration: none; }

.archiv-watermark { display: inline-flex; align-items: center; gap: 6px; background: var(--color-amber-bg); color: var(--color-amber); border: 1px solid #fcd34d; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; padding: 3px 10px; margin-bottom: 10px; }

.review-header.archiv-mode { opacity: .88; }
.review-header.archiv-mode .review-header-img img { filter: grayscale(20%); }

/* ── Static pages (Impressum, Datenschutz, Affiliate) ── */
.static-page-body { max-width: 780px; margin: 24px auto 48px; background: var(--color-surface); border-radius: var(--radius-xl); padding: 36px 40px; box-shadow: var(--shadow-sm); }
.static-page-body h1 { font-size: 26px; font-weight: 900; color: var(--color-text); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--color-border); }
.static-page-body h2 { font-size: 18px; font-weight: 700; color: var(--color-text); margin: 28px 0 10px; }
.static-page-body h3 { font-size: 15px; font-weight: 600; color: var(--color-primary); margin: 20px 0 8px; }
.static-page-body p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 12px; }
.static-page-body a { color: var(--color-primary); }
.static-page-body strong { color: var(--color-text); }

/* ── Redaktion page ── */
.redaktion-hero { background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); padding: 40px 0 32px; }
.redaktion-hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.redaktion-hero h1 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.4px; }
.redaktion-hero p { font-size: 14px; color: var(--color-primary-border); line-height: 1.7; max-width: 560px; }
.redaktion-body { max-width: var(--max-width); margin: 0 auto; padding: 32px 24px 56px; }
.author-card { background: var(--color-surface); border-radius: var(--radius-xl); border: 1px solid var(--color-border); padding: 28px 32px; display: flex; gap: 28px; align-items: flex-start; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.author-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-primary-light)); display: flex; align-items: center; justify-content: center; font-size: 36px; border: 3px solid var(--color-primary-light); }
.author-photo img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; }
.author-info { flex: 1; }
.author-name { font-size: 22px; font-weight: 800; color: var(--color-text); margin-bottom: 3px; letter-spacing: -0.3px; }
.author-role { font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; }
.redaktion-section { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border); padding: 24px 28px; margin-bottom: 20px; }
.redaktion-section h2 { font-size: 17px; font-weight: 800; color: var(--color-text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.redaktion-section p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 10px; }
.redaktion-section p:last-child { margin-bottom: 0; }
.redaktion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.redaktion-grid-item { background: var(--color-bg); border-radius: var(--radius-md); padding: 14px 16px; border: 1px solid var(--color-border); }
.redaktion-grid-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.redaktion-grid-item span { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 640px) { .author-card { flex-direction: column; align-items: center; text-align: center; } .redaktion-grid { grid-template-columns: 1fr; } }

/* ── Listing page v2 ── */
.listing-page-header { background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); padding: 28px 0 22px; }
.listing-ph-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.listing-ph-inner h1 { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.4px; margin-bottom: 5px; }
.listing-ph-sub { font-size: 13px; color: var(--color-primary-border); margin-bottom: 16px; }
.listing-stats-bar { display: flex; gap: 28px; }
.lst-stat { text-align: center; }
.lst-stat-num { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.lst-stat-label { font-size: 10px; color: var(--color-primary-muted); margin-top: 2px; letter-spacing: 0.3px; }
.controls-wrap { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.controls-inner { max-width: var(--max-width); margin: 0 auto; padding: 10px 20px; display: flex; flex-direction: column; gap: 6px; }
.filter-row { display: flex; align-items: center; gap: 8px 28px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label-txt { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--color-text-faint); white-space: nowrap; flex-shrink: 0; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 4px; padding: 3px 7px; }
.filter-chips-row { display: flex; gap: 5px; flex-wrap: wrap; }
.sort-wrap { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.sort-inner { max-width: var(--max-width); margin: 0 auto; padding: 9px 20px; display: flex; align-items: center; gap: 10px; }
.sort-label-txt { font-size: 12px; color: var(--color-text-muted); font-weight: 500; white-space: nowrap; }
.sort-options { display: flex; gap: 4px; }
.sort-btn { padding: 4px 12px; border-radius: 5px; font-size: 12px; font-weight: 600; border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text-secondary); text-decoration: none; }
.sort-btn.active { background: var(--color-green-bg); border-color: var(--color-green); color: var(--color-green); }
.sort-result-count { margin-left: auto; font-size: 12px; color: var(--color-text-muted); }
.rc-test-link { font-size: 11px; font-weight: 700; color: var(--color-primary); text-decoration: none; white-space: nowrap; position: relative; z-index: 2; }
.rc-test-link:hover { text-decoration: underline; }
.rc-meta-type { font-size: 10px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; flex: 1; }
.rc-meta-score { font-size: 13px; font-weight: 800; }
.rc-price-line { font-size: 13px; font-weight: 700; color: var(--color-orange); margin: 3px 0 4px; }
.rc-actions { display: flex; gap: 6px; align-items: center; position: relative; z-index: 2; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .hersteller-index-grid { grid-template-columns: 1fr; }
  .archiv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .review-header { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .alt-cards { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .info-grid, .nas-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .hersteller-grid { grid-template-columns: 1fr; }
  .staerken-schwaechen { grid-template-columns: 1fr; }
  .archiv-banner { flex-direction: column; gap: 12px; }
  .changed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-right { align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
  .hero-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 13px; }
  .testsieger-box { flex-wrap: wrap; gap: 14px; }
  .use-cases { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ratgeber-grid { grid-template-columns: 1fr; }
  .hdd-body { grid-template-columns: 1fr; }
  .seo-body { grid-template-columns: 1fr; }
  .seo-photo { display: none; }
  .ratgeber-strip { flex-direction: column; gap: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .archiv-grid { grid-template-columns: 1fr; }
  .h-page-header-inner { flex-wrap: wrap; }
  .vergleich-strip { flex-direction: column; gap: 12px; }
}
