/* browserdoktor.de - statischer Relaunch
   Markenfarben: Rot #d94d4a, Ink #2a2120, BG #e8e8e8 (aus Live-Theme uebernommen) */
:root{
  --red:#d94d4a; --red-dark:#b23b39; --red-warn:#f23000;
  --ink:#2a2120; --ink-soft:#4a4038; --muted:#7a726c;
  --bg:#e8e8e8; --card:#fff; --line:#dcd8d4; --line-soft:#ececec;
  --wrap:1180px;
  --ext-icon:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20512%20512%27%3E%3Cpath%20d%3D%27M320%200c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032l82.7%200L201.4%20265.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200L448%20109.3l0%2082.7c0%2017.7%2014.3%2032%2032%2032s32-14.3%2032-32l0-160c0-17.7-14.3-32-32-32L320%200zM80%2032C35.8%2032%200%2067.8%200%20112L0%20432c0%2044.2%2035.8%2080%2080%2080l320%200c44.2%200%2080-35.8%2080-80l0-112c0-17.7-14.3-32-32-32s-32%2014.3-32%2032l0%20112c0%208.8-7.2%2016-16%2016L80%20448c-8.8%200-16-7.2-16-16l0-320c0-8.8%207.2-16%2016-16l112%200c17.7%200%2032-14.3%2032-32s-14.3-32-32-32L80%2032z%27/%3E%3C/svg%3E");
  --ico-check:url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20448%20512%27%3E%3Cpath%20d=%27M438.6%20105.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-256%20256c-12.5%2012.5-32.8%2012.5-45.3%200l-128-128c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200L160%20338.7%20393.4%20105.4c12.5-12.5%2032.8-12.5%2045.3%200z%27/%3E%3C/svg%3E");
  --ico-arrow:url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20320%20512%27%3E%3Cpath%20d=%27M310.6%20233.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-192%20192c-12.5%2012.5-32.8%2012.5-45.3%200s-12.5-32.8%200-45.3L242.7%20256%2073.4%2086.6c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l192%20192z%27/%3E%3C/svg%3E");
}
*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:"Source Sans Pro",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:19px;line-height:1.6;-webkit-font-smoothing:antialiased;
}
a{color:var(--red);text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%;height:auto;}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--red);color:#fff;padding:8px 14px;z-index:100;}
.skip-link:focus{left:8px;top:8px;}
:focus-visible{outline:3px solid var(--red);outline-offset:2px;}

/* ---- Header ---- */
.site-header{background:var(--card);border-bottom:3px solid var(--red);position:sticky;top:0;z-index:50;}
.header-inner{max-width:var(--wrap);margin:0 auto;padding:12px 20px;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.logo{font-size:23px;font-weight:800;letter-spacing:-.02em;color:var(--ink);}
.logo b{color:var(--red);}
.logo span{color:var(--muted);font-weight:600;}
.logo:hover{text-decoration:none;}
/* Navigation als eigene volle Zeile unter dem Logo */
.mainnav{border-top:1px solid var(--line-soft);background:#faf9f7;}
.mainnav-inner{max-width:var(--wrap);margin:0 auto;padding:0 10px;display:flex;align-items:stretch;}
.mainnav a{flex:1 1 auto;text-align:center;font-size:13.5px;font-weight:600;color:var(--ink-soft);padding:12px 9px;white-space:nowrap;position:relative;}
.mainnav a+a::before{content:"";position:absolute;left:0;top:26%;height:48%;width:1px;background:var(--line);}
.mainnav a:hover{background:rgba(217,77,74,.09);color:var(--red-dark);text-decoration:none;}
.nav-toggle{display:none;background:none;border:0;font-size:26px;color:var(--ink);cursor:pointer;line-height:1;}

/* Header-Suche */
.site-search{display:flex;align-items:center;background:#f2f0ec;border:1px solid var(--line);border-radius:9px;overflow:hidden;flex:0 1 250px;max-width:250px;transition:border-color .15s ease,background .15s ease;}
.site-search:focus-within{border-color:var(--red);background:var(--card);}
.site-search input{flex:1;min-width:0;border:0;background:none;padding:8px 4px 8px 13px;font-size:14px;color:var(--ink);font-family:inherit;outline:none;}
.site-search input::placeholder{color:var(--muted);}
.site-search button{border:0;background:none;padding:0 12px;color:var(--muted);cursor:pointer;display:flex;align-items:center;}
.site-search:focus-within button{color:var(--red-dark);}
.site-search button svg{width:15px;height:15px;fill:currentColor;display:block;}
.site-search--mobile{display:none;}
.search-empty{background:#f7f6f3;border-left:3px solid #cbc5bd;border-radius:0 10px 10px 0;padding:16px 20px;}

/* ---- Artikel-Layout 4: linke sticky Sprung-Nav + Content ---- */
main{display:block;}
.article-wrap{max-width:var(--wrap);margin:0 auto;padding:24px 20px 10px;
  display:grid;grid-template-columns:250px 1fr;gap:38px;align-items:start;}
.article-aside{position:sticky;top:78px;align-self:start;font-size:15px;}
.toc-box{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:14px 16px;margin-bottom:16px;}
.toc-box h2{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:0 0 10px;}
.toc{list-style:none;margin:0;padding:0;}
.toc li{margin:2px 0;}
.toc li.sub{padding-left:12px;}
.toc a{display:block;padding:4px 8px;border-radius:6px;color:var(--ink-soft);font-size:14.5px;line-height:1.3;border-left:2px solid transparent;}
.toc a:hover{background:rgba(217,77,74,.08);text-decoration:none;}
.toc a.active{color:var(--red-dark);border-left-color:var(--red);background:rgba(217,77,74,.08);font-weight:600;}
.hub-links{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:14px 16px;}
.hub-links h2{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:0 0 10px;}
.hub-links a{display:block;padding:5px 8px;border-radius:6px;color:var(--ink-soft);font-size:14.5px;}
.hub-links a:hover{background:rgba(217,77,74,.08);color:var(--red-dark);text-decoration:none;}

.article-main{min-width:0;}
.article-card{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:30px 34px;}
.article-hero{margin:-30px -34px 24px;}
.article-hero img{display:block;width:100%;aspect-ratio:1200/630;object-fit:cover;border-radius:13px 13px 0 0;}
.crumbs{font-size:13px;color:var(--muted);margin-bottom:16px;line-height:1.5;letter-spacing:.005em;}
.crumbs a{color:var(--red-dark);font-weight:600;text-decoration:none;}
.crumbs a:hover{text-decoration:underline;text-underline-offset:2px;}
.crumbs span{color:var(--ink);font-weight:600;}
.article-h1{font-size:clamp(28px,4vw,40px);line-height:1.12;letter-spacing:-.015em;margin:0 0 8px;text-wrap:balance;}
.article-byline{font-size:14px;color:var(--muted);margin-bottom:18px;display:flex;gap:8px;flex-wrap:wrap;align-items:center;}
.article-byline .sep{width:4px;height:4px;border-radius:50%;background:#c5bfb9;}

/* ---- Post-Body Typografie (1:1-Content) ---- */
.post-body{max-width:none;}
.post-body h2{font-size:28px;line-height:1.2;margin:34px 0 12px;letter-spacing:-.01em;scroll-margin-top:82px;}
.post-body h3{font-size:22px;line-height:1.3;margin:26px 0 10px;scroll-margin-top:82px;}
.post-body p{margin:0 0 16px;}
/* Listen: Teilrahmen (linke rote Akzentkante + heller Grund) + thematische Marker */
.post-body ul,.post-body ol{list-style:none;margin:0 0 20px;padding:14px 22px 14px 20px;
  background:#f7f6f3;border-left:3px solid #cbc5bd;border-radius:0 10px 10px 0;}
.post-body ul li,.post-body ol li{position:relative;margin:9px 0;padding-left:28px;line-height:1.55;}
.post-body ul li::before{content:"";position:absolute;left:0;top:3px;width:20px;height:20px;border-radius:50%;
  border:2px solid var(--red);
  background:url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20320%20512%27%3E%3Cpath%20fill=%27%23d94d4a%27%20d=%27M310.6%20233.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-192%20192c-12.5%2012.5-32.8%2012.5-45.3%200s-12.5-32.8%200-45.3L242.7%20256%2073.4%2086.6c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l192%20192z%27/%3E%3C/svg%3E") center/7px 8px no-repeat;}
.post-body ol{counter-reset:bdli;}
.post-body ol li{counter-increment:bdli;padding-left:36px;}
.post-body ol li::before{content:counter(bdli);position:absolute;left:0;top:1px;width:23px;height:23px;
  background:var(--red);color:#fff;border-radius:50%;font-size:13px;font-weight:700;line-height:23px;text-align:center;}
/* verschachtelte Listen ohne Doppel-Rahmen */
.post-body li>ul,.post-body li>ol{margin:8px 0 4px;background:none;border-left:none;border-radius:0;padding:0 0 0 2px;}

/* tl;dr-/Hinweis-Box (Shortcodes Ultimate su-box) - Titel + Padding, eigener Listen-Marker */
.post-body .su-box{margin:0 0 24px;border:1px solid #cbc5bd;border-color:#cbc5bd !important;overflow:hidden;box-shadow:0 2px 8px rgba(42,33,32,.06);}
.post-body .su-box-title{padding:11px 18px;font-weight:700;font-size:16px;line-height:1.3;letter-spacing:.01em;}
.post-body .su-box-content{padding:16px 18px 4px;}
.post-body .su-box-content>ul{background:none;border-left:none;border-radius:0;padding:0;margin:0 0 12px;}
.post-body .su-box-content ul li{padding-left:20px;}
.post-body .su-box-content ul li::before{-webkit-mask:none;mask:none;
  top:9px;left:2px;width:7px;height:7px;border-radius:50%;background:var(--red);}
.post-body img{border-radius:8px;height:auto;}
/* Content-Bilder per Lightbox vergroessern (FLIP-Zoom, JS in footer.php) */
.post-body img.lb-zoomable{cursor:zoom-in;transition:filter .18s ease,box-shadow .18s ease,transform .18s ease;}
.post-body img.lb-zoomable:hover{filter:brightness(1.03);box-shadow:0 10px 30px rgba(42,33,32,.16);transform:translateY(-2px);}
html.lb-open{overflow:hidden;}
.lightbox{position:fixed;inset:0;z-index:1200;display:none;align-items:center;justify-content:center;
  padding:min(6vmin,60px);cursor:zoom-out;
  background:rgba(24,18,17,0);-webkit-backdrop-filter:blur(0);backdrop-filter:blur(0);
  transition:background .3s ease,-webkit-backdrop-filter .3s ease,backdrop-filter .3s ease;}
.lightbox.is-on{background:rgba(24,18,17,.84);-webkit-backdrop-filter:blur(7px) saturate(1.1);backdrop-filter:blur(7px) saturate(1.1);}
.lightbox img{max-width:100%;max-height:100%;object-fit:contain;border-radius:12px;
  box-shadow:0 40px 90px rgba(0,0,0,.6);transform-origin:top left;will-change:transform;}
.lightbox .lb-close{position:absolute;top:16px;right:20px;width:44px;height:44px;border:0;border-radius:50%;
  background:rgba(255,255,255,.14);color:#fff;font-size:24px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;opacity:0;
  transition:background .18s ease,transform .28s ease,opacity .28s ease;}
.lightbox.is-on .lb-close{opacity:1;}
.lightbox .lb-close:hover{background:rgba(255,255,255,.28);transform:rotate(90deg);}
@media (prefers-reduced-motion:reduce){
  .lightbox,.lightbox img,.lightbox .lb-close,.post-body img.lb-zoomable{transition-duration:.001ms;}
}
.post-body figure{margin:20px 0;}
/* Ueber-mich-Intro: Foto links, Lauftext rechts (einspaltig) */
.post-body .about-intro{display:flex;gap:26px;align-items:flex-start;flex-wrap:wrap;margin:4px 0 8px;}
.post-body .about-photo{flex:0 0 250px;margin:0;}
.post-body .about-photo img{width:100%;border-radius:12px;box-shadow:0 12px 30px rgba(42,33,32,.14);}
.post-body .about-lead{flex:1 1 320px;}
.post-body .about-lead p:first-child{margin-top:0;}
@media(max-width:560px){.post-body .about-photo{flex-basis:200px;}}
.post-body figcaption{font-size:14px;color:var(--muted);margin-top:6px;}
.post-body a{color:var(--red-dark);text-decoration:underline;text-decoration-color:rgba(178,59,57,.4);
  text-underline-offset:2px;padding:0 1px;border-radius:2px;
  transition:color .12s ease,background-color .12s ease,text-decoration-color .12s ease;}
.post-body a:hover{color:var(--red);text-decoration-color:var(--red);background:rgba(217,77,74,.10);}
/* Externe Links: nachgestelltes Icon signalisiert "fuehrt auf andere Website" (Buttons ausgenommen) */
.post-body a[href^="http"]:not([href*="browserdoktor.de"]):not(.gb-button):not(.bd-btn):not(.bd-product-btn):not(.ip-cta-btn):not([data-ab-asin])::after{
  content:"";display:inline-block;width:.66em;height:.66em;margin-left:.22em;
  vertical-align:-.01em;background-color:currentColor;opacity:.7;
  -webkit-mask:var(--ext-icon) center/contain no-repeat;mask:var(--ext-icon) center/contain no-repeat;
}
.post-body a[href^="http"]:not([href*="browserdoktor.de"]):not(.gb-button):not(.bd-btn):not(.bd-product-btn):not(.ip-cta-btn):not([data-ab-asin]):hover::after{opacity:1;}
.post-body code{background:#f2efec;padding:2px 6px;border-radius:4px;font-size:.9em;}
.post-body table{width:100%;border-collapse:collapse;margin:20px 0;font-size:17px;}
.post-body th,.post-body td{border:1px solid var(--line);padding:9px 12px;text-align:left;}
.post-body th{background:#f7f4f2;}
.post-body blockquote{border-left:4px solid var(--red);background:#faf3f2;margin:20px 0;padding:12px 18px;border-radius:0 8px 8px 0;}
.post-body .wp-block-image,.post-body .wp-block-table{margin:20px 0;}
.table-scroll{overflow-x:auto;}

/* GenerateBlocks-Buttons + Grid (CTA, z.B. Router-Login-Links) - GB-CSS fehlt uns, hier nachgebaut */
.post-body .gb-grid-wrapper,.post-body .gb-button-wrapper{display:flex;flex-wrap:wrap;gap:14px;margin:22px 0;}
.post-body .gb-grid-column{flex:1 1 210px;min-width:0;display:flex;}
.post-body .gb-grid-column>.gb-container{flex:1;display:flex;}
.post-body .gb-button{position:relative;overflow:hidden;flex:1;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  background:var(--red);color:#fff;font-weight:700;font-size:16px;line-height:1.25;
  padding:14px 20px;border-radius:10px;text-decoration:none;
  box-shadow:0 2px 6px rgba(178,59,57,.25);
  transition:background .15s ease,box-shadow .15s ease,transform .15s ease;}
.post-body .gb-button:hover{background:var(--red-dark);color:#fff;text-decoration:none;
  transform:translateY(-1px);box-shadow:0 7px 18px rgba(178,59,57,.34);}
/* Scan-/Shine-Effekt beim Hover */
.post-body .gb-button::after{content:"";position:absolute;top:0;left:-60%;width:45%;height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.45),transparent);
  transform:skewX(-20deg);pointer-events:none;}
.post-body .gb-button:hover::after{animation:gb-scan .7s ease;}
@keyframes gb-scan{from{left:-60%;}to{left:130%;}}
.post-body .gb-icon{display:inline-flex;}
.post-body .gb-icon svg{width:1em;height:1em;fill:currentColor;flex:0 0 auto;}
@media (prefers-reduced-motion:reduce){.post-body .gb-button:hover::after{animation:none;}}

/* ---- Info-/Service-Callout (ersetzt WP su-service) ---- */
.post-body .bd-callout{display:flex;gap:15px;align-items:flex-start;margin:24px 0;padding:17px 20px;
  background:#faf4f4;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:12px;}
.post-body .bd-callout-ico{flex:0 0 auto;width:29px;height:29px;color:var(--red);margin-top:2px;}
.post-body .bd-callout-ico svg{width:100%;height:100%;fill:currentColor;display:block;}
.post-body .bd-callout-body{min-width:0;}
.post-body .bd-callout-body>*:first-child{margin-top:0;}
.post-body .bd-callout-body>*:last-child{margin-bottom:0;}
.post-body .bd-callout-title{margin:0 0 5px;font-weight:700;font-size:18px;color:var(--ink);line-height:1.3;}
.post-body .bd-callout--warn{background:#fdf3ee;border-left-color:var(--red-warn);}
.post-body .bd-callout--warn .bd-callout-ico{color:var(--red-warn);}
.post-body .bd-callout--tip{background:#fbf7ee;border-left-color:#c9962a;}
.post-body .bd-callout--tip .bd-callout-ico{color:#c9962a;}

/* ---- FAQ (ersetzt WP rank-math-FAQ) ---- */
.post-body .bd-faq{margin:4px 0 0;}
.post-body .bd-faq-item{padding:16px 0;border-top:1px solid var(--line);}
.post-body .bd-faq-item:first-child{border-top:0;padding-top:4px;}
.post-body .bd-faq-q{margin:0 0 7px;font-size:18px;font-weight:700;color:var(--ink);line-height:1.35;}
.post-body .bd-faq-a{color:var(--ink-soft);}
.post-body .bd-faq-a>*:first-child{margin-top:0;}
.post-body .bd-faq-a>*:last-child{margin-bottom:0;}

/* ---- Box mit Titelleiste (ersetzt WP su-box) ---- */
.post-body .bd-box{border:1px solid var(--line);border-radius:12px;overflow:hidden;margin:24px 0;}
.post-body .bd-box-title{background:var(--red);color:#fff;font-weight:700;padding:11px 18px;font-size:16.5px;}
.post-body .bd-box-body{padding:16px 18px;}
.post-body .bd-box-body>*:first-child{margin-top:0;}
.post-body .bd-box-body>*:last-child{margin-bottom:0;}

/* Tool-Karte (z. B. Browser-Check) */
.post-body .bd-tool{border:1px solid var(--line);border-radius:14px;overflow:hidden;margin:10px 0 26px;background:var(--card);}
.post-body .bd-tool-hero{background:linear-gradient(135deg,#fbf2f2,#f6efec);padding:24px 22px 22px;border-bottom:1px solid var(--line);text-align:center;}
.post-body .bd-tool-label{font-size:13.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);}
.post-body .bd-tool-answer{margin-top:5px;font-size:29px;font-weight:800;line-height:1.15;color:var(--ink);}
.post-body .bd-tool-answer b{color:var(--red);}
.post-body .bd-tool-sub{margin-top:6px;font-size:16.5px;color:var(--ink-soft);}
.post-body .bd-tool-table{width:100%;border-collapse:collapse;}
.post-body .bd-tool-table th,.post-body .bd-tool-table td{text-align:left;padding:10px 22px;border-top:1px solid var(--line-soft);font-size:15.5px;vertical-align:top;line-height:1.4;}
.post-body .bd-tool-table th{width:44%;color:var(--ink-soft);font-weight:600;}
.post-body .bd-tool-table td{color:var(--ink);font-weight:700;}
.post-body .bd-tool-ua{padding:13px 22px;border-top:1px solid var(--line);}
.post-body .bd-tool-ua summary{cursor:pointer;font-weight:600;color:var(--ink-soft);font-size:15px;}
.post-body .bd-tool-ua code{display:block;margin-top:9px;word-break:break-all;font-size:12.5px;background:#f4f1ef;border-radius:8px;padding:10px 12px;color:var(--ink-soft);}
@media(max-width:560px){.post-body .bd-tool-answer{font-size:23px;}.post-body .bd-tool-table th{width:50%;}}

/* Synonym-Infografik (Lesezeichen = Favoriten = Bookmarks) */
.post-body .bd-synonyms{margin:26px 0;padding:18px 16px 20px;background:linear-gradient(135deg,#fbf2f2,#f6efec);border:1px solid var(--line);border-radius:14px;}
.post-body .bd-synonyms-cap{text-align:center;font-size:14px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:var(--muted);margin:0 0 14px;}
.post-body .bd-synonyms-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px;}
.post-body .bd-syn{flex:1 1 150px;max-width:210px;display:flex;flex-direction:column;align-items:center;gap:7px;background:var(--card);border:1px solid var(--line);border-radius:11px;padding:15px 12px;text-align:center;}
.post-body .bd-syn svg{width:28px;height:28px;fill:var(--red);flex:0 0 auto;}
.post-body .bd-syn b{font-size:17px;color:var(--ink);font-weight:700;line-height:1.2;}
.post-body .bd-syn span{font-size:12.5px;color:var(--muted);line-height:1.3;}
.post-body .bd-syn-eq{font-size:28px;font-weight:800;color:var(--red);flex:0 0 auto;}
@media(max-width:540px){.post-body .bd-syn-eq{transform:rotate(90deg);}.post-body .bd-syn{flex-basis:100%;flex-direction:row;justify-content:flex-start;text-align:left;gap:13px;}}

/* Browser-Liste mit Marken-Icons */
.post-body .bd-browsers{display:grid;gap:11px;margin:22px 0;}
.post-body .bd-browser{display:flex;gap:14px;align-items:flex-start;background:var(--card);border:1px solid var(--line);border-radius:11px;padding:13px 15px;}
.post-body .bd-browser-ico{flex:0 0 auto;width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;background:var(--bc,#888);}
.post-body .bd-browser-ico svg{width:23px;height:23px;fill:#fff;}
.post-body .bd-browser-txt{flex:1;min-width:0;}
.post-body .bd-browser-txt b{display:block;font-size:16.5px;color:var(--ink);margin:0 0 3px;font-weight:700;}
.post-body .bd-browser-txt p{margin:0;color:var(--ink-soft);font-size:15.5px;line-height:1.5;}
.post-body .bd-browser-txt p+p{margin-top:6px;}

/* ---- Vergleichs-Infografik (bd-compare) ---- */
.post-body .bd-compare{display:grid;grid-template-columns:1fr auto 1fr;
  margin:28px 0;border:1px solid var(--line);border-radius:14px;overflow:hidden;
  background:var(--card);box-shadow:0 1px 3px rgba(42,33,32,.06);}
.post-body .bd-compare-col{padding:20px 22px;}
.post-body .bd-compare-col--check{background:#faf7f6;}
.post-body .bd-compare-ico{width:44px;height:44px;display:flex;align-items:center;
  justify-content:center;border-radius:11px;margin-bottom:12px;}
.post-body .bd-compare-col--check .bd-compare-ico{background:#efe7e5;color:var(--ink);}
.post-body .bd-compare-col--safe .bd-compare-ico{background:rgba(217,77,74,.14);color:var(--red);}
.post-body .bd-compare-ico svg{width:24px;height:24px;}
.post-body .bd-compare-kicker{font-weight:800;font-size:19px;margin:0 0 3px;color:var(--ink);}
.post-body .bd-compare-q{font-style:italic;color:var(--muted);margin:0 0 12px;font-size:16px;}
.post-body .bd-compare ul{list-style:none;margin:0;padding:0;}
.post-body .bd-compare li{position:relative;padding-left:26px;margin:9px 0;font-size:16px;line-height:1.4;}
.post-body .bd-compare li::before{content:"";position:absolute;left:0;top:.18em;width:15px;height:15px;
  background:var(--muted);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center/contain;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center/contain;}
.post-body .bd-compare-vs{display:flex;align-items:center;justify-content:center;
  font-size:29px;font-weight:800;color:var(--red);
  border-left:1px solid var(--line-soft);border-right:1px solid var(--line-soft);padding:0 6px;}
.post-body .bd-compare figcaption{grid-column:1/-1;padding:12px 18px;font-size:14.5px;
  color:#e8e2e0;background:var(--ink);text-align:center;}
@media(max-width:600px){
  .post-body .bd-compare{grid-template-columns:1fr;}
  .post-body .bd-compare-col--check{border-bottom:1px solid var(--line-soft);}
  .post-body .bd-compare-vs{padding:6px;border:none;
    border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);}
}

/* ---- Button (ersetzt WP su-button) ---- */
.post-body .bd-btn-wrap{margin:22px 0;}
.post-body .bd-btn-wrap--center{text-align:center;}
.post-body a.bd-btn{display:inline-flex;flex-direction:column;align-items:center;gap:2px;
  background:var(--red);color:#fff;font-weight:600;font-size:17px;line-height:1.3;
  padding:13px 26px;border-radius:9px;text-decoration:none;transition:background .15s ease;}
.post-body a.bd-btn:hover{background:var(--red-dark);color:#fff;text-decoration:none;}
.post-body a.bd-btn small{font-weight:400;font-size:13px;opacity:.9;}
.post-body a.bd-btn--wide{display:flex;width:100%;}

/* ---- Responsive Tabelle (ersetzt WP su-table) ---- */
.post-body .bd-table{overflow-x:auto;margin:20px 0;}
.post-body .bd-table table{margin:0;}

/* ---- Verwandte Artikel (ersetzt WP su-post-Loop) ---- */
.post-body .bd-related{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:18px;margin:22px 0;list-style:none;padding:0;}
.post-body .bd-related-card{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--card);display:flex;flex-direction:column;}
.post-body .bd-related-card img{width:100%;height:150px;object-fit:cover;display:block;}
.post-body .bd-related-body{padding:12px 14px;}
.post-body .bd-related-title{font-size:16px;font-weight:700;line-height:1.3;margin:0 0 6px;}
.post-body .bd-related-title a{color:var(--ink);}
.post-body .bd-related-title a:hover{color:var(--red-dark);}
.post-body .bd-related-exc{font-size:13.5px;color:var(--muted);margin:0;}

/* ---- Amazon-Produktbox (render_product, ersetzt WP AAWP; Affiliate-Links erhalten) ---- */
.post-body .ab-product{display:flex;gap:20px;align-items:flex-start;
  border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;
  padding:18px 20px;margin:26px 0;background:#fafafa;}
.post-body .ab-product__image{flex:0 0 170px;position:relative;background:#fff;border:1px solid var(--line);
  border-radius:10px;padding:10px;text-align:center;}
.post-body .ab-product__image img{max-width:100%;height:auto;max-height:180px;object-fit:contain;
  mix-blend-mode:multiply;}
.post-body .ab-product__badge{position:absolute;top:8px;left:8px;background:var(--red);color:#fff;
  font-size:11.5px;font-weight:700;padding:3px 9px;border-radius:20px;letter-spacing:.02em;}
.post-body .ab-product__badge--nobild{position:static;display:inline-block;margin:0 0 8px;}
.post-body .ab-product__body{min-width:0;flex:1;}
.post-body .ab-product__title{font-size:19px;font-weight:700;margin:0 0 4px;color:var(--ink);line-height:1.3;}
.post-body .ab-product__title a{color:var(--ink);}
.post-body .ab-product__title a:hover{color:var(--red-dark);}
.post-body .ab-product__brand{display:block;font-size:13px;color:var(--muted);margin:0 0 8px;}
.post-body .ab-product__price{font-size:23px;font-weight:800;color:var(--ink);line-height:1.1;margin:0 0 12px;}
.post-body .ab-product__price-note{font-size:13px;font-weight:500;color:var(--muted);}
.post-body .ab-product__desc{margin:0 0 14px;color:var(--ink-soft);}
.post-body .ab-product__proscons{display:grid;grid-template-columns:1fr 1fr;gap:12px 22px;margin:0 0 14px;}
.post-body .ab-product__proscons ul{margin:5px 0 0;padding:0;list-style:none;background:none;border:0;border-radius:0;}
.post-body .ab-product__proscons li{position:relative;padding:2px 0 2px 22px;font-size:15px;line-height:1.45;color:var(--ink-soft);}
.post-body .ab-product__pros-label,.post-body .ab-product__cons-label{font-size:13px;font-weight:700;
  text-transform:uppercase;letter-spacing:.04em;}
.post-body .ab-product__pros-label{color:#1a8a4a;}
.post-body .ab-product__cons-label{color:var(--red-warn);}
.post-body .ab-product__pros li::before,.post-body .ab-product__cons li::before{
  position:absolute;top:0;width:auto;height:auto;border:0;border-radius:0;background:none;
  font-weight:800;font-size:16px;line-height:1.4;}
.post-body .ab-product__pros li::before{content:"+";left:2px;color:#1a8a4a;}
.post-body .ab-product__cons li::before{content:"!";left:4px;color:var(--red-warn);}
.post-body .ab-product__feedback{font-size:15px;color:var(--ink-soft);background:#f2efec;
  border-radius:8px;padding:11px 14px;margin:0 0 14px;}
.post-body .ab-product__verdict{font-size:15px;color:var(--ink);border-left:3px solid var(--red);
  padding:2px 0 2px 12px;margin:0 0 16px;}
.post-body a.ab-product__cta{display:inline-block;background:#ff9900;color:#0f0f0f;font-weight:700;
  padding:12px 26px;border-radius:9px;text-decoration:none;transition:background .15s ease,transform .15s ease;}
.post-body a.ab-product__cta:hover{background:#e88b00;color:#0f0f0f;text-decoration:none;transform:translateY(-1px);}
@media(max-width:620px){
  .post-body .ab-product{flex-direction:column;gap:14px;}
  .post-body .ab-product__image{flex:none;width:100%;max-width:220px;margin:0 auto;}
  .post-body .ab-product__proscons{grid-template-columns:1fr;gap:10px;}
  .post-body a.ab-product__cta{display:block;text-align:center;}
}

/* ---- IP-/Login-CTA-Box ---- */
.post-body .ip-cta{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px 22px;
  margin:0 0 26px;padding:18px 22px;background:linear-gradient(180deg,#fff,#fbf4f4);
  border:1px solid var(--line);border-left:5px solid var(--red);border-radius:12px;
  box-shadow:0 2px 10px rgba(178,59,57,.06);}
.post-body .ip-cta-main{display:flex;flex-direction:column;gap:3px;min-width:0;flex:1 1 260px;}
.post-body .ip-cta-label{font-size:12.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--red-dark);}
.post-body .ip-cta-ip{font-family:"Courier New",ui-monospace,monospace;font-size:29px;font-weight:700;line-height:1.1;color:var(--ink);letter-spacing:-.01em;}
.post-body .ip-cta-hint{font-size:13.5px;color:var(--muted);line-height:1.45;margin-top:2px;}
.post-body .ip-cta-hint strong{color:var(--ink-soft);font-weight:600;}
.post-body .ip-cta-actions{display:flex;flex-wrap:wrap;gap:10px;flex:0 0 auto;}
.post-body .ip-cta-btn,.post-body .ip-cta-copy{display:inline-flex;align-items:center;justify-content:center;
  font:600 15px/1 inherit;font-family:inherit;padding:13px 20px;border-radius:9px;cursor:pointer;white-space:nowrap;
  transition:background .15s ease,color .15s ease,border-color .15s ease;}
.post-body a.ip-cta-btn{background:var(--red);color:#fff;border:1px solid var(--red);}
.post-body a.ip-cta-btn:hover{background:var(--red-dark);border-color:var(--red-dark);color:#fff;text-decoration:none;}
.post-body .ip-cta-copy{background:#fff;color:var(--red-dark);border:1px solid var(--line);}
.post-body .ip-cta-copy:hover{border-color:var(--red);background:rgba(217,77,74,.06);}
.post-body .ip-cta-copy.copied{background:var(--red);color:#fff;border-color:var(--red);}
@media(max-width:520px){
  .post-body .ip-cta{padding:16px 17px;}
  .post-body .ip-cta-ip{font-size:25px;}
  .post-body .ip-cta-actions{width:100%;}
  .post-body .ip-cta-btn,.post-body .ip-cta-copy{flex:1 1 auto;}
}

/* ---- Anzeigen ---- */
.ad-slot{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
  background:repeating-linear-gradient(45deg,#efece9,#efece9 10px,#e9e5e1 10px,#e9e5e1 20px);
  border:1px solid var(--line);border-radius:8px;color:var(--muted);margin:22px auto;text-align:center;}
.ad-top{width:336px;height:280px;max-width:100%;}
.ad-mid{width:100%;min-height:120px;padding:16px;}
.ad-sidebar{width:300px;height:250px;max-width:100%;margin:16px auto 0;}
.ad-card{margin:0;width:100%;height:100%;min-height:230px;border-radius:12px;padding:20px;}
.ad-badge{font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);}
.ad-dim{font-size:13px;}
/* Echte Anzeige (live): schlicht, ohne Platzhalter-Optik; ins fuellt die volle Breite,
   damit AdSense eine Breite > 0 misst und ausliefert. */
.ad-unit{width:100%;margin:22px auto;text-align:center;overflow:hidden;}
.ad-unit.ad-card{margin:0;min-height:230px;}
/* Content-Anzeigen (oben/mitte) als zentrierter Block, nicht ueber die volle Breite */
.ad-unit.ad-top,.ad-unit.ad-mid{max-width:728px;margin-left:auto;margin-right:auto;}
.ad-unit .adsbygoogle{display:block;width:100%;margin:0 auto;}

/* ---- Autorenbox ---- */
.author-box{display:grid;grid-template-columns:120px 1fr;gap:20px;align-items:center;
  background:var(--card);border:1px solid var(--line);border-radius:14px;padding:20px 22px;margin:34px 0;}
.author-avatar{text-align:center;}
.author-avatar img{width:104px;height:104px;border-radius:50%;object-fit:cover;}
.author-first{display:block;font-size:13px;color:var(--muted);margin-top:6px;font-weight:600;}
.author-label{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--red-dark);font-weight:800;margin:0 0 6px;}
.author-bio{font-size:16px;line-height:1.55;margin:0 0 10px;color:var(--ink-soft);}
.author-link{font-weight:700;}
.author-links{display:flex;align-items:center;flex-wrap:wrap;gap:12px 16px;margin-top:2px;}
.author-social{display:inline-flex;gap:8px;}
.author-social a{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;
  border-radius:50%;background:#f2efec;color:var(--ink-soft);border:1px solid var(--line);
  transition:background .12s ease,color .12s ease,border-color .12s ease;}
.author-social a:hover{background:var(--red);color:#fff;border-color:var(--red);text-decoration:none;}
.author-social svg{width:16px;height:16px;fill:currentColor;display:block;}

/* ---- Startseite + Hub-Listen ---- */
.home-wrap{max-width:var(--wrap);margin:0 auto;padding:26px 20px 10px;}
.home-hero{margin:8px 0 30px;}
.home-hero h1{font-size:clamp(28px,4.2vw,44px);line-height:1.1;letter-spacing:-.02em;margin:0 0 12px;text-wrap:balance;}
.home-hero h1 b{color:var(--red);}
.home-hero p{font-size:19px;color:var(--ink-soft);margin:0;max-width:70ch;}
.hub-hero{margin-bottom:20px;}
.hub-count{display:inline-block;margin-top:12px;font-size:13px;font-weight:700;letter-spacing:.04em;
  color:var(--red-dark);background:rgba(217,77,74,.10);border:1px solid rgba(217,77,74,.22);
  border-radius:999px;padding:4px 13px;}

.home-block{margin:0 0 42px;}
.block-head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;
  margin:0 0 16px;padding-bottom:8px;border-bottom:2px solid var(--line);}
.block-head h2{font-size:23px;letter-spacing:-.01em;margin:0;}
.block-more{font-size:15px;font-weight:600;white-space:nowrap;}

/* Karten-Raster */
.money-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(215px,1fr));gap:16px;}
.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(258px,1fr));gap:18px;}
.card-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
@media(max-width:820px){.card-grid-3{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.card-grid-3{grid-template-columns:1fr;}}

.card{display:flex;flex-direction:column;background:var(--card);border:1px solid var(--line);
  border-radius:12px;overflow:hidden;color:var(--ink);transition:border-color .12s ease,box-shadow .12s ease,transform .12s ease;}
.card:hover{text-decoration:none;border-color:rgba(217,77,74,.45);box-shadow:0 8px 24px rgba(42,33,32,.10);transform:translateY(-2px);}
/* Kachel-Bildformat = natives Hero-Format (~940x788), Beschnitt unten verankert,
   damit der eingebrannte Text am unteren Rand nie abgeschnitten wird. */
.card-thumb{display:block;aspect-ratio:940/788;background:#f2efec;overflow:hidden;}
.card-thumb img{width:100%;height:100%;object-fit:cover;object-position:center bottom;display:block;border-radius:0;}
.card-body{display:flex;flex-direction:column;gap:6px;padding:13px 15px 16px;}
.card-hub{font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--red-dark);}
.card-title{font-size:17px;font-weight:700;line-height:1.25;letter-spacing:-.01em;color:var(--ink);}
.card-exc{font-size:14px;line-height:1.45;color:var(--muted);
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}

/* Money-Kachel: gleiches Bildformat, kompakter Body */
.card-money .card-body{padding:12px 14px 14px;}
.card-money .card-title{font-size:18px;}
.card-money{border-top:3px solid var(--red);}

/* News-Strip (Magazin-Einbindung, URLs bleiben unter /magazin/) */
.news-strip .block-head{border-bottom-color:var(--red);}
.news-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:16px;}
.news-card{display:flex;flex-direction:column;background:var(--card);border:1px solid var(--line);
  border-radius:12px;overflow:hidden;color:var(--ink);
  transition:border-color .12s ease,box-shadow .12s ease,transform .12s ease;}
.news-card:hover{text-decoration:none;border-color:rgba(217,77,74,.45);box-shadow:0 8px 24px rgba(42,33,32,.10);transform:translateY(-2px);}
.news-thumb{position:relative;display:block;aspect-ratio:16/9;background:#f2efec;overflow:hidden;}
.news-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.news-date{position:absolute;left:8px;bottom:8px;background:rgba(31,30,30,.82);color:#fff;
  font-size:11.5px;font-weight:700;letter-spacing:.02em;padding:3px 8px;border-radius:6px;font-variant-numeric:tabular-nums;}
.news-body{display:flex;flex-direction:column;gap:5px;padding:11px 14px 14px;}
.news-kicker{font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--red-dark);}
.news-title{font-size:15.5px;font-weight:700;line-height:1.3;color:var(--ink);}

/* "Über Browserdoktor.de"-Text (mit VG-Wort-Pixel) */
.home-about{max-width:820px;margin-top:8px;}
.home-about h2{font-size:26px;margin:0 0 14px;letter-spacing:-.01em;}
.home-about h3{font-size:20px;margin:26px 0 10px;}

/* Hub-Kacheln */
.hub-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:16px;}
.hub-card{display:flex;flex-direction:column;gap:8px;background:var(--card);border:1px solid var(--line);
  border-left:4px solid var(--red);border-radius:12px;padding:18px 20px;color:var(--ink);
  transition:box-shadow .12s ease,transform .12s ease;}
.hub-card:hover{text-decoration:none;box-shadow:0 8px 24px rgba(42,33,32,.10);transform:translateY(-2px);}
.hub-card-name{font-size:19px;font-weight:800;letter-spacing:-.01em;}
.hub-card-desc{font-size:14.5px;color:var(--ink-soft);line-height:1.45;flex:1;}
.hub-card-count{font-size:12.5px;font-weight:700;color:var(--muted);}

/* kompakte Zeilenliste (optional) */
.list-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-bottom:1px solid var(--line-soft);}
.row-hub{font-size:12px;color:var(--muted);white-space:nowrap;}

/* Hub: weisse Panels (wie Artikel-Karten) fuer Intro-Text + Artikel-Liste */
.hub-panel{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:26px 32px;}
.hub-intro{line-height:1.7;color:var(--ink-soft);}
.hub-intro>*{max-width:820px;}
.hub-intro>*:first-child{margin-top:0;}
.hub-intro>*:last-child{margin-bottom:0;}
.hub-intro h2{font-size:22px;color:var(--ink);letter-spacing:-.01em;margin:24px 0 8px;}
.hub-intro h3{font-size:18px;color:var(--ink);margin:20px 0 6px;}
.hub-intro p{margin:0 0 14px;}
.hub-intro ul{margin:0 0 14px;padding-left:20px;}
.hub-intro a{color:var(--red-dark);font-weight:600;}
.hub-all .block-head{margin:0 0 14px;}
.hub-all .block-head h2{margin:0;}
.hub-list{list-style:none;margin:0;padding:0;columns:2;column-gap:36px;}
.hub-list .list-row{display:block;break-inside:avoid;padding:0;border:0;}
.hub-list .list-row a{display:block;position:relative;padding:7px 10px 7px 24px;border-radius:7px;
  color:var(--red-dark);line-height:1.4;text-decoration:none;transition:background .12s ease;}
.hub-list .list-row a::before{content:"";position:absolute;left:6px;top:12px;width:10px;height:10px;
  background:var(--muted);-webkit-mask:var(--ico-arrow) center/contain no-repeat;mask:var(--ico-arrow) center/contain no-repeat;}
.hub-list .list-row a:hover{background:rgba(217,77,74,.08);text-decoration:underline;text-decoration-color:rgba(178,59,57,.45);}
.hub-list .list-row a:hover::before{background:var(--red);}
.block-count{display:inline-block;font-size:13px;font-weight:700;color:var(--muted);
  background:#efece8;border-radius:20px;padding:2px 11px;margin-left:6px;vertical-align:middle;}

/* Schmale gestapelte Liste (Router-Login: Thumb links, Titel + Excerpt rechts) */
.money-list{display:flex;flex-direction:column;gap:12px;max-width:760px;}
.list-item{display:flex;align-items:stretch;background:var(--card);border:1px solid var(--line);
  border-radius:12px;overflow:hidden;color:var(--ink);
  transition:border-color .12s ease,box-shadow .12s ease,transform .12s ease;}
.list-item:hover{text-decoration:none;border-color:rgba(217,77,74,.45);box-shadow:0 8px 24px rgba(42,33,32,.10);transform:translateY(-2px);}
.list-thumb{flex:0 0 158px;background:#f2efec;overflow:hidden;}
.list-thumb img{width:100%;height:100%;object-fit:cover;object-position:center bottom;display:block;}
.list-text{display:flex;flex-direction:column;justify-content:center;gap:5px;padding:12px 18px;min-width:0;}
.list-item .card-title{font-size:18px;}
.list-item .card-exc{font-size:14.5px;-webkit-line-clamp:2;}
@media(max-width:560px){
  .list-thumb{flex-basis:110px;}
  .list-item .card-title{font-size:16px;}
}

/* ---- Footer ---- */
.site-footer{background:var(--ink);color:#d8d2cd;margin-top:50px;}
.footer-inner{max-width:var(--wrap);margin:0 auto;padding:26px 20px;display:flex;gap:16px;flex-wrap:wrap;align-items:center;}
.footer-brand{font-weight:800;color:#fff;}
.footer-brand b{color:var(--red);}
.footer-nav{display:flex;gap:16px;flex-wrap:wrap;margin-left:auto;}
.footer-nav a{color:#d8d2cd;font-size:15px;}
.footer-nav a:hover{color:#fff;}
.footer-copy{width:100%;font-size:13px;color:#9a938d;border-top:1px solid #3a322e;padding-top:14px;}

/* ---- Responsive ---- */
@media(max-width:900px){
  .article-wrap{grid-template-columns:1fr;gap:0;}
  .article-aside{position:static;order:2;margin-top:26px;}
  .article-aside .toc-box{display:none;} /* Sprung-Nav mobil ausblenden, H2 stehen im Text */
}
@media(max-width:720px){
  body{font-size:18px;}
  .nav-toggle{display:block;}
  .header-inner .site-search{display:none;}           /* Desktop-Suche aus, wandert ins Burger-Menue */
  .site-search--mobile{display:flex;flex:1 1 auto;max-width:none;margin:8px 2px 12px;}
  .mainnav{display:none;border-top:0;}
  .mainnav.open{display:block;border-top:1px solid var(--line-soft);}
  .mainnav-inner{flex-direction:column;justify-content:flex-start;gap:0;padding:6px 12px;}
  .mainnav a{flex:none;text-align:left;padding:11px 10px;border-bottom:1px solid var(--line-soft);}
  .mainnav a:last-child{border-bottom:0;}
  .mainnav a+a::before{display:none;}
  .hub-list{columns:1;}
  .author-box{grid-template-columns:1fr;text-align:center;}
  .article-card{padding:20px 18px;}
  .article-hero{margin:-20px -18px 18px;}
  .ad-top{width:300px;height:250px;} /* mobiler Fallback */
}
@media(prefers-reduced-motion:no-preference){
  .toc a,.mainnav a{transition:background .12s ease,color .12s ease;}
}

/* ---- 404: Diagnose-Monitor mit EKG-Puls ---- */
.nf{max-width:720px;margin:0 auto;padding:46px 20px 68px;text-align:center;}
.nf-monitor{position:relative;max-width:600px;margin:0 auto 30px;overflow:hidden;
  background:radial-gradient(120% 140% at 50% 0,#2b201f 0,#160f0f 100%);
  border-radius:18px;padding:30px 22px 26px;
  box-shadow:0 26px 64px rgba(42,33,32,.30),inset 0 0 0 1px rgba(255,255,255,.06);}
.nf-monitor::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:repeating-linear-gradient(0deg,rgba(255,255,255,.035) 0 1px,transparent 1px 4px);}
.nf-ekg{display:block;width:100%;height:120px;position:relative;z-index:1;}
.nf-ekg .track{fill:none;stroke:rgba(217,77,74,.16);stroke-width:2;}
.nf-ekg .beat{fill:none;stroke:var(--red);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;
  filter:drop-shadow(0 0 5px rgba(217,77,74,.85));
  stroke-dasharray:170 1400;stroke-dashoffset:1400;animation:nf-sweep 2.6s linear infinite;}
@keyframes nf-sweep{from{stroke-dashoffset:1400;}to{stroke-dashoffset:-170;}}
.nf-code{position:absolute;top:calc(50% + 6px);left:50%;transform:translate(-50%,-50%);z-index:0;
  font-size:104px;font-weight:800;letter-spacing:-.04em;line-height:1;color:#fff;opacity:.12;}
.nf h1{font-size:34px;margin:0 0 12px;letter-spacing:-.02em;}
.nf-sub{font-size:19px;color:var(--ink-soft);margin:0 auto 14px;max-width:52ch;}
.nf-path{display:inline-block;max-width:100%;background:#fff;border:1px solid var(--line);border-radius:8px;
  padding:4px 11px;font-size:14.5px;color:var(--muted);word-break:break-all;}
.nf .site-search{margin:26px auto 30px;max-width:440px;width:100%;}
.nf-chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:0 0 34px;}
.nf-chip{background:#fff;border:1px solid var(--line);border-radius:24px;padding:8px 16px;
  font-size:14.5px;font-weight:600;color:var(--ink-soft);
  transition:border-color .12s ease,color .12s ease,background .12s ease;}
.nf-chip:hover{border-color:var(--red);color:var(--red-dark);background:rgba(217,77,74,.06);text-decoration:none;}
.nf-pop{border-top:1px solid var(--line);padding-top:26px;margin-top:4px;}
.nf-pop h2{font-size:15px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin:0 0 14px;}
.nf-pop ul{list-style:none;margin:0;padding:0;display:grid;gap:8px;max-width:520px;margin:0 auto;}
.nf-pop a{display:block;position:relative;padding:9px 14px 9px 30px;border-radius:8px;background:#fff;
  border:1px solid var(--line);color:var(--red-dark);text-align:left;text-decoration:none;
  transition:border-color .12s ease,background .12s ease;}
.nf-pop a::before{content:"";position:absolute;left:12px;top:14px;width:10px;height:10px;background:var(--muted);
  -webkit-mask:var(--ico-arrow) center/contain no-repeat;mask:var(--ico-arrow) center/contain no-repeat;}
.nf-pop a:hover{border-color:var(--red);background:rgba(217,77,74,.05);}
.nf-pop a:hover::before{background:var(--red);}
@media(prefers-reduced-motion:reduce){
  .nf-ekg .beat{animation:none;stroke-dasharray:none;stroke-dashoffset:0;}
}
@media(max-width:720px){
  .nf h1{font-size:27px;}
  .nf-code{font-size:76px;}
  .nf-ekg{height:96px;}
}

/* Code-Bloecke + Inline-Code (2026-07-30) - Element-basiert, robust gegen WP-Klassen-Cleanup */
.post-body pre{background:var(--ink);color:#f3efec;padding:1rem 1.15rem;border-radius:8px;border-left:4px solid var(--red);overflow-x:auto;margin:1.35rem 0;font-size:0.86rem;line-height:1.6;-webkit-overflow-scrolling:touch;}
.post-body pre code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Courier New",monospace;background:none;color:inherit;padding:0;border:0;font-size:inherit;white-space:pre;}
.post-body code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Courier New",monospace;background:rgba(217,77,74,.10);color:var(--red-dark);padding:.12em .42em;border-radius:4px;font-size:0.88em;word-break:break-word;}

/* WP-Bildunterschriften responsiv + dezent, feste Inline-Breiten neutralisiert (2026-07-30) */
.post-body figure{max-width:100%!important;width:auto!important;height:auto;margin:1.5rem 0;}
.post-body figure img{max-width:100%;height:auto;border-radius:8px;display:block;}
.post-body figcaption,.post-body .wp-caption-text{font-size:0.8rem;color:var(--ink-soft);text-align:center;margin-top:0.5rem;font-style:italic;line-height:1.4;}

/* Beitrags-Headlines hervorheben (2026-07-30): schwarzer Text, roter Textmarker ueber
   ~45% der Texthoehe (Look wie gesundesessen.org). display:inline + box-decoration-break
   -> Marker folgt JEDER Zeile bei Umbruch. ::before ersetzt margin-top (inline hat keine
   vertikalen Margins), das Folgeelement bekommt margin-top fuer den Abstand nach unten. */
.article-h1{color:var(--ink);display:inline;background-image:linear-gradient(transparent 55%, rgba(217,77,74,.30) 55%);background-repeat:no-repeat;-webkit-box-decoration-break:clone;box-decoration-break:clone;}
.article-h1 + *{margin-top:12px;}
.post-body h2{display:inline;background-image:linear-gradient(transparent 55%, rgba(217,77,74,.22) 55%);background-repeat:no-repeat;-webkit-box-decoration-break:clone;box-decoration-break:clone;}
.post-body h2::before{content:"";display:block;height:0;margin-top:26px;}
.post-body h2 + *{margin-top:12px;}
/* VG-Wort-Pixel aus dem inline-Flow der Headline nehmen (sonst Marker-Fragment) */
.post-body img[src*="met.vgwort.de"]{display:block;width:1px;height:1px;}

/* YouTube Klick-zum-Laden (DSGVO): Platzhalter ohne externe Anfrage, iframe erst auf Klick */
.bd-video{position:relative;aspect-ratio:16/9;margin:1.6rem 0;border-radius:12px;overflow:hidden;background:#12141d;}
.bd-video-btn{position:absolute;inset:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.9rem;padding:1.2rem;border:0;cursor:pointer;color:#fff;font:inherit;text-align:center;background:radial-gradient(circle at 50% 40%,#2a2f42,#12141d);}
.bd-video-icon{display:flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:50%;background:#d32d17;box-shadow:0 6px 20px rgba(0,0,0,.35);transition:transform .18s,background .18s;}
.bd-video-btn:hover .bd-video-icon,.bd-video-btn:focus-visible .bd-video-icon{transform:scale(1.08);background:#e8341c;}
.bd-video-icon svg{width:26px;height:26px;margin-left:3px;fill:#fff;}
.bd-video-title{display:block;font-weight:700;font-size:1.02rem;line-height:1.3;}
.bd-video-hint{display:block;margin-top:.35rem;font-size:.8rem;opacity:.72;max-width:36ch;}
.bd-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
