/*
Theme Name: netzfazit
Theme URI: https://netzfazit.de
Author: netzfazit.de
Author URI: https://netzfazit.de
Description: Redaktionelles Magazin-Theme fuer netzfazit.de. Bento-Startseite, Bewertungsbox mit automatischer Gesamtnote, Affiliate-Boxen, aufklappbare Quellenangabe und drei dezente Ad-Slots.
Version: 3.46.2
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netzfazit
Tags: blog, magazine, news, custom-menu, featured-images, threaded-comments, block-styles, wide-blocks
*/

/* =========================================================
   1. Tokens
   ========================================================= */

:root {
	--nf-paper: #f4f4f1;
	--nf-card: #ffffff;
	--nf-ink: #14161a;
	--nf-ink-soft: #5a6068;
	--nf-ink-faint: #8b9098;

	/* Dunkle "Platten"-Elemente (Testzaehler, Newsletter, Symbol-Kacheln, Panels):
	   im Hellschema ein helleres, vom Hintergrund abgesetztes Grau statt Schwarz. */
	--nf-plate-bg: #e7e4dd;
	--nf-plate-tile: #dcd8cf;
	--nf-plate-edge: rgba(20, 22, 26, .12);
	--nf-plate-ink: #14161a;
	--nf-plate-ink-soft: rgba(20, 22, 26, .64);
	--nf-plate-hatch: rgba(20, 22, 26, .035);
	--nf-line: #e3e3dd;
	--nf-line-strong: #cfcfc7;
	--nf-solid: #14161a;   /* dunkle Flaechen: Chips, Footer, Buttons */

	--nf-accent: #2b34f5;
	--nf-accent-deep: #1a20b8;
	--nf-accent-soft: #e6e8ff;
	--nf-on-accent: #ffffff;

	--nf-good: #0e9f6e;
	--nf-mid: #d08700;
	--nf-low: #d64430;

	--nf-tile-1: #e6e9ff;
	--nf-tile-2: #ddf1e5;
	--nf-tile-3: #ffe7d6;
	--nf-tile-4: #f0e5ff;

	--nf-r-xl: 32px;
	--nf-r-lg: 24px;
	--nf-r-md: 16px;
	--nf-r-sm: 10px;

	--nf-shadow: 0 1px 2px rgba(20, 22, 26, .04), 0 12px 32px -18px rgba(20, 22, 26, .28);
	--nf-shadow-lift: 0 2px 4px rgba(20, 22, 26, .05), 0 26px 48px -24px rgba(20, 22, 26, .38);

	--nf-font-display: "Bricolage Grotesque", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
	--nf-font-body: "Instrument Sans", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
	--nf-font-mono: "JetBrains Mono", "Cascadia Mono", "Consolas", ui-monospace, SFMono-Regular, monospace;

	/* Schriftgroessen: bewusst kompakt, an einer Stelle zentral aenderbar */
	--nf-fs-h1: clamp(1.75rem, 3.2vw, 2.25rem);   /* 28-36 px */
	--nf-fs-hero: clamp(2.125rem, 4.2vw, 3rem);   /* 34-48 px, nur die Startseiten-Zeile */
	--nf-fs-h2: clamp(1.375rem, 2.2vw, 1.5rem);   /* 22-24 px */
	--nf-fs-h3: 1.1875rem;                        /* 19 px */
	--nf-fs-body: 1rem;                           /* 16 px */
	--nf-fs-cardtitle: 1.125rem;                  /* 18 px, Titel der Beitragskarten */
	--nf-fs-meta: 0.8125rem;                      /* 13 px */
	--nf-lh-body: 1.7;
	--nf-measure: 768px;                          /* Lesebreite im Artikel */

	--nf-wrap: 1240px;
	--nf-gap: 20px;
	--nf-gutter: 24px;
}

/* =========================================================
   2. Reset / Basis
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

body {
	margin: 0;
	background: var(--nf-paper);
	color: var(--nf-ink);
	font-family: var(--nf-font-body);
	font-size: var(--nf-fs-body);
	line-height: var(--nf-lh-body);
	font-feature-settings: "kern" 1, "liga" 1;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
	font-family: var(--nf-font-display);
	font-weight: 800;
	letter-spacing: -.028em;
	line-height: 1.08;
	margin: 0 0 .5em;
	text-wrap: balance;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: auto;
}

p { margin: 0 0 1.15em; }

hr { border: 0; border-top: 1px solid var(--nf-line); margin: 40px 0; }

:focus-visible {
	outline: 3px solid var(--nf-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.nf-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--nf-solid);
	color: #fff;
	padding: 12px 18px;
	z-index: 999;
	border-radius: 0 0 var(--nf-r-sm) 0;
}
.nf-skip:focus { left: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.nf-wrap {
	width: 100%;
	max-width: var(--nf-wrap);
	margin: 0 auto;
	padding: 0 var(--nf-gutter);
}

/* Utility: Label-Typografie (Mono) – traegt Daten, nicht Dekoration */
.nf-label {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
	font-weight: 500;
}

/* =========================================================
   3. Header
   ========================================================= */

.nf-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(244, 244, 241, .88);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid var(--nf-line);
}

.nf-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 68px;
}

.nf-brand {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	font-family: var(--nf-font-display);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -.04em;
	text-decoration: none;
	color: var(--nf-ink);
	white-space: nowrap;
}
.nf-brand__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nf-accent);
	display: inline-block;
	margin-left: 3px;
}
.nf-brand img,
.nf-header__inner .custom-logo { max-height: var(--nf-logo-height, 40px); width: auto; height: auto; }
.nf-header__inner .custom-logo-link { display: inline-flex; align-items: center; flex: none; }

.nf-nav { margin-left: 4px; min-width: 0; }
.nf-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0 2px;
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x proximity;
	overscroll-behavior-x: contain;
	mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
}
.nf-nav ul::-webkit-scrollbar { display: none; }
.nf-nav li { flex: none; scroll-snap-align: start; }
.nf-nav a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--nf-ink);
	padding: 6px 0;
	position: relative;
	white-space: nowrap;
	display: block;
}
.nf-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%;
	bottom: 0;
	height: 2px;
	background: var(--nf-accent);
	transition: right .25s ease;
}
.nf-nav a:hover::after,
.nf-nav .current-menu-item > a::after { right: 0; }

/* Desktop-Menueleiste unter dem Kopfbereich: kurze Gruppennamen mit Icon,
   Klick klappt das zugehoerige Panel direkt darunter auf. Auf
   Mobilgeraeten ausgeblendet (siehe Breakpoint weiter unten), dort
   uebernimmt das Drawer-Menu. */
.nf-navbar {
	border-top: 1px solid var(--nf-line);
}
.nf-navbar__inner { display: flex; }
.nf-navbar__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 22px;
	list-style: none;
	margin: 0;
	padding: 15px 0 10px;
	width: 100%;
}
.nf-navbar__item { position: relative; }

.nf-navbar__btn {
	display: flex;
	align-items: center;
	gap: 7px;
	background: none;
	border: none;
	padding: 4px 0;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--nf-ink-soft);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.nf-navbar__btn:hover,
.nf-navbar__btn[aria-expanded="true"],
.nf-navbar__btn.is-current { color: var(--nfc-amber, #e2963a); border-bottom-color: var(--nfc-amber, #e2963a); }
.nf-navbar__icon { display: flex; color: var(--nf-ink-faint); flex: none; }
.nf-navbar__btn:hover .nf-navbar__icon,
.nf-navbar__btn[aria-expanded="true"] .nf-navbar__icon,
.nf-navbar__btn.is-current .nf-navbar__icon { color: var(--nfc-amber, #e2963a); }

/* Bestenlisten sind inhaltlich kein Themenfeld wie die anderen Gruppen -
   eigene Bernstein-Pille statt Unterstrich-Stil, damit das sichtbar bleibt. */
.nf-navbar__btn--pill {
	background: var(--nfc-amber-soft, rgba(226, 150, 58, .18));
	color: var(--nfc-amber, #e2963a);
	padding: 6px 13px;
	border-radius: 999px;
	border-bottom: none;
	font-weight: 600;
}
.nf-navbar__btn--pill .nf-navbar__icon { color: var(--nfc-amber, #e2963a); }
.nf-navbar__btn--pill:hover,
.nf-navbar__btn--pill[aria-expanded="true"] { filter: brightness(0.96); border-bottom: none; }

/* Wieder abgerundet, ohne Bernstein-Oberkante - die Menueleiste hat schon
   den Bernstein-Unterstrich am aktiven Punkt, ein zweiter Bernstein-Akzent
   am Panel waere zu viel. Der volle Kategoriename oben im Panel steht in
   der Fliederfarbe, damit die auch im Theme vertreten bleibt. */
.nf-navbar__panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 80;
	width: 260px;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-md);
	box-shadow: var(--nf-shadow-lift);
	padding: 14px 16px;
	animation: nf-drop-in .16s ease;
}
.nf-navbar__panel-head {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--nf-font-mono);
	font-size: 13px;
	letter-spacing: .03em;
	color: var(--nf-accent-deep);
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--nf-line);
}
.nf-navbar__panel-head .nf-navbar__icon { color: var(--nf-accent-deep); }

.nf-topic--strong {
	font-weight: 700;
	color: var(--nf-ink);
	border-bottom-color: var(--nf-line) !important;
	margin-bottom: 4px;
	padding-bottom: 10px !important;
}

@keyframes nf-drop-in {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .nf-navbar__panel { animation: none; } }

.nf-topics__list { list-style: none; margin: 0; padding: 0; }
.nf-topics__list li { margin: 0; }

/* Themengruppen: Icon nur an der Gruppen-Ueberschrift (Elternkategorie),
   die Unterkategorien selbst bleiben reiner Text - ruhiger als ein Icon
   pro Zeile, dabei ueber die echte WP-Kategorie-Hierarchie automatisch
   aktuell, ohne manuelle Gruppen-Pflege im Code. */
.nf-topic-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 28px;
}
.nf-topic-group__head {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--nfc-amber, #e2963a);
	margin-bottom: 8px;
}
.nf-topic-group__icon { display: flex; color: var(--nfc-amber, #e2963a); }
.nf-topic-group__list { list-style: none; margin: 0; padding: 0; }
.nf-topic-group__list li { margin: 0; }

.nf-topic {
	display: block;
	padding: 6px 4px;
	text-decoration: none;
	color: var(--nf-ink-soft);
	font-size: 0.875rem;
	line-height: 1.4;
	border-bottom: 1px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.nf-topic:hover,
.nf-topic.is-current { color: var(--nfc-amber, #e2963a); border-bottom-color: rgba(226, 150, 58, .4); }

@media (max-width: 420px) {
	.nf-topic-groups { grid-template-columns: 1fr; gap: 16px; }
}

/* Eigene, farblich abgesetzte Kachel: Bestenlisten sind inhaltlich etwas
   anderes als eine Produktkategorie (kuratiertes Ranking statt Themenfeld),
   das darf auch optisch erkennbar sein statt sich als 9. Rubrik zu tarnen. */
.nf-topics__toplists {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding: 11px 12px;
	border-radius: var(--nf-r-sm);
	background: var(--nfc-amber-soft, rgba(226, 150, 58, .18));
	color: var(--nfc-amber, #e2963a);
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 600;
	transition: filter .15s ease;
}
.nf-topics__toplists:hover { filter: brightness(0.96); }
.nf-topics__toplists svg { flex: none; }

.nf-topics__all {
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid var(--nf-line);
}
.nf-topics__all a {
	display: block;
	padding: 9px 12px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--nfc-amber, #e2963a);
	text-decoration: none;
	border-radius: var(--nf-r-sm);
}
.nf-topics__all a:hover { background: var(--nfc-amber-soft, rgba(226, 150, 58, .18)); }

.nf-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nf-iconbtn {
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--nf-line-strong);
	background: var(--nf-card);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: none;
	transition: transform .18s ease, border-color .18s ease;
}
.nf-iconbtn:hover { transform: translateY(-1px); border-color: var(--nf-ink); }

.nf-burger { display: none; }

.nf-searchbar {
	display: none;
	padding: 0 0 20px;
}
.nf-searchbar.is-open { display: block; }

.nf-searchform { display: flex; gap: 10px; }
.nf-searchform input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--nf-line-strong);
	background: var(--nf-card);
	border-radius: var(--nf-r-md);
	padding: 14px 18px;
}
.nf-searchform button {
	border: 0;
	background: var(--nf-solid);
	color: #fff;
	border-radius: var(--nf-r-md);
	padding: 0 24px;
	font-weight: 600;
	cursor: pointer;
	flex: none;
}

/* Mobiles Menue als Vollbild-Schublade */
.nf-drawer {
	position: fixed;
	inset: 64px 0 0;
	z-index: 55;
	background: var(--nf-paper);
	overflow-y: auto;
	overscroll-behavior: contain;
	animation: nf-drawer-in .22s ease;
}
@keyframes nf-drawer-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nf-drawer__inner { padding: 20px 24px 60px; display: grid; gap: 26px; }
.nf-drawer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.nf-drawer__nav a {
	display: block;
	padding: 12px 0;
	font-family: var(--nf-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -.025em;
	text-decoration: none;
	color: var(--nf-ink);
	border-bottom: 1px solid var(--nf-line);
}
.nf-drawer__topics .nf-label { display: block; margin-bottom: 10px; }
.nf-drawer .nf-topic-groups {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

@media (max-width: 1000px) {
	.nf-burger { display: inline-flex; }
	.nf-nav { display: none; }
	.nf-navbar { display: none; }
}
@media (min-width: 1001px) {
	.nf-drawer { display: none !important; }
}

/* =========================================================
   4. Hero (Startseite)
   ========================================================= */

.nf-hero { padding: 40px 0 8px; }

.nf-hero__kicker {
	text-align: center;
	margin: 0 0 14px;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
}

.nf-hero__title {
	font-size: var(--nf-fs-hero);
	line-height: 1.1;
	letter-spacing: -.03em;
	text-align: center;
	margin: 0 auto;
	max-width: 20ch;
	text-wrap: balance;
	hyphens: none;
}
.nf-hero__title em { font-style: normal; color: var(--nf-accent); }

@media (min-width: 1100px) {
	.nf-hero__title { letter-spacing: -.035em; }
}

.nf-hero__rail {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
}
.nf-hero__rail a {
	text-decoration: none;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-size: 13px;
	color: var(--nf-ink-soft);
}
.nf-hero__rail a:hover { color: var(--nf-ink); }
.nf-hero__rail strong { font-weight: 600; color: var(--nf-ink); font-size: 14px; }
.nf-hero__rail span {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	color: var(--nf-ink-faint);
}

/* Statistik-Leiste: Tests, Quellen, Transparenz */
.nf-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}
.nf-stats--hero {
	margin: 26px auto 0;
	width: fit-content;
	max-width: 100%;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: 999px;
	padding: 12px 26px;
	box-shadow: var(--nf-shadow);
}
.nf-stats__sep {
	width: 1px;
	height: 26px;
	background: var(--nf-line-strong);
	flex: none;
}
.nf-stat {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	text-decoration: none;
	color: var(--nf-ink);
	white-space: nowrap;
}
.nf-stat b {
	font-family: var(--nf-font-display);
	font-size: 1.375rem;
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.nf-stat span {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--nf-ink-soft);
}
a.nf-stat:hover b { color: var(--nf-accent); }
.nf-stat--claim { align-items: center; gap: 8px; }
.nf-stat--claim span { color: var(--nf-accent-deep); font-weight: 600; }
.nf-stat__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--nf-good);
	flex: none;
	box-shadow: 0 0 0 4px rgba(14, 159, 110, .14);
}

/* =========================================================
   Testzähler: mechanisches Zählwerk
   ========================================================= */

.nf-counter {
	--nfc-plate: var(--nf-plate-bg);
	--nfc-tile: var(--nf-plate-tile);
	--nfc-edge: var(--nf-plate-edge);
	--nfc-ink: var(--nf-plate-ink);
	--nfc-amber: #e2963a;
	--nfc-amber-soft: rgba(226, 150, 58, .18);
	--nfc-signal: #d9e021;

	position: relative;
	margin: var(--nf-gap) 0 0;
	padding: 26px 30px 28px;
	border-radius: var(--nf-r-xl);
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		radial-gradient(120% 140% at 88% -10%, rgba(226, 150, 58, .16) 0%, transparent 58%),
		var(--nfc-plate);
	color: var(--nfc-ink);
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), var(--nf-shadow);
}

/* Laufschiene oben: greift die Idee eines Zählwerks auf */
.nf-counter__rail {
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, var(--nfc-amber) 0 22px, transparent 22px 34px);
	opacity: .85;
}

.nf-counter__id {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: rgba(243, 236, 224, .62);
	margin-bottom: 20px;
}
.nf-counter__lamp {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--nfc-signal);
	box-shadow: 0 0 0 3px rgba(217, 224, 33, .16), 0 0 12px rgba(217, 224, 33, .7);
	animation: nf-pulse 3.4s ease-in-out infinite;
}
@keyframes nf-pulse {
	0%, 100% { opacity: 1; }
	45% { opacity: .35; }
}
@media (prefers-reduced-motion: reduce) { .nf-counter__lamp { animation: none; } }

.nf-counter__units {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: start;
	gap: 0;
}
.nf-counter__div {
	align-self: stretch;
	width: 1px;
	margin: 0 26px;
	background: linear-gradient(180deg, transparent, var(--nfc-edge) 22%, var(--nfc-edge) 78%, transparent);
}

.nf-counter__unit {
	display: block;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}
a.nf-counter__unit:hover .nf-flap {
	border-color: rgba(226, 150, 58, .55);
	color: #fff;
}

/* Ziffernplättchen mit Falzkante in der Mitte */
.nf-counter__value {
	display: flex;
	gap: 5px;
	margin-bottom: 12px;
}
.nf-flap {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 44px;
	padding: 9px 4px 10px;
	border-radius: 7px;
	border: 1px solid var(--nfc-edge);
	background: linear-gradient(180deg, #2b3038 0%, var(--nfc-tile) 48%, #1b1f24 52%, #262b32 100%);
	font-family: var(--nf-font-mono);
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: var(--nfc-ink);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 6px 14px -10px #000;
	transition: color .2s ease, border-color .2s ease;
}
.nf-flap::after {
	content: "";
	position: absolute;
	left: 4px; right: 4px;
	top: 50%;
	height: 1px;
	background: rgba(0, 0, 0, .55);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .05);
}

.nf-counter__key {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--nfc-amber);
	margin-bottom: 6px;
}
.nf-counter__note {
	display: block;
	font-size: var(--nf-fs-body);
	line-height: 1.55;
	color: rgba(243, 236, 224, .68);
	max-width: 34ch;
}

/* Dritte Einheit: Prüfsiegel statt Ziffern */
.nf-counter__seal {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px dashed rgba(226, 150, 58, .55);
	background: var(--nfc-amber-soft);
	font-family: var(--nf-font-display);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: #ffd9a3;
}
.nf-counter__seal::before {
	content: "";
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--nfc-amber);
	box-shadow: 0 0 10px rgba(226, 150, 58, .9);
	flex: none;
}

@media (max-width: 900px) {
	.nf-counter { padding: 22px 20px 24px; }
	.nf-counter__units { grid-template-columns: 1fr; }
	.nf-counter__div {
		width: auto; height: 1px;
		margin: 20px 0;
		background: linear-gradient(90deg, transparent, var(--nfc-edge) 20%, var(--nfc-edge) 80%, transparent);
	}
	.nf-flap { min-width: 38px; font-size: 28px; }
	.nf-counter__note { max-width: none; }
}
@media (max-width: 400px) {
	.nf-flap { min-width: 32px; font-size: 24px; padding: 7px 3px 8px; }
}

.nf-stats--compact { justify-content: flex-start; gap: 12px; margin-top: 18px; }
.nf-stats--compact .nf-stat b { font-size: 17px; }
.nf-stats--compact .nf-stat span { font-size: 10px; }
.nf-stats--compact .nf-stats__sep { height: 16px; }
.nf-footer .nf-stats--compact .nf-stat { color: #fff; }
.nf-footer .nf-stats--compact .nf-stat span { color: rgba(255, 255, 255, .6); }
.nf-footer .nf-stats--compact .nf-stats__sep { background: rgba(255, 255, 255, .22); }
.nf-footer .nf-stats--compact .nf-stat--claim span { color: #fff; }

@media (max-width: 560px) {
	.nf-stats--hero { border-radius: var(--nf-r-lg); padding: 14px 18px; gap: 12px; }
	.nf-stats--hero .nf-stats__sep { display: none; }
	.nf-stat b { font-size: 1.25rem; }
	.nf-hero__rail { justify-content: center; }
}

/* =========================================================
   5. Bento-Grid
   ========================================================= */

.nf-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--nf-gap);
	margin: 32px 0 0;
}
.nf-bento { align-items: stretch; }
.nf-bento__lead { grid-column: span 8; display: flex; flex-direction: column; }
.nf-bento__lead > .nf-card { display: flex; flex-direction: column; flex: 1; }
.nf-bento__side { grid-column: span 4; display: grid; grid-template-rows: 1fr 1fr; gap: var(--nf-gap); }

@media (max-width: 900px) {
	.nf-bento__lead, .nf-bento__side { grid-column: span 12; }
}

/* Karten */
.nf-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--nf-card);
	border-radius: var(--nf-r-lg);
	overflow: hidden;
	box-shadow: var(--nf-shadow);
	transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s ease;
	isolation: isolate;
}
.nf-card:hover { transform: translateY(-3px); box-shadow: var(--nf-shadow-lift); }

.nf-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
}

.nf-card__media {
	position: relative;
	display: block;
	background: var(--nf-tile-1);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	text-decoration: none;
}
.nf-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.nf-card:hover .nf-card__media img { transform: scale(1.035); }

.nf-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.nf-card__title {
	font-size: var(--nf-fs-cardtitle);
	line-height: 1.18;
	margin: 0;
	letter-spacing: -.02em;
}
.nf-card__title a { text-decoration: none; }
.nf-card__excerpt { color: var(--nf-ink-soft); font-size: 0.9375rem; margin: 0; }
.nf-card__badge {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-family: var(--nf-font-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--nfc-amber, #e2963a);
}
.nf-card__badge svg { flex: none; }
.nf-card__foot {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Overlay-Karte (Bild + Text im Bild, wie im Referenz-Layout) */
.nf-card--overlay { min-height: 0; }
.nf-card--overlay .nf-card__media { aspect-ratio: 16 / 9; height: auto; }
.nf-card--overlay .nf-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 11, 14, 0) 38%, rgba(10, 11, 14, .55) 100%);
	z-index: 1;
}
.nf-card--overlay .nf-card__body {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	padding: 22px 26px 24px;
	color: #fff;
	flex: 0;
	background: linear-gradient(180deg, rgba(28, 31, 36, 0) 0%, rgba(28, 31, 36, .58) 26%, rgba(28, 31, 36, .72) 100%);
	backdrop-filter: blur(7px) saturate(1.05);
	-webkit-backdrop-filter: blur(7px) saturate(1.05);
}
.nf-card--overlay .nf-card__title {
	text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}
.nf-card--overlay .nf-card__title {
	color: #fff;
	font-size: 1rem;
	line-height: 1.28;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.nf-card--overlay .nf-card__body { padding: 16px 18px 16px; gap: 6px; }
.nf-card--overlay .nf-meta { font-size: 11px; }

/* Die beiden kleinen Karten neben der grossen halten sich besonders zurueck */
.nf-bento__side .nf-card--overlay .nf-card__title { font-size: 0.9375rem; }
.nf-bento__side .nf-card--overlay .nf-card__body { padding: 14px 16px; }
.nf-bento__side .nf-card--overlay .nf-card__foot { display: none; }
.nf-card--overlay .nf-card__excerpt { color: rgba(255, 255, 255, .82); }

.nf-bento__lead .nf-card { height: auto; }
.nf-bento__lead .nf-card--overlay .nf-card__media { aspect-ratio: 16 / 9; }
.nf-bento__lead .nf-card--overlay .nf-card__title {
	font-size: clamp(1.125rem, 1.9vw, 1.5rem);
	-webkit-line-clamp: 3;
}
.nf-bento__lead .nf-card--overlay .nf-card__body { padding: 22px 26px 24px; }

@media (max-width: 640px) {
	.nf-bento__lead .nf-card--overlay .nf-card__media { aspect-ratio: 16 / 9; }
	.nf-card--overlay .nf-card__body { padding: 16px 18px 18px; }
	.nf-card--overlay .nf-card__title { font-size: 1.125rem; }
	/* Lange Titel frassen sonst mit drei erlaubten Zeilen fast die halbe
	   Bildflaeche - auf Mobilgeraeten reichen zwei, Rest wird abgeschnitten. */
	.nf-bento__lead .nf-card--overlay .nf-card__title {
		font-size: 1.0625rem;
		-webkit-line-clamp: 2;
	}
	/* Die Fuss-Zeile (Datum/Lesezeit/Quellen) machte den Overlay-Block bei
	   der Lead-Karte zusaetzlich hoeher und verdeckte damit noch mehr vom
	   Bild - auf Mobilgeraeten daher weg, genau wie bei den Seiten-Karten. */
	.nf-bento__lead .nf-card--overlay .nf-card__foot { display: none; }
}

/* Kategorie-Chip */
.nf-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nf-solid);
	color: #fff;
	border-radius: 999px;
	padding: 5px 12px;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	z-index: 4;
}
.nf-chip--light { background: var(--nf-accent-soft); color: var(--nf-accent-deep); }
.nf-card--overlay .nf-chip { background: rgba(255, 255, 255, .92); color: var(--nf-solid); }

.nf-card__chips {
	position: absolute;
	top: 16px; left: 16px;
	z-index: 4;
	display: flex;
	gap: 6px;
}

/* Signatur: Score-Badge */
.nf-score-wrap {
	position: absolute;
	top: 14px; right: 14px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}
.nf-score {
	background: var(--nf-card);
	border-radius: 14px;
	padding: 8px 11px 7px;
	text-align: center;
	box-shadow: 0 6px 20px -8px rgba(20, 22, 26, .5);
	line-height: 1;
}
.nf-score b {
	display: block;
	font-family: var(--nf-font-display);
	font-size: 20px;
	letter-spacing: -.04em;
	color: var(--nf-ink);
}
.nf-score span {
	font-family: var(--nf-font-mono);
	font-size: 8.5px;
	letter-spacing: .08em;
	color: var(--nf-ink-faint);
	text-transform: uppercase;
	white-space: nowrap;
}

/* Auszeichnungs-Stempel: optional, nur wenn im Editor gesetzt */
.nf-score-badge {
	background: var(--nfc-amber, #e2963a);
	color: #1a1206;
	font-family: var(--nf-font-mono);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 4px 9px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 4px 12px -4px rgba(20, 22, 26, .5);
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nf-score-badge--inline {
	display: inline-block;
	margin: 4px 0 0;
	max-width: none;
}

/* Icon-Badge unten rechts auf dem Kartenbild: kein Text mehr, der
   abgeschnitten werden koennte - der ausgeschriebene Grund steht
   stattdessen unter dem Titel (siehe .nf-card__badge). Eigenstaendig
   positioniert, unabhaengig von der Notenplakette oben rechts. */
.nf-card__badge-icon {
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--nfc-amber, #e2963a);
	color: #1a1206;
	box-shadow: 0 4px 12px -4px rgba(20, 22, 26, .5);
}

/* Grosse Karte: groessere Plakette */
.nf-bento__lead .nf-score-wrap { top: 18px; right: 18px; }
.nf-bento__lead .nf-score {
	padding: 11px 15px 10px;
	border-radius: 18px;
}
.nf-bento__lead .nf-score b { font-size: 32px; }
.nf-bento__lead .nf-score span { font-size: 10px; }

/* Raster-Karten dazwischen */
.nf-grid .nf-score { padding: 9px 12px 8px; }
.nf-grid .nf-score b { font-size: 22px; }
.nf-score--good b { color: var(--nf-good); }
.nf-score--mid b { color: var(--nf-mid); }
.nf-score--low b { color: var(--nf-low); }

.nf-card--overlay .nf-meta { color: rgba(255, 255, 255, .78); }
.nf-card--overlay .nf-card__foot { padding-top: 6px; }

.nf-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--nf-font-mono);
	font-size: var(--nf-fs-meta);
	color: var(--nf-ink-faint);
	letter-spacing: .01em;
	flex-wrap: wrap;
}
.nf-meta i { font-style: normal; opacity: .5; }

/* =========================================================
   6. Sektionen / Raster
   ========================================================= */

.nf-section { padding: var(--nf-section-gap, 64px) 0 0; }
.nf-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
	flex-wrap: wrap;
}
.nf-section__title {
	font-size: var(--nf-fs-h2);
	margin: 0;
	letter-spacing: -.03em;
}
.nf-section__title small {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
	margin-bottom: 10px;
}

.nf-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--nf-accent);
	color: var(--nf-on-accent);
	border: 0;
	border-radius: 999px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.nf-btn:hover { background: var(--nf-accent-deep); transform: translateY(-1px); }
.nf-btn--ghost {
	background: transparent;
	color: var(--nf-ink);
	border: 1px solid var(--nf-line-strong);
}
.nf-btn--ghost:hover { background: var(--nf-card); border-color: var(--nf-ink); }

.nf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--nf-gap);
}
.nf-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .nf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nf-grid, .nf-grid--2 { grid-template-columns: 1fr; } }

/* Kategorie-Kacheln */
.nf-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--nf-gap);
}
@media (max-width: 900px) { .nf-cats { grid-template-columns: repeat(2, 1fr); } }

.nf-cat {
	position: relative;
	border-radius: var(--nf-r-lg);
	padding: 26px 24px 22px;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	color: var(--nf-ink);
	overflow: hidden;
	transition: transform .25s ease;
}
.nf-cat:hover { transform: translateY(-3px); }
.nf-cat:nth-child(4n+1) { background: var(--nf-tile-1); }
.nf-cat:nth-child(4n+2) { background: var(--nf-tile-2); }
.nf-cat:nth-child(4n+3) { background: var(--nf-tile-3); }
.nf-cat:nth-child(4n+4) { background: var(--nf-tile-4); }
.nf-cat h3 { font-size: 1.125rem; margin: 0; letter-spacing: -.02em; }
.nf-cat span { font-family: var(--nf-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(20, 22, 26, .55); }
.nf-cat__arrow {
	position: absolute;
	right: 20px; bottom: 18px;
	font-size: 20px;
	transition: transform .25s ease;
}
.nf-cat:hover .nf-cat__arrow { transform: translate(3px, -3px); }

/* Prinzip-Streifen: erklaert, wie netzfazit arbeitet */
.nf-principle {
	position: relative;
	border-radius: var(--nf-r-xl);
	padding: 44px 40px 40px;
	overflow: hidden;
	isolation: isolate;
}
.nf-principle__glow {
	position: absolute;
	inset: -40% -10% auto -10%;
	height: 70%;
	background: radial-gradient(60% 100% at 20% 0%, rgba(139, 147, 255, .5) 0%, transparent 70%);
	opacity: .5;
	z-index: -1;
	pointer-events: none;
}
.nf-principle::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(120% 90% at 80% 0%, #000 10%, transparent 75%);
	pointer-events: none;
}

.nf-principle__head { max-width: 46ch; margin-bottom: 34px; }
.nf-principle__head .nf-label { display: block; margin-bottom: 12px; }
.nf-principle__title {
	font-size: var(--nf-fs-h2);
	margin: 0;
	letter-spacing: -.03em;
}

.nf-principle__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}
.nf-principle__item {
	position: relative;
	padding: 26px 28px 6px;
}
.nf-principle__item + .nf-principle__item::before {
	content: "";
	position: absolute;
	left: 0; top: 8px; bottom: 8px;
	width: 1px;
	background: currentColor;
	opacity: .16;
}
.nf-principle__num {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 13px;
	letter-spacing: .14em;
	opacity: .55;
	margin-bottom: 14px;
}
.nf-principle__item h3 {
	font-size: 1.0625rem;
	line-height: 1.3;
	margin: 0 0 8px;
	letter-spacing: -.015em;
}
.nf-principle__item p {
	margin: 0;
	font-size: var(--nf-fs-meta);
	line-height: 1.6;
	opacity: .72;
}

/* Variante 1: dunkler Block */
.nf-principle--dark { background: var(--nf-solid); color: #fff; }

/* Variante 2: helle Karten nebeneinander */
.nf-principle--light {
	background: transparent;
	padding: 0;
	color: var(--nf-ink);
}
.nf-principle--light .nf-principle__glow,
.nf-principle--light::after { display: none; }
.nf-principle--light .nf-principle__grid { gap: var(--nf-gap); }
.nf-principle--light .nf-principle__item {
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
	padding: 26px 26px 28px;
	box-shadow: var(--nf-shadow);
}
.nf-principle--light .nf-principle__item + .nf-principle__item::before { display: none; }
.nf-principle--light .nf-principle__num { color: var(--nf-accent); opacity: 1; }

/* Variante 3: Akzentfarbe */
.nf-principle--accent {
	background: linear-gradient(135deg, var(--nf-accent) 0%, var(--nf-accent-deep) 100%);
	color: #fff;
}
.nf-principle--accent .nf-principle__glow { background: radial-gradient(60% 100% at 80% 0%, rgba(255, 255, 255, .35) 0%, transparent 70%); }

@media (max-width: 860px) {
	.nf-principle { padding: 30px 24px 26px; }
	.nf-principle__grid { grid-template-columns: 1fr; gap: 0; }
	.nf-principle__item { padding: 22px 0 4px; }
	.nf-principle--light .nf-principle__item { padding: 22px; }
	.nf-principle__item + .nf-principle__item::before {
		left: 0; right: 0; top: 0; bottom: auto;
		width: auto; height: 1px;
	}
	.nf-principle--light .nf-principle__grid { gap: var(--nf-gap); }
}

/* =========================================================
   7. Einzelbeitrag
   ========================================================= */

.nf-single { padding: 40px 0 0; }

.nf-post-head { max-width: var(--nf-measure); margin: 0 auto 26px; text-align: center; }
.nf-single-toplist { padding: 56px 0 0; }
.nf-post-head h1 {
	font-size: var(--nf-fs-h1);
	letter-spacing: -.03em;
	line-height: 1.16;
	margin: 14px 0 16px;
}
.nf-post-head .nf-meta { justify-content: center; }

.nf-post-hero {
	max-width: var(--nf-measure);
	margin: 0 auto 34px;
}
.nf-post-hero__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--nf-r-lg);
	background: var(--nf-tile-1);
}
.nf-post-hero__media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.nf-article {
	max-width: var(--nf-measure);
	margin: 0 auto;
}
.nf-article > * { max-width: 100%; }

.nf-content { font-size: var(--nf-fs-body); line-height: var(--nf-lh-body); }
.nf-content h2 {
	font-size: var(--nf-fs-h2);
	line-height: 1.25;
	margin: 2.1em 0 .6em;
	letter-spacing: -.02em;
}
.nf-content h3 { font-size: var(--nf-fs-h3); line-height: 1.3; margin: 1.8em 0 .5em; }
.nf-content a { color: var(--nf-accent-deep); text-decoration-color: rgba(43, 52, 245, .35); }
.nf-content a:hover { text-decoration-color: currentColor; }
.nf-content ul, .nf-content ol { padding-left: 1.25em; margin: 0 0 1.3em; }
.nf-content li { margin-bottom: .5em; }
.nf-content img, .nf-content .wp-block-image img { border-radius: var(--nf-r-md); }
.nf-content figure { margin: 2em 0; }
.nf-content figcaption {
	font-family: var(--nf-font-mono);
	font-size: 11.5px;
	color: var(--nf-ink-faint);
	margin-top: 8px;
}
.nf-content blockquote {
	margin: 2em 0;
	padding: 20px 24px;
	border-radius: var(--nf-r-lg);
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		var(--nf-plate-bg);
	font-size: 1.05em;
	line-height: 1.55;
	letter-spacing: -.015em;
	color: var(--nf-plate-ink);
	font-style: italic;
}
.nf-content blockquote p:last-child { margin-bottom: 0; }
.nf-content table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: 0.9375rem; }
.nf-content th, .nf-content td { border-bottom: 1px solid var(--nf-line); padding: 11px 10px; text-align: left; }
.nf-content th { font-family: var(--nf-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--nf-ink-faint); }
.nf-content .alignwide { width: min(980px, 92vw); margin-left: 50%; transform: translateX(-50%); max-width: none; }
.nf-content .alignfull { width: 100vw; margin-left: 50%; transform: translateX(-50%); max-width: none; border-radius: 0; }

/* Kurzfassung fuer Eilige: automatisch als eigene Karte gewrappt (siehe
   Import-Parser) - immer die erste H2-Sektion im Artikel, unabhaengig
   von der genauen Formulierung. */
.nf-content .nf-quickfacts {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin: 2em 0;
	padding: 20px 22px;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
	background: var(--nf-card);
}
.nf-quickfacts__icon {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--nfc-amber-soft, rgba(226, 150, 58, .18));
	color: var(--nfc-amber, #e2963a);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}
.nf-quickfacts__body { min-width: 0; }
.nf-quickfacts__body h2 {
	margin: 0 0 8px;
	font-size: 1.0625rem;
}
.nf-quickfacts__body p { margin: 0 0 .6em; font-size: 0.9375rem; color: var(--nf-ink-soft); }
.nf-quickfacts__body p:last-child { margin-bottom: 0; }

/* Bewertungsbox-Einzeiler als grosses Pull-Quote direkt an der
   Fazit-Ueberschrift - nutzt bereits vorhandene Daten, kein neues Feld. */
.nf-content p.nf-pullquote {
	font-family: var(--nf-font-display);
	font-size: 1.5rem;
	line-height: 1.35;
	letter-spacing: -.02em;
	color: var(--nf-ink);
	border-left: 3px solid var(--nfc-amber, #e2963a);
	padding-left: 20px;
	margin: .4em 0 1.4em;
}

/* Sieger-Zeile in Vergleichstabellen: hoechste Note in Spalte 2, siehe
   Import-Parser. */
.nf-content tr.nf-table-winner { background: var(--nfc-amber-soft, rgba(226, 150, 58, .14)); }
.nf-content tr.nf-table-winner td:first-child { font-weight: 600; }
.nf-table-winner__icon {
	display: inline-flex;
	color: var(--nfc-amber, #e2963a);
	margin-right: 6px;
	vertical-align: -2px;
}

/* =========================================================
   8. Bewertungsbox (Signatur-Element)
   ========================================================= */

.nf-rating {
	position: relative;
	overflow: hidden;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-xl);
	padding: 30px;
	margin: 38px 0;
	box-shadow: var(--nf-shadow);
}
.nf-rating__top {
	display: grid;
	grid-template-columns: 172px 1fr;
	gap: 30px;
	align-items: center;
}
@media (max-width: 620px) {
	.nf-rating { padding: 22px; }
	.nf-rating__top { grid-template-columns: 1fr; gap: 20px; }
}

.nf-ring {
	position: relative;
	width: 172px; height: 172px;
	border-radius: 50%;
	background: conic-gradient(var(--nf-ring-color, var(--nf-accent)) calc(var(--nf-ring-pct, 0) * 1%), var(--nf-line) 0);
	display: grid;
	place-items: center;
	margin: 0 auto;
}
.nf-ring::after {
	content: "";
	position: absolute;
	inset: 13px;
	background: var(--nf-card);
	border-radius: 50%;
}
.nf-ring__val {
	position: relative;
	z-index: 1;
	text-align: center;
	line-height: 1;
}
.nf-ring__val b {
	display: block;
	font-family: var(--nf-font-display);
	font-size: 2.25rem;
	letter-spacing: -.05em;
}
.nf-ring__val span {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
}

.nf-rating__head h2 {
	font-size: var(--nf-fs-h2);
	margin: 8px 0 8px;
	letter-spacing: -.025em;
}
.nf-rating__verdict { color: var(--nf-ink-soft); font-size: 0.9375rem; margin: 0; }

.nf-criteria { margin-top: 26px; display: grid; gap: 14px; }
.nf-criterion { display: grid; grid-template-columns: 1fr 64px; gap: 14px; align-items: center; }
.nf-criterion__label { font-size: 0.9375rem; font-weight: 500; }
.nf-criterion__bar {
	grid-column: 1 / -1;
	height: 7px;
	border-radius: 999px;
	background: var(--nf-line);
	overflow: hidden;
	margin-top: -6px;
}
.nf-criterion__bar i {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var(--nf-ink);
	width: var(--nf-bar, 0%);
}
.nf-criterion__val {
	font-family: var(--nf-font-mono);
	font-size: 13px;
	text-align: right;
	color: var(--nf-ink-soft);
}
.nf-criterion__val b { color: var(--nf-ink); font-weight: 600; }

.nf-rating__note {
	margin: 24px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--nf-line);
	font-size: var(--nf-fs-meta);
	line-height: 1.6;
	color: var(--nf-ink-soft);
	display: flex;
	gap: 10px;
}
.nf-rating__note svg { flex: none; margin-top: 2px; }

/* =========================================================
   9. Affiliate-Box
   ========================================================= */

.nf-deal {
	display: grid;
	grid-template-columns: 168px 1fr;
	gap: 24px;
	align-items: center;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
	padding: 22px;
	margin: 34px 0;
	position: relative;
}
.nf-deal__img {
	background: var(--nf-paper);
	border-radius: var(--nf-r-md);
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	overflow: hidden;
}
.nf-deal__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 8px; }
.nf-deal__flag {
	position: absolute;
	top: -11px; left: 22px;
	background: var(--nf-solid);
	color: #fff;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 999px;
}
.nf-deal h4 { font-size: 1.125rem; margin: 0 0 8px; letter-spacing: -.02em; }
.nf-deal p { margin: 0 0 14px; font-size: 0.9375rem; color: var(--nf-ink-soft); line-height: 1.6; }
.nf-deal__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nf-deal__price {
	font-family: var(--nf-font-display);
	font-size: 1.25rem;
	letter-spacing: -.04em;
}
.nf-deal__price small { display: block; font-family: var(--nf-font-mono); font-size: 10px; letter-spacing: .1em; color: var(--nf-ink-faint); text-transform: uppercase; }
.nf-deal__hint { font-size: 11.5px; color: var(--nf-ink-faint); margin: 12px 0 0; line-height: 1.45; }
@media (max-width: 620px) {
	.nf-deal { grid-template-columns: 1fr; padding: 20px; }
	.nf-deal__img { max-width: 180px; }
}

/* Variante ohne Bild */
.nf-deal--noimg { grid-template-columns: 1fr; }

/* Variante: schmaler Balken */
.nf-deal--bar {
	grid-template-columns: 74px 1fr;
	gap: 18px;
	padding: 16px 20px;
	margin: 26px 0;
	border-radius: var(--nf-r-md);
}
.nf-deal--bar.nf-deal--noimg { grid-template-columns: 1fr; }
.nf-deal--bar .nf-deal__img { border-radius: var(--nf-r-sm); }
.nf-deal--bar .nf-deal__text {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.nf-deal--bar h4 { margin: 0; flex: 1 1 200px; font-size: 1rem; }
.nf-deal--bar .nf-deal__row { margin-left: auto; }
.nf-deal--bar .nf-deal__price { font-size: 1.0625rem; }
.nf-deal--bar .nf-btn { padding: 10px 18px; font-size: 13px; }
.nf-deal--bar .nf-deal__hint {
	flex: 1 1 100%;
	margin: 0;
	font-size: 11px;
}

/* Variante: Textbox ohne Bild */
.nf-deal--inline {
	grid-template-columns: 1fr;
	padding: 20px 22px;
	border-left: 3px solid var(--nf-accent);
	border-radius: 0 var(--nf-r-md) var(--nf-r-md) 0;
}
.nf-deal--inline .nf-deal__flag { left: 18px; }
.nf-deal--inline h4 { font-size: 1.0625rem; }
.nf-deal--inline .nf-deal__row { gap: 14px; }

@media (max-width: 560px) {
	.nf-deal--bar { grid-template-columns: 1fr; }
	.nf-deal--bar .nf-deal__img { max-width: 74px; }
	.nf-deal--bar .nf-deal__row { margin-left: 0; }
}

/* =========================================================
   10. Quellen-Accordion
   ========================================================= */

.nf-sources {
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
	margin: 38px 0;
	overflow: hidden;
}
.nf-sources > summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 0.9375rem;
}
.nf-sources > summary::-webkit-details-marker { display: none; }
.nf-sources > summary::after {
	content: "";
	margin-left: auto;
	width: 9px; height: 9px;
	border-right: 2px solid var(--nf-ink-soft);
	border-bottom: 2px solid var(--nf-ink-soft);
	transform: rotate(45deg);
	transition: transform .25s ease;
}
.nf-sources[open] > summary::after { transform: rotate(-135deg); }
.nf-sources > summary:hover { background: rgba(20, 22, 26, .025); }
.nf-sources__count {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	background: var(--nf-accent-soft);
	color: var(--nf-accent-deep);
	border-radius: 999px;
	padding: 3px 9px;
}
.nf-sources ol { margin: 0; padding: 0 24px 22px 24px; list-style: none; counter-reset: src; }
.nf-sources li {
	counter-increment: src;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	padding: 11px 0;
	border-top: 1px solid var(--nf-line);
	font-size: 0.875rem;
}
.nf-sources li::before {
	content: counter(src, decimal-leading-zero);
	font-family: var(--nf-font-mono);
	font-size: 11px;
	color: var(--nf-ink-faint);
	padding-top: 4px;
}
.nf-sources li a { color: var(--nf-ink); text-decoration-color: var(--nf-line-strong); }
.nf-sources li a:hover { color: var(--nf-accent-deep); }
.nf-sources li em { display: block; font-style: normal; font-size: var(--nf-fs-meta); color: var(--nf-ink-faint); }

/* Autor-Box: Monogramm statt Foto - bewusst, ein gestelltes Stockfoto zu
   einem Pseudonym waere irrefuehrend, ein Kuerzel nicht. */
.nf-author-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	max-width: var(--nf-measure);
	margin: 30px auto;
	padding: 16px 20px;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
	background: var(--nf-card);
}
.nf-author-box__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--nf-line);
	display: block;
}
.nf-author-box__name {
	margin: 0 0 3px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--nf-ink);
}
.nf-author-box__bio {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--nf-ink-soft);
}

/* Kopf-Variante: Affiliate-Hinweis vor dem Artikeltext statt Autor-Info
   am Ende. Gleiche Karte, eigenes Icon-Symbol statt Bild, etwas mehr
   Luft nach unten zum folgenden Content. */
.nf-author-box--affiliate { margin-bottom: 34px; }
.nf-author-box__icon--symbol {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--nf-accent-soft);
	color: var(--nf-accent-deep);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =========================================================
   11. Werbeflaechen
   ========================================================= */

.nf-ad {
	margin: 34px auto;
	width: 100%;
	max-width: 100%;
	text-align: center;
}
/* Auf Beitragsseiten nicht breiter als das Titelbild/der Fließtext */
body.single .nf-ad {
	max-width: var(--nf-measure);
}
.nf-ad__label {
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
	display: block;
	margin-bottom: 8px;
}
.nf-ad__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 90px;
	overflow: hidden;
}
.nf-ad__inner > * { max-width: 100%; }
.nf-ad--framed .nf-ad__inner {
	background: rgba(255, 255, 255, .55);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-md);
	padding: 12px;
}
.nf-ad--content { margin: 40px auto; }

/* =========================================================
   12. Footer, Kommentare, Pagination, 404
   ========================================================= */

.nf-postnav {
	max-width: var(--nf-measure);
	margin: 46px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--nf-gap);
}
@media (max-width: 600px) { .nf-postnav { grid-template-columns: 1fr; } }
.nf-postnav a {
	background: var(--nf-card);
	border-radius: var(--nf-r-lg);
	padding: 18px 20px;
	text-decoration: none;
	border: 1px solid var(--nf-line);
	transition: border-color .2s ease;
}
.nf-postnav a:hover { border-color: var(--nf-ink); }
.nf-postnav strong { display: block; margin-top: 6px; font-size: 0.9375rem; letter-spacing: -.02em; }
.nf-postnav .next { text-align: right; }

.nf-comments {
	max-width: var(--nf-measure);
	margin: 56px auto 0;
	background: var(--nf-card);
	border-radius: var(--nf-r-xl);
	padding: 34px;
	border: 1px solid var(--nf-line);
}
@media (max-width: 620px) { .nf-comments { padding: 22px; } }
.nf-comments h2 { font-size: var(--nf-fs-h2); letter-spacing: -.025em; }
.nf-comments ol.comment-list { list-style: none; margin: 0 0 30px; padding: 0; }
.nf-comments ol.children { list-style: none; margin: 16px 0 0 22px; padding-left: 18px; border-left: 2px solid var(--nf-line); }
.nf-comments .comment-body { padding: 16px 0; border-top: 1px solid var(--nf-line); }
.nf-comments .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9375rem; }
.nf-comments .comment-author img { border-radius: 50%; }
.nf-comments .comment-metadata { font-family: var(--nf-font-mono); font-size: 11px; color: var(--nf-ink-faint); margin: 4px 0 10px; }
.nf-comments .comment-metadata a { text-decoration: none; }
.nf-comments .reply a { font-size: 13px; font-weight: 600; color: var(--nf-accent-deep); text-decoration: none; }
.nf-comments input[type="text"],
.nf-comments input[type="email"],
.nf-comments input[type="url"],
.nf-comments textarea {
	width: 100%;
	border: 1px solid var(--nf-line-strong);
	border-radius: var(--nf-r-md);
	padding: 13px 15px;
	background: var(--nf-paper);
	margin-top: 6px;
}
.nf-comments label { font-size: 14px; font-weight: 500; }
.nf-comments .comment-form-cookies-consent label { font-weight: 400; font-size: 13px; color: var(--nf-ink-soft); }
.nf-comments .form-submit input[type="submit"] {
	background: var(--nf-accent);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 13px 26px;
	font-weight: 600;
	cursor: pointer;
}
.nf-comments .comment-form p { margin-bottom: 14px; }

.nf-pagination { margin: 48px 0 0; display: flex; justify-content: center; }
.nf-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	text-decoration: none;
	font-size: 15px;
	margin: 0 4px;
}
.nf-pagination .page-numbers.current { background: var(--nf-solid); color: #fff; border-color: var(--nf-solid); }

.nf-page-head { padding: 48px 0 10px; }
.nf-page-head p { max-width: 100%; }
.nf-page-head h1 { font-size: var(--nf-fs-h1); line-height: 1.16; letter-spacing: -.03em; margin: 0; }

/* Aktueller Vergleichstest auf Kategorie-Seiten nutzt dieselben
   .nf-latestcompare-Klassen wie der Homepage-Block (siehe Abschnitt
   "Neuester Vergleichstest") - kein eigenes CSS noetig, nur ein
   schmalerer Abstand nach oben, weil er hier direkt unter dem
   Seitenkopf statt unter dem Testzaehler sitzt. */
.nf-latestcompare--category { margin-top: 24px; }

.nf-page-head p { color: var(--nf-ink-soft); max-width: 100%; margin: 14px 0 0; }

/* Bestenlisten-Uebersichtsseite: Ueberschrift und Einleitungstext auf
   derselben Lesebreite wie bei den einzelnen Bestenlisten-Seiten
   (.nf-post-head/.nf-article__intro nutzen dieselbe --nf-measure) - ab
   dem Anzeigen-Block darunter bleibt alles auf voller Wrap-Breite. */
.nf-page-head--toplist {
	max-width: var(--nf-measure);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.nf-page-head--toplist p { text-align: left; }

.nf-footer {
	margin-top: 90px;
	background: var(--nf-solid);
	color: rgba(255, 255, 255, .72);
	padding: 58px 0 30px;
}
.nf-footer a { color: #fff; text-decoration: none; }
.nf-footer a:hover { text-decoration: underline; }
.nf-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}
/* Raster nach Anzahl der befuellten Menuespalten: bei nur einem Menue rueckt es
   nach rechts an den Rand, statt in der Mitte zu haengen. */
.nf-footer__top--cols-1 { grid-template-columns: 1fr auto; }
.nf-footer__top--cols-1 > :last-child { text-align: right; }
.nf-footer__top--cols-1 > :last-child .nf-label { display: block; }
.nf-footer__top--cols-0 { grid-template-columns: 1fr; }
.nf-footer__top--cols-3 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

.nf-footer__toplists { }
.nf-footer__toplists summary {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
}
.nf-footer__toplists summary::-webkit-details-marker { display: none; }
.nf-footer__toplists summary::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-top: -3px;
	transition: transform .15s ease;
	opacity: .7;
}
.nf-footer__toplists[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.nf-footer__toplists ul { list-style: none; margin: 10px 0 0; padding: 0; line-height: 1.4; }
.nf-footer__toplists li { margin: 0; }
.nf-footer__toplists a { color: var(--nf-ink-soft); text-decoration: none; font-size: 0.875rem; }
.nf-footer__toplists a:hover { color: #fff; }
@media (max-width: 800px) {
	.nf-footer__top { grid-template-columns: 1fr; gap: 28px; }
	.nf-footer__top--cols-3 { grid-template-columns: 1fr; }
	.nf-footer__top--cols-1 { grid-template-columns: 1fr; }
	.nf-footer__top--cols-1 > :last-child { text-align: left; }
}
.nf-footer__brand {
	font-family: var(--nf-font-display);
	font-size: 1.375rem;
	color: #fff;
	letter-spacing: -.035em;
	display: block;
	margin-bottom: 10px;
}
.nf-footer p { font-size: 0.875rem; max-width: 46ch; }
.nf-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.875rem; }
.nf-footer__bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

.nf-404 { text-align: center; padding: 90px 0 40px; }
.nf-404 b {
	display: block;
	font-family: var(--nf-font-display);
	font-size: clamp(3.25rem, 12vw, 4.5rem);
	line-height: .95;
	letter-spacing: -.045em;
	color: var(--nf-accent);
}

/* Karte im Listenmodus (Suche/Archiv ohne Bild) */
.nf-card--plain .nf-card__media { display: none; }
.nf-card--plain { border: 1px solid var(--nf-line); box-shadow: none; }

/* Sichtbarkeit erst beim Scrollen (dezent, respektiert reduced motion) */
.nf-reveal { opacity: 0; transform: translateY(14px); }
.nf-reveal.is-in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .3, 1); }
@media (prefers-reduced-motion: reduce) { .nf-reveal { opacity: 1; transform: none; } }

/* =========================================================
   13. Responsive-Feinschliff (Desktop → Tablet → Mobil)
   ========================================================= */

/* Grosse Bildschirme: Hero darf atmen */
@media (min-width: 1400px) {
	:root { --nf-wrap: 1320px; --nf-gap: 24px; }
}

/* Tablet quer: Bento wird zu einer breiten Karte plus zwei Kacheln */
@media (max-width: 1080px) and (min-width: 721px) {
	.nf-bento__lead { grid-column: span 12; }
	.nf-bento__side { grid-column: span 12; }
	.nf-bento__side {
		grid-column: span 12;
		grid-template-rows: none;
		grid-template-columns: 1fr 1fr;
	}
	.nf-bento__lead .nf-card--overlay .nf-card__media,
	.nf-card--overlay .nf-card__media { aspect-ratio: 16 / 9; }
}

/* Tablet hoch */
@media (max-width: 1000px) {
	.nf-header__inner { min-height: 64px; gap: 14px; }
	.nf-section { padding: 52px 0 0; }
	.nf-content { font-size: var(--nf-fs-body); }
	.nf-post-hero__media { border-radius: var(--nf-r-lg); }
}

@media (max-width: 900px) {
	.nf-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Kleine Tablets und grosse Handys */
@media (max-width: 720px) {
	.nf-bento { gap: 14px; }
	.nf-bento__side { grid-template-columns: 1fr; }
	.nf-principle { border-radius: var(--nf-r-lg); }
	.nf-rating { border-radius: var(--nf-r-lg); }
	.nf-sources > summary { padding: 16px 18px; font-size: 15px; }
	.nf-sources ol { padding: 0 18px 18px; }
}

/* Handy */
@media (max-width: 600px) {
	:root { --nf-gutter: 16px; --nf-gap: 14px; --nf-fs-cardtitle: 1.0625rem; }

	body { font-size: var(--nf-fs-body); }

	/* Logo-Hoehe wurde bisher nirgends verkleinert - bei 4:1-Seitenverhaeltnis
	   und der Desktop-Hoehe (per Customizer oft 50-60px) nahm das Logo allein
	   auf schmalen Handys schon einen Grossteil der Kopfzeile ein, wodurch das
	   Hamburger-Menu rechts nicht mehr vollstaendig sichtbar war. Fester Wert
	   statt der Customizer-Variable, damit er zuverlaessig greift. */
	.nf-header__inner .custom-logo,
	.nf-brand img { max-height: 34px; }

	.nf-hero { padding: 28px 0 4px; }
	.nf-hero__kicker { font-size: 10px; letter-spacing: .1em; }
	.nf-content { line-height: 1.68; }
	.nf-content .alignwide,
	.nf-content .alignfull { width: 100%; margin-left: 0; transform: none; }
	.nf-section { padding: 44px 0 0; }
	.nf-section__head { margin-bottom: 20px; }
	.nf-post-head h1 { letter-spacing: -.035em; }
	.nf-post-hero__media { border-radius: var(--nf-r-md); }
	.nf-post-hero { margin-bottom: 26px; }
	.nf-card__body { padding: 16px 18px 20px; }
	.nf-deal { margin: 26px 0; }
	.nf-ad { margin: 26px auto; }
	.nf-footer { margin-top: 64px; padding: 44px 0 26px; }
	.nf-footer__brand { font-size: 28px; }
	.nf-drawer__nav a { font-size: 23px; }
}

/* Auf dem Handy sitzen Rubrik und Note dezenter auf dem Bild */
@media (max-width: 600px) {
	.nf-card__chips { top: 10px; left: 10px; gap: 4px; }
	.nf-chip {
		font-size: 9px;
		letter-spacing: .04em;
		padding: 3px 8px;
		border-radius: 999px;
	}
	.nf-score-wrap { top: 10px; right: 10px; }
	.nf-score {
		padding: 5px 8px 4px;
		border-radius: 10px;
	}
	.nf-score b,
	.nf-grid .nf-score b { font-size: 16px; }
	.nf-score span { font-size: 7.5px; letter-spacing: .06em; }
	.nf-bento__lead .nf-score-wrap { top: 10px; right: 10px; }
	.nf-bento__lead .nf-score { padding: 7px 10px 6px; border-radius: 12px; }
	.nf-bento__lead .nf-score b { font-size: 22px; }
	.nf-bento__lead .nf-score span { font-size: 8px; }
	.nf-card--overlay .nf-card__body { padding: 18px 18px 20px; }
}

/* Sehr schmale Geraete: nichts darf mehr ueberstehen */
@media (max-width: 380px) {
	.nf-brand { font-size: 19px; }
	.nf-header__inner .custom-logo,
	.nf-brand img { max-height: 30px; }
	.nf-hero__title { font-size: 1.875rem; }
	.nf-stat b { font-size: 1.125rem; }
	.nf-cats { grid-template-columns: 1fr; }
}

/* Querformat auf dem Handy: Schublade darf scrollen, Hero bleibt kompakt */
@media (max-height: 520px) and (orientation: landscape) {
	.nf-hero { padding: 20px 0 0; }
	.nf-hero__title { font-size: 1.875rem; }
	.nf-drawer { inset: 56px 0 0; }
}


/* =========================================================
   14. Farbschema: Anthrazit (Standard) und Hell
   ========================================================= */

body.nf-scheme-anthracite {
	--nf-paper: #444b55;
	--nf-card: #515965;
	--nf-ink: #f6f7f9;
	--nf-ink-soft: #ccd2da;
	--nf-ink-faint: #a4acb7;

	--nf-plate-bg: #16181c;
	--nf-plate-tile: #22262c;
	--nf-plate-edge: rgba(255, 255, 255, .1);
	--nf-plate-ink: #f3ece0;
	--nf-plate-ink-soft: rgba(243, 236, 224, .64);
	--nf-plate-hatch: rgba(255, 255, 255, .025);
	--nf-line: rgba(255, 255, 255, .15);
	--nf-line-strong: rgba(255, 255, 255, .28);
	--nf-solid: #2b313a;

	--nf-accent: #8b93ff;
	--nf-accent-deep: #aeb4ff;
	--nf-accent-soft: rgba(139, 147, 255, .18);
	--nf-on-accent: #191c33;

	--nf-good: #4ade80;
	--nf-mid: #fbbf24;
	--nf-low: #fb7185;

	--nf-shadow: 0 1px 2px rgba(0, 0, 0, .2), 0 14px 34px -20px rgba(0, 0, 0, .7);
	--nf-shadow-lift: 0 2px 6px rgba(0, 0, 0, .24), 0 28px 52px -26px rgba(0, 0, 0, .8);
}

.nf-scheme-anthracite .nf-header { background: rgba(68, 75, 85, .9); }
.nf-scheme-anthracite .nf-topics__btn:hover,
.nf-scheme-anthracite .nf-iconbtn:hover,
.nf-scheme-anthracite .nf-postnav a:hover,
.nf-scheme-anthracite .nf-btn--ghost:hover { border-color: var(--nf-ink-soft); }
.nf-scheme-anthracite .nf-topic { background: rgba(255, 255, 255, .06); }
.nf-scheme-anthracite .nf-topic:hover { background: var(--nf-accent-soft); }
.nf-scheme-anthracite .nf-topic__count { background: rgba(0, 0, 0, .22); }

.nf-scheme-anthracite .nf-btn { color: #14161a; }
.nf-scheme-anthracite .nf-btn:hover { background: var(--nf-accent-deep); }
.nf-scheme-anthracite .nf-btn--ghost { color: var(--nf-ink); }
.nf-scheme-anthracite .nf-chip--light { background: var(--nf-accent-soft); color: var(--nf-accent-deep); }

.nf-scheme-anthracite .nf-content a { color: var(--nf-accent-deep); text-decoration-color: rgba(174, 180, 255, .45); }
.nf-scheme-anthracite .nf-sources li a:hover,
.nf-scheme-anthracite .nf-topics__all,
.nf-scheme-anthracite .nf-comments .reply a { color: var(--nf-accent-deep); }
.nf-scheme-anthracite .nf-sources > summary:hover { background: rgba(255, 255, 255, .04); }

.nf-scheme-anthracite .nf-ad__inner { background: rgba(0, 0, 0, .14); }

/* Produktbilder brauchen eine helle Flaeche, sonst saufen freigestellte Motive ab */
.nf-scheme-anthracite .nf-deal__img { background: #fff; }

/* Kategorie-Kacheln bleiben farbig, der Text darauf dunkel */
.nf-scheme-anthracite .nf-cat { color: #14161a; }
.nf-scheme-anthracite .nf-cat span { color: rgba(20, 22, 26, .6); }

.nf-scheme-anthracite .nf-footer { background: #2b313a; }

.nf-scheme-anthracite .nf-comments input[type="text"],
.nf-scheme-anthracite .nf-comments input[type="email"],
.nf-scheme-anthracite .nf-comments input[type="url"],
.nf-scheme-anthracite .nf-comments textarea,
.nf-scheme-anthracite .nf-searchform input[type="search"] {
	background: rgba(0, 0, 0, .18);
	color: var(--nf-ink);
	border-color: var(--nf-line-strong);
}
.nf-scheme-anthracite .nf-comments .form-submit input[type="submit"] { color: #14161a; }


/* =========================================================
   15. Newsletter-Anmeldung
   ========================================================= */

.nf-newsletter {
	position: relative;
	margin: var(--nf-gap) 0 0;
	border-radius: var(--nf-r-xl);
	overflow: hidden;
}
.nf-newsletter--single { margin: 38px 0; }
/* Startseite: steht seit 3.18 hinter "Frisch ausgewertet", braucht daher Sektionsabstand */
.nf-newsletter--home { margin-top: var(--nf-section-gap, 64px); }
.nf-newsletter--footer { margin: 60px 0 0; }

.nf-newsletter.has-visual {
	display: grid;
	grid-template-columns: 25% 60% 15%;
	align-items: stretch;
}

/* Dritte, leere Flaeche - nur fuer die Optik, eigener, leicht anderer Grauton */
.nf-newsletter__spacer {
	background: repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px), var(--nf-plate-tile);
}

/* Unser eigenes Feld "Hinweis unter dem Formular" ist die einzige Quelle fuer den
   rechtlichen Hinweistext. Ein eventuell im Brevo-Formular selbst enthaltener
   Compliance-Absatz wird deshalb immer ausgeblendet, damit nichts doppelt steht. */
.nf-newsletter__form .sib-compliance-note {
	display: none;
}

.nf-newsletter__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nf-newsletter__icon {
	flex: none;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e2963a;
	background: rgba(226, 150, 58, .12);
	border: 2px solid rgba(226, 150, 58, .45);
	box-shadow: 0 0 30px rgba(226, 150, 58, .18);
}
.nf-newsletter__icon svg { width: 44px; height: 44px; }

.nf-newsletter__body {
	padding: 28px 30px 30px;
	min-width: 0;
}

.nf-newsletter__text { margin-bottom: 18px; }

.nf-newsletter__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	letter-spacing: .26em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.nf-newsletter__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: currentColor;
	flex: none;
}
.nf-newsletter h2 {
	font-size: var(--nf-fs-h2);
	letter-spacing: -.03em;
	margin: 0 0 8px;
}
.nf-newsletter__text p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	max-width: 52ch;
	opacity: .8;
}
.nf-newsletter__note {
	margin: 10px 0 0;
	font-size: 10.5px;
	line-height: 1.55;
	opacity: .55;
	max-width: 60ch;
}
.nf-newsletter__note a { color: inherit; }

/* Der eingebettete Fremdcode wird an das Theme angeglichen */
.nf-newsletter__form form,
.nf-newsletter__form .sib_signup_box_inside,
.nf-newsletter__form [class*="sib_signup"] {
	max-width: 100% !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
	box-shadow: none !important;
	font-family: inherit !important;
	color: inherit !important;
}

/* Brevo liefert Absaetze/Labels ohne feste Klassen (Compliance-Hinweis, Checkbox-Text).
   Eine kleine Basisgroesse auf dem Formular-Container faengt das ab; Felder und Button
   haben weiter unten eigene, groessere Werte und setzen sich per Spezifitaet durch. */
.nf-newsletter__form {
	font-size: 12.5px;
	line-height: 1.55;
}
.nf-newsletter__form form p {
	margin: 0 0 10px;
	opacity: .8;
	max-width: 100%;
}

.nf-newsletter__form input[type="text"],
.nf-newsletter__form input[type="email"],
.nf-newsletter__form input[type="tel"],
.nf-newsletter__form select {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 0 8px;
	padding: 9px 13px;
	font: inherit;
	font-size: 0.8125rem;
	color: inherit;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: var(--nf-r-sm);
}
.nf-newsletter__form input::placeholder { color: currentColor; opacity: .5; }
.nf-newsletter__form input:focus-visible { outline-offset: 2px; }

.nf-newsletter__form input[type="submit"],
.nf-newsletter__form button[type="submit"],
.nf-newsletter__form .sib-form-block__button {
	width: auto;
	min-width: 130px;
	margin-top: 4px;
	padding: 9px 22px;
	font: inherit;
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 1;
	color: #16181c;
	background: var(--nfc-amber, #e2963a);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: filter .2s ease, transform .2s ease;
}
.nf-newsletter__form input[type="submit"]:hover,
.nf-newsletter__form button[type="submit"]:hover,
.nf-newsletter__form .sib-form-block__button:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.nf-newsletter__form label,
.nf-newsletter__form .sib-form-block p {
	font-size: 11.5px;
	line-height: 1.5;
	opacity: .75;
}
.nf-newsletter__form input[type="checkbox"] {
	margin-right: 6px;
	margin-top: 2px;
	vertical-align: top;
	accent-color: var(--nfc-amber, #e2963a);
}

/* Variante 1: dunkle Platte im Look des Testzählers */
.nf-newsletter--plate {
	--nfc-amber: #e2963a;
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		radial-gradient(120% 140% at 92% -20%, rgba(226, 150, 58, .17) 0%, transparent 60%),
		var(--nf-plate-bg);
	color: var(--nf-plate-ink);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), var(--nf-shadow);
}
.nf-newsletter--plate .nf-newsletter__rail {
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, #e2963a 0 22px, transparent 22px 34px);
	opacity: .85;
	z-index: 1;
}
.nf-newsletter--plate .nf-newsletter__kicker { color: #e2963a; }
.nf-newsletter--plate .nf-newsletter__visual {
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		var(--nf-plate-tile);
}

/* Variante 2: helle Karte */
.nf-newsletter--card {
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	color: var(--nf-ink);
	box-shadow: var(--nf-shadow);
}
.nf-newsletter--card .nf-newsletter__rail { display: none; }
.nf-newsletter--card .nf-newsletter__kicker { color: var(--nf-accent); }
.nf-newsletter--card .nf-newsletter__visual { background: var(--nf-paper); }
.nf-newsletter--card .nf-newsletter__icon {
	color: var(--nf-accent);
	background: var(--nf-accent-soft);
	border-color: var(--nf-accent);
	box-shadow: none;
}
.nf-newsletter--card .nf-newsletter__form input[type="text"],
.nf-newsletter--card .nf-newsletter__form input[type="email"],
.nf-newsletter--card .nf-newsletter__form select {
	background: var(--nf-paper);
	border-color: var(--nf-line-strong);
}
.nf-newsletter--card .nf-newsletter__form input[type="submit"],
.nf-newsletter--card .nf-newsletter__form button[type="submit"],
.nf-newsletter--card .nf-newsletter__form .sib-form-block__button {
	background: var(--nf-accent);
	color: var(--nf-on-accent);
}

/* Variante 3: schmale Zeile, keine Bildspalte */
.nf-newsletter--slim {
	padding: 22px 26px;
	background: transparent;
	border: 1px dashed var(--nf-line-strong);
	color: var(--nf-ink);
	border-radius: var(--nf-r-lg);
	display: grid;
	grid-template-columns: 1fr minmax(260px, 380px);
	gap: 28px;
	align-items: center;
}
.nf-newsletter--slim .nf-newsletter__rail { display: none; }
.nf-newsletter--slim .nf-newsletter__body { padding: 0; }
.nf-newsletter--slim .nf-newsletter__text { margin-bottom: 0; }
.nf-newsletter--slim h2 { font-size: 1.125rem; margin-bottom: 4px; }
.nf-newsletter--slim .nf-newsletter__text p { font-size: var(--nf-fs-meta); }
.nf-newsletter--slim .nf-newsletter__kicker { display: none; }
.nf-newsletter--slim .nf-newsletter__form input[type="text"],
.nf-newsletter--slim .nf-newsletter__form input[type="email"] {
	background: var(--nf-card);
	border-color: var(--nf-line-strong);
	padding: 11px 14px;
}
.nf-newsletter--slim .nf-newsletter__form input[type="submit"],
.nf-newsletter--slim .nf-newsletter__form button[type="submit"],
.nf-newsletter--slim .nf-newsletter__form .sib-form-block__button {
	background: var(--nf-accent);
	color: var(--nf-on-accent);
	padding: 11px 20px;
}

/* Hinweis, solange kein Formular hinterlegt ist (nur für die Redaktion) */
.nf-newsletter__todo {
	margin: var(--nf-gap) 0 0;
	padding: 14px 18px;
	border: 1px dashed var(--nf-line-strong);
	border-radius: var(--nf-r-md);
	font-size: var(--nf-fs-meta);
	color: var(--nf-ink-soft);
}

@media (max-width: 860px) {
	.nf-newsletter--slim { grid-template-columns: 1fr; gap: 16px; }
	.nf-newsletter--slim .nf-newsletter__text p { max-width: none; }
}

@media (max-width: 600px) {
	.nf-newsletter.has-visual { grid-template-columns: 1fr; }
	.nf-newsletter__visual { padding: 22px 0 4px; }
	.nf-newsletter__body { padding: 4px 20px 24px; }
	.nf-newsletter__icon { width: 64px; height: 64px; }
	.nf-newsletter__icon svg { width: 30px; height: 30px; }
	.nf-newsletter__legal {
		padding: 0 20px 24px;
		margin-left: 0;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, .08);
		padding-top: 16px;
	}
}

@media (max-width: 600px) {
	.nf-newsletter__text p { max-width: none; }
}

.nf-tags { margin-top: 26px; }
.nf-tags a { text-decoration: none; }

/* =========================================================
   16. Eckband und Symbolbild-Hinweis auf dem Titelbild
   ========================================================= */

.nf-ribbon {
	position: absolute;
	top: 30px;
	right: -58px;
	z-index: 3;
	width: 214px;
	padding: 9px 0;
	transform: rotate(45deg);
	background: #e2963a;
	color: #3d2100;
	text-align: center;
	font-family: var(--nf-font-mono);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	line-height: 1;
	box-shadow: 0 6px 18px -10px rgba(0, 0, 0, .8);
}

/* Auszeichnung: gleicher Ribbon-Stil, gespiegelt oben links, damit sie
   gleichzeitig mit dem FAZIT-Band stehen kann. Etwas kleinere Schrift und
   weniger Letter-Spacing, weil Auszeichnungstexte ("Preis-Leistungs-Sieger")
   laenger sind als das feste Wort "Fazit". */
/* Kompakte Variante fuer die Bewertungsbox: die ist schmaler als das volle
   Titelbild, deshalb kleineres Band, oben rechts, gleiche Bernstein-Farbe
   wie das Fazit-Band, weil hier (anders als am Titelbild) keine
   Ueberschneidung mit einem zweiten Band droht. */
.nf-ribbon--rating {
	position: absolute;
	top: 22px;
	right: -60px;
	z-index: 3;
	width: 230px;
	padding: 8px 4px;
	transform: rotate(45deg);
	background: #e2963a;
	color: #3d2100;
	text-align: center;
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	line-height: 1.25;
	box-shadow: 0 4px 12px -6px rgba(0, 0, 0, .6);
}

/* Auf den kleineren Titelbildern mobil eine Nummer zurueckhaltender */
@media (max-width: 600px) {
	.nf-ribbon {
		top: 22px;
		right: -62px;
		width: 200px;
		padding: 7px 0;
		font-size: 12px;
		letter-spacing: .16em;
	}
	.nf-ribbon--rating {
		top: 14px;
		right: -56px;
		width: 190px;
		padding: 6px 4px;
		font-size: 9px;
	}
}

.nf-post-hero figcaption {
	padding: 10px 4px 0;
	background: none;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	color: var(--nf-ink-faint);
	text-align: right;
}

/* Gleiche Schrift wie die Artikel-Titelbild-Beschriftung, aber zentriert -
   nur bei den Overlay-Karten auf der Startseite (Lead + Side). */
.nf-card__caption {
	margin: 8px 0 0;
	padding: 0 4px;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	color: var(--nf-ink-faint);
	text-align: center;
}

/* Symbolbild-Hinweis: kleine Pille, unten mittig, nur Text, kein Vollbild-Balken */
.nf-symbol {
	position: absolute;
	left: 50%;
	bottom: 14px;
	z-index: 3;
	transform: translateX(-50%);
	background: rgba(22, 24, 28, .6);
	color: #f3ece0;
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	pointer-events: none;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.nf-symbol { bottom: 10px; font-size: 9.5px; padding: 4px 10px; }
}

/* =========================================================
   17. Mobile-Feinschliff
   ========================================================= */

/* Raster: einspaltiger Modus auf sehr kleinen Bildschirmen */
@media (max-width: 480px) {
	:root { --nf-fs-cardtitle: 1rem; }
	.nf-grid { grid-template-columns: 1fr; }
	.nf-card__title { -webkit-line-clamp: 3; }
	.nf-card__excerpt { display: none; }
	.nf-card__foot .nf-meta { font-size: 11px; }
	.nf-meta i { display: none; }

	/* Overlay-Karte: Titel noch kompakter */
	.nf-card--overlay .nf-card__body { padding: 12px 14px 14px; gap: 4px; }
	.nf-card--overlay .nf-card__title { font-size: 0.875rem; -webkit-line-clamp: 2; }

	/* Die Lead-Karte hat aus dem 640px-Breakpoint eine spezifischere Regel
	   (.nf-bento__lead .nf-card--overlay .nf-card__title), die sonst diese
	   Verkleinerung blockiert - auf echten Handys blieb der Titel dadurch
	   sichtbar groesser als bei allen anderen Karten. Hier explizit
	   nochmal angleichen. */
	.nf-bento__lead .nf-card--overlay .nf-card__title { font-size: 0.875rem; }

	/* Metazeile kürzen: nur Datum zeigen */
	.nf-meta time { display: inline; }
	.nf-meta span:not(:first-child):not(time) { display: none; }
}



/* =========================================================
   18. Insight-Block (Wie wir arbeiten + Zitat + Fact)
   ========================================================= */

.nf-insight {
	position: relative;
	background:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, .022) 0 2px, transparent 2px 9px),
		#16181c;
	border-radius: var(--nf-r-xl);
	overflow: hidden;
	margin: var(--nf-gap) 0 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), var(--nf-shadow);
}
.nf-insight__rail {
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, #e2963a 0 22px, transparent 22px 34px);
	opacity: .85;
	z-index: 1;
}
.nf-insight__inner {
	padding: 30px 32px 32px;
	display: grid;
	grid-template-columns: 1.85fr 1fr;
	gap: 32px;
	align-items: stretch;
}

/* Linke Haelfte: dein Symbolbild schmal, Beschriftungen daneben */
.nf-insight__left {
	display: flex;
	align-items: stretch;
}
.nf-insight__captions {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	min-width: 0;
	width: 100%;
}
.nf-insight__caption {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}
.nf-insight__caption-icon {
	flex: none;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nf-insight__caption-icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
.nf-insight__caption-text { min-width: 0; }
.nf-insight__caption-label {
	margin: 0 0 5px;
	font-family: var(--nf-font-display);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.15;
}
.nf-insight__caption-sub {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: rgba(243, 236, 224, .72);
}

/* Rechte Haelfte: vertikal geteilt, Zitat oben, Fact unten */
.nf-insight__right {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.nf-insight__panel {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 20px;
	border-radius: var(--nf-r-lg);
	border-left: 2px solid transparent;
}

.nf-insight__panel--quote {
	background: rgba(139, 147, 255, .08);
	border-left-color: #8b93ff;
}
.nf-insight__panel--quote .nf-insight__panel-kicker { color: #8b93ff; }

.nf-insight__panel--fact {
	background: rgba(74, 222, 128, .07);
	border-left-color: #4ade80;
}
.nf-insight__panel--fact .nf-insight__panel-kicker { color: #4ade80; }

.nf-insight__panel-kicker {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 9.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 7px;
}
.nf-insight__panel-text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: #f3ece0;
	font-style: italic;
}
.nf-insight__panel-text--fact {
	font-style: normal;
	color: rgba(243, 236, 224, .82);
}
.nf-insight__panel-link {
	display: inline-block;
	margin-top: 8px;
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	color: #8b93ff;
	text-decoration: none;
	letter-spacing: .04em;
}
.nf-insight__panel-link:hover { text-decoration: underline; }

@media (max-width: 760px) {
	.nf-insight__inner { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 480px) {
	.nf-insight__inner { padding: 22px 20px 24px; }
	.nf-insight__captions { gap: 14px; }
	.nf-insight__caption { gap: 14px; }
	.nf-insight__caption-icon { width: 48px; height: 48px; }
	.nf-insight__caption-label { font-size: 15px; }
	.nf-insight__caption-sub { font-size: 10.5px; }
	.nf-insight__panel { padding: 14px 16px; }
}

/* =========================================================
   19. Bestenlisten (Top-10)
   ========================================================= */

.nf-single-toplist .nf-article__intro {
	max-width: var(--nf-measure);
	margin: 0 auto 30px;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--nf-ink-soft);
}

/* Methodik-Hinweis vor der Rangliste - selber Signatur-Plate-Look wie
   Testzaehler/Insight-Panels, damit er als redaktionelle Substanz erkennbar
   ist statt als Werbe- oder Linkbox. */
.nf-toplist-note {
	max-width: var(--nf-measure);
	margin: 0 auto 24px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	border-radius: var(--nf-r-md);
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		var(--nf-plate-bg);
}
.nf-toplist-note svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: #e2963a;
}
.nf-toplist-note p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--nf-plate-ink-soft);
}

.nf-toplist {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: var(--nf-measure);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nf-toplist__row {
	display: grid;
	grid-template-columns: 40px 92px 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 12px;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-r-lg);
}

.nf-toplist__rank {
	font-family: var(--nf-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--nf-ink-faint);
	text-align: center;
}
.nf-toplist__row:nth-child(1) .nf-toplist__rank { color: #e2963a; }
.nf-toplist__row:nth-child(2) .nf-toplist__rank { color: #b9bdc4; }
.nf-toplist__row:nth-child(3) .nf-toplist__rank { color: #c98a4e; }

.nf-toplist__thumb {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--nf-r-md);
	overflow: hidden;
	background: var(--nf-tile-1);
}
.nf-toplist__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nf-toplist__body { min-width: 0; }
.nf-toplist__title {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--nf-ink);
	text-decoration: none;
	margin-bottom: 4px;
}
.nf-toplist__title:hover { color: var(--nf-accent); }
.nf-toplist__verdict {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--nf-ink-soft);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nf-toplist .nf-score {
	position: static;
	top: auto; right: auto;
	flex: none;
}

.nf-toplist__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}
.nf-toplist__deal {
	font-size: 0.75rem;
	color: var(--nf-ink-soft);
	text-decoration: none;
	border-bottom: 1px solid rgba(226, 150, 58, .35);
}
.nf-toplist__deal:hover { color: #e2963a; border-bottom-color: #e2963a; }

.nf-toplist__empty {
	max-width: var(--nf-measure);
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	color: var(--nf-ink-soft);
	border: 1px dashed var(--nf-line-strong);
	border-radius: var(--nf-r-md);
}

@media (max-width: 600px) {
	.nf-toplist__row { grid-template-columns: 28px 64px 1fr; grid-template-areas: "rank thumb body" "rank thumb score"; }
	.nf-toplist__rank { font-size: 17px; }
	.nf-toplist__aside { grid-column: 3; align-items: flex-start; margin-top: 6px; }
}

/* =========================================================
   20. Startseite: Icon-Reihe + Panel-Reihe
   ========================================================= */

.nf-workflow-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--nf-gap);
	margin: var(--nf-gap) 0 0;
}

.nf-workflow-tile {
	border-radius: var(--nf-r-lg);
	overflow: hidden;
	background: var(--nf-plate-bg);
	border: 1px solid var(--nf-plate-edge);
}

.nf-workflow-tile__icon {
	min-height: 170px;
	padding: 26px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px);
}
.nf-workflow-tile__icon img {
	max-width: var(--nf-workflow-icon-size, 70px);
	max-height: var(--nf-workflow-icon-size, 70px);
	width: auto;
	height: auto;
	object-fit: contain;
}

.nf-workflow-tile__caption {
	padding: 18px 16px;
	border-top: 1px solid var(--nf-plate-edge);
}
.nf-workflow-tile__caption p {
	margin: 0;
	font-family: var(--nf-font-display);
	font-size: var(--nf-fs-cardtitle);
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.3;
	text-align: center;
}

.nf-panels-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--nf-gap);
	margin: var(--nf-gap) 0 0;
}

.nf-panels-row__panel {
	padding: 22px 24px;
	border-radius: var(--nf-r-lg);
	border-left: 2px solid transparent;
	background: repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px), var(--nf-plate-bg);
}
.nf-panels-row__panel--quote { border-left-color: #8b93ff; }
.nf-panels-row__panel--quote .nf-panels-row__kicker { color: #8b93ff; }
.nf-panels-row__panel--fact { border-left-color: #4ade80; }
.nf-panels-row__panel--fact .nf-panels-row__kicker { color: #4ade80; }

.nf-panels-row__kicker {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.nf-panels-row__text {
	margin: 0;
	font-size: var(--nf-fs-cardtitle);
	line-height: 1.6;
	color: var(--nf-plate-ink);
	font-style: italic;
}
.nf-panels-row__text--fact { font-style: normal; color: var(--nf-plate-ink-soft); }
.nf-panels-row__link {
	display: inline-block;
	margin-top: 10px;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	color: #8b93ff;
	text-decoration: none;
}
.nf-panels-row__link:hover { text-decoration: underline; }

@media (max-width: 760px) {
	.nf-workflow-row { grid-template-columns: 1fr; }
	.nf-panels-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.nf-workflow-tile__icon { height: 96px; }
	.nf-workflow-tile__caption { padding: 14px; }
	.nf-panels-row__panel { padding: 18px 18px; }
}

/* =========================================================
   21. Newsletter: Foto-Option und Feinschliff nur auf der Startseite
   ========================================================= */

/* Foto ersetzt das Icon auf dem Desktop, sobald eines hinterlegt ist */
.nf-newsletter__visual.has-photo { position: relative; overflow: hidden; }
.nf-newsletter__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nf-newsletter__visual.has-photo .nf-newsletter__icon { display: none; }

/* Startseiten-Box: etwas mehr Innenabstand als die übrigen Instanzen */
.nf-newsletter--home .nf-newsletter__body { padding: 30px 34px 32px 34px; }

/* Handy: immer das Icon zeigen, auch wenn ein Foto hinterlegt ist; leere Spalte weglassen */
@media (max-width: 600px) {
	.nf-newsletter__visual.has-photo .nf-newsletter__photo { display: none; }
	.nf-newsletter__visual.has-photo .nf-newsletter__icon { display: flex; }
	.nf-newsletter__spacer { display: none; }
	.nf-newsletter--home .nf-newsletter__body { padding: 22px 20px 24px; }
}

/* =========================================================
   21. Meistgelesener Beitrag der Woche
   ========================================================= */

.nf-toppost {
	position: relative;
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		radial-gradient(120% 140% at 6% -20%, rgba(226, 150, 58, .14) 0%, transparent 60%),
		var(--nf-plate-bg);
	border-radius: var(--nf-r-xl);
	overflow: hidden;
	margin: var(--nf-gap) 0 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), var(--nf-shadow);
}
.nf-toppost__rail {
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, #e2963a 0 22px, transparent 22px 34px);
	opacity: .85;
	z-index: 1;
}

.nf-toppost__inner {
	display: grid;
	grid-template-columns: 66% 1fr;
	align-items: start;
	gap: 36px;
	padding: 34px 40px;
}

.nf-toppost__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	border-radius: var(--nf-r-lg);
	overflow: hidden;
	background: var(--nf-plate-tile);
}
.nf-toppost__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nf-toppost__media .nf-score-wrap { top: 14px; right: 14px; }

.nf-toppost__body { min-width: 0; }

.nf-toppost__kicker {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #e2963a;
	margin-bottom: 18px;
}

.nf-toppost__cat {
	display: inline-block;
	margin: 0 0 8px 12px;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--nf-plate-tile);
	color: var(--nf-plate-ink-soft);
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
	vertical-align: middle;
}

.nf-toppost__title {
	margin: 0 0 10px;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	letter-spacing: -.02em;
	line-height: 1.2;
}
.nf-toppost__title a {
	color: var(--nf-plate-ink);
	text-decoration: none;
}
.nf-toppost__title a:hover { color: #e2963a; }

.nf-toppost__excerpt {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nf-plate-ink-soft);
	max-width: 62ch;
}

@media (max-width: 900px) {
	.nf-toppost__inner { grid-template-columns: 56% 1fr; gap: 26px; padding: 28px 30px; }
}

@media (max-width: 640px) {
	.nf-toppost__inner {
		grid-template-columns: 1fr;
		padding: 24px 22px 28px;
		gap: 18px;
	}
}

/* =========================================================
   21b. Neuester Vergleichstest (Text links, Bild rechts)
   ========================================================= */

/* Bewusst gespiegelt zu .nf-toppost direkt darunter - Bild und Text
   wechseln die Seite, damit die Startseite nicht zweimal dasselbe
   Layout hintereinander zeigt. */
.nf-latestcompare {
	position: relative;
	background:
		repeating-linear-gradient(115deg, var(--nf-plate-hatch) 0 2px, transparent 2px 9px),
		radial-gradient(120% 140% at 94% -20%, rgba(226, 150, 58, .14) 0%, transparent 60%),
		var(--nf-plate-bg);
	border-radius: var(--nf-r-xl);
	overflow: hidden;
	margin: var(--nf-gap) 0 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), var(--nf-shadow);
}
.nf-latestcompare__rail {
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: repeating-linear-gradient(90deg, #e2963a 0 22px, transparent 22px 34px);
	opacity: .85;
	z-index: 1;
}

.nf-latestcompare__inner {
	display: grid;
	grid-template-columns: 1fr 66%;
	align-items: start;
	gap: 36px;
	padding: 34px 40px;
}

.nf-latestcompare__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	border-radius: var(--nf-r-lg);
	overflow: hidden;
	background: var(--nf-plate-tile);
}
.nf-latestcompare__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nf-latestcompare__flag {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(20, 20, 22, .85);
	border: 1px solid #e2963a;
	color: #e2963a;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	line-height: 1.4;
	padding: 6px 11px;
	border-radius: var(--nf-r-sm);
	text-align: right;
}
.nf-latestcompare__flag span {
	display: block;
	color: var(--nf-plate-ink-soft);
	font-size: 10px;
}

.nf-latestcompare__body { min-width: 0; }

.nf-latestcompare__kicker {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #e2963a;
	margin-bottom: 18px;
}

.nf-latestcompare__cat {
	display: inline-block;
	margin: 0 0 8px 12px;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--nf-plate-tile);
	color: var(--nf-plate-ink-soft);
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
	vertical-align: middle;
}

.nf-latestcompare__title {
	margin: 0 0 10px;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	letter-spacing: -.02em;
	line-height: 1.2;
}
.nf-latestcompare__title a {
	color: var(--nf-plate-ink);
	text-decoration: none;
}
.nf-latestcompare__title a:hover { color: #e2963a; }

.nf-latestcompare__excerpt {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nf-plate-ink-soft);
	max-width: 62ch;
}

.nf-latestcompare__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 900px) {
	.nf-latestcompare__inner { grid-template-columns: 1fr 56%; gap: 26px; padding: 28px 30px; }
}

@media (max-width: 640px) {
	/* Eigener, groesserer Abstand nach oben - der globale --nf-gap ist auf
	   Mobilgeraeten mit 14px knapp bemessen, zwischen zwei so dicht gepackten
	   dunklen Platten (Testzaehler direkt darueber) braucht es mehr Luft. */
	.nf-latestcompare { margin-top: 28px; }

	.nf-latestcompare__inner {
		display: flex;
		flex-direction: column;
		padding: 24px 22px 28px;
		gap: 18px;
	}
	/* Bild zuerst, damit auf dem Handy - wo ohnehin nur eine Spalte
	   bleibt - beide Bloecke gleich wirken statt einer verkehrt. Flex
	   statt Grid-order, damit die Reihenfolge unabhaengig vom
	   Auto-Placement-Verhalten zuverlaessig greift. */
	.nf-latestcompare__media { order: -1; }
	.nf-latestcompare__actions { margin-top: 4px; }
}

/* =========================================================
   22. Ähnliche Artikel (Ende eines Beitrags)
   ========================================================= */

.nf-related {
	max-width: var(--nf-measure);
	margin: 44px auto 0;
}

.nf-related__kicker {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nf-ink-faint);
	margin-bottom: 14px;
}

.nf-related__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.nf-related__card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: var(--nf-r-lg);
	overflow: hidden;
	background: var(--nf-card);
	border: 1px solid var(--nf-line);
	transition: transform .15s ease, box-shadow .15s ease;
}
.nf-related__card:hover {
	transform: translateY(-2px);
	box-shadow: var(--nf-shadow);
}

.nf-related__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--nf-tile-1);
}
.nf-related__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nf-related__media .nf-score-wrap { top: 10px; right: 10px; }
.nf-related__media .nf-score { padding: 6px 9px 5px; }
.nf-related__media .nf-score b { font-size: 16px; }
.nf-related__media .nf-score span { font-size: 7px; }

.nf-related__title {
	display: block;
	padding: 14px 16px;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.35;
}

@media (max-width: 560px) {
	.nf-related__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   23. Complianz: Cookie-Richtlinie im Theme-Look
   ========================================================= */

/* Die Balken der Cookie-Erklaerung (Dienste und Kategorien) uebernehmen
   die Platten-Variablen, damit sie sich mit dem Farbschema mitaendern. */
.cmplz-document .cmplz-service-header,
.cmplz-document .cmplz-category-header,
.cmplz-document details > summary {
	background: var(--nf-plate-bg) !important;
	color: var(--nf-plate-ink) !important;
	border-left: 2px solid var(--nfc-amber, #e2963a);
	border-radius: var(--nf-r-sm);
	padding: 12px 16px !important;
	font-family: var(--nf-font-display);
	font-weight: 700;
	letter-spacing: -.01em;
}

/* Aufgeklappter Inhalt: ruhige Flaeche, klar vom Kopf abgesetzt */
.cmplz-document .cmplz-service-content,
.cmplz-document .cmplz-category-content,
.cmplz-document details[open] > div {
	background: var(--nf-plate-tile) !important;
	color: var(--nf-plate-ink) !important;
	border-radius: 0 0 var(--nf-r-sm) var(--nf-r-sm);
	padding: 16px !important;
}

/* Kategorie-Label rechts im Balken (Funktional, Marketing ...) */
.cmplz-document .cmplz-service-header .cmplz-purpose,
.cmplz-document .cmplz-category-header .cmplz-always-active {
	font-family: var(--nf-font-mono);
	font-size: var(--nf-fs-meta);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--nf-plate-ink-soft) !important;
	font-weight: 400;
}
.cmplz-document .cmplz-always-active { color: var(--nf-good) !important; }

/* Tabellen der einzelnen Cookies */
.cmplz-document table {
	border-collapse: collapse;
	width: 100%;
	font-size: var(--nf-fs-meta);
}
.cmplz-document table th,
.cmplz-document table td {
	border-bottom: 1px solid var(--nf-plate-edge);
	padding: 8px 10px;
	text-align: left;
}

/* Ueberschriften und Links im Dokument an das Theme angleichen */
.cmplz-document h2,
.cmplz-document h3 { font-family: var(--nf-font-display); letter-spacing: -.02em; }
.cmplz-document a { color: var(--nfc-amber, #e2963a); }

/* Checkbox-Akzent in den Kategorie-Schaltern */
.cmplz-document input[type="checkbox"] { accent-color: var(--nfc-amber, #e2963a); }

/* =========================================================
   24. Amazon-Pflichthinweis unter dem Beitrag
   ========================================================= */

.nf-amazon-note {
	margin: 26px 0;
	padding: 14px 16px;
	border-left: 2px solid var(--nfc-amber, #e2963a);
	border-radius: var(--nf-r-sm);
	background: var(--nf-plate-bg);
	color: var(--nf-plate-ink-soft);
	max-width: var(--nf-measure);
}
.nf-amazon-note p {
	margin: 0;
	font-size: var(--nf-fs-meta);
	line-height: 1.5;
}
.nf-amazon-note__partner {
	font-family: var(--nf-font-mono);
	color: var(--nf-plate-ink);
	margin-bottom: 6px !important;
}

/* =========================================================
   25. Angebotsbox "hero" (Affiliate, Standarddarstellung)
   ========================================================= */

.nf-offer {
	margin: 34px auto;
	max-width: var(--nf-measure);
	border-radius: var(--nf-r-lg);
	background: var(--nf-plate-bg);
	border: 1px solid var(--nf-plate-edge);
	overflow: hidden;
}

/* Mit Produktbild: linke Spalte 25 Prozent */
.nf-offer--img {
	display: grid;
	grid-template-columns: 25% 1fr;
	align-items: stretch;
}
.nf-offer__media {
	background: var(--nf-plate-tile);
	border-right: 1px solid var(--nf-plate-edge);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}
.nf-offer__media img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 190px;
	object-fit: contain;
	border-radius: var(--nf-r-sm);
}

.nf-offer__body { padding: 22px 24px 20px; }

.nf-offer__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
.nf-offer__info { min-width: 0; }

.nf-offer__flag {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nfc-amber, #e2963a);
}
.nf-offer__flag i { font-style: normal; margin: 0 6px; opacity: .6; }

.nf-offer__title {
	font-family: var(--nf-font-display);
	font-size: 1.25rem;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: var(--nf-plate-ink);
	margin: 8px 0 4px;
}

.nf-offer__meta {
	margin: 0;
	font-size: var(--nf-fs-meta);
	color: var(--nf-plate-ink-soft);
}
.nf-offer__meta i { font-style: normal; margin: 0 6px; opacity: .6; }
.nf-offer__score {
	font-family: var(--nf-font-mono);
	color: var(--nfc-amber, #e2963a);
	font-weight: 700;
}

.nf-offer__text {
	margin: 10px 0 0;
	font-size: var(--nf-fs-meta);
	line-height: 1.55;
	color: var(--nf-plate-ink-soft);
}

.nf-offer__price {
	flex: none;
	margin: 0;
	font-family: var(--nf-font-display);
	font-size: 1.75rem;
	line-height: 1.1;
	letter-spacing: -.03em;
	color: var(--nf-plate-ink);
	white-space: nowrap;
}

.nf-offer__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 18px 0 0;
	padding: 14px 20px;
	border-radius: var(--nf-r-sm);
	background: var(--nfc-amber, #e2963a);
	color: #16181c;
	text-decoration: none;
	font-family: var(--nf-font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -.01em;
	transition: transform .15s ease, filter .15s ease;
}
.nf-offer__cta:hover { filter: brightness(1.07); transform: translateY(-1px); }
.nf-offer__cta:active { transform: translateY(0); }

.nf-offer__hint {
	margin: 12px 0 0;
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--nf-plate-ink-soft);
}

@media (max-width: 640px) {
	.nf-offer--img { grid-template-columns: 1fr; }
	.nf-offer__media { border-right: 0; border-bottom: 1px solid var(--nf-plate-edge); padding: 16px; }
	.nf-offer__media img { max-height: 150px; }
	.nf-offer__body { padding: 18px 18px 16px; }
	.nf-offer__head { flex-direction: column; gap: 10px; }
	.nf-offer__price { font-size: 1.5rem; }
}

/* =========================================================
   26. Aufkleber unten links auf dem Titelbild und auf Karten
   ========================================================= */

.nf-heroflag {
	position: absolute;
	z-index: 4;
	display: block;
	max-width: 66%;
	padding: 13px 22px 14px 18px;
	background: rgba(22, 24, 28, .9);
	backdrop-filter: blur(2px);
}

/* Ohne Bewertung: oben rechts, wo sonst Plakette oder Eckband sitzen */
.nf-heroflag--top {
	top: 14px;
	right: 14px;
	border-right: 4px solid var(--nfc-amber, #e2963a);
	border-radius: 14px 0 0 14px;
	text-align: right;
	padding: 13px 18px 14px 22px;
}

/* Mit Bewertung: weicht nach unten links aus */
.nf-heroflag--low {
	left: 0;
	bottom: 22px;
	border-left: 4px solid var(--nfc-amber, #e2963a);
}
.nf-heroflag__kicker {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--nfc-amber, #e2963a);
	line-height: 1.2;
}
.nf-heroflag__line {
	display: block;
	margin-top: 5px;
	font-family: var(--nf-font-display);
	font-size: 1.375rem;
	letter-spacing: -.02em;
	color: #f3ece0;
	line-height: 1.2;
}

/* Auf den Vorschaukarten kleiner, aber in denselben Proportionen -
   gilt fuer alle kompakten Kartenkontexte (Raster, Aehnliche Artikel,
   Meistgelesen), nicht nur die Standard-Kartenvorlage. */
.nf-card__media .nf-heroflag,
.nf-related__media .nf-heroflag,
.nf-toppost__media .nf-heroflag {
	max-width: 68%;
	padding: 7px 11px 8px 9px;
}
.nf-card__media .nf-heroflag--top,
.nf-related__media .nf-heroflag--top,
.nf-toppost__media .nf-heroflag--top {
	top: 12px;
	right: 12px;
	padding: 7px 9px 8px 11px;
	border-right-width: 3px;
	border-radius: 12px 0 0 12px;
}
.nf-card__media .nf-heroflag--low,
.nf-related__media .nf-heroflag--low,
.nf-toppost__media .nf-heroflag--low { bottom: 12px; border-left-width: 3px; }
.nf-card__media .nf-heroflag__kicker,
.nf-related__media .nf-heroflag__kicker,
.nf-toppost__media .nf-heroflag__kicker { font-size: 9px; letter-spacing: .14em; }
.nf-card__media .nf-heroflag__line,
.nf-related__media .nf-heroflag__line,
.nf-toppost__media .nf-heroflag__line { margin-top: 2px; font-size: 0.75rem; }

/* Bento-Karten auf der Startseite sind sehr klein: nur der Kicker */
.nf-bento__side .nf-heroflag__line { display: none; }

@media (max-width: 600px) {
	.nf-heroflag { max-width: 74%; }
	.nf-heroflag--top { top: 12px; right: 12px; padding: 9px 12px 10px 15px; border-right-width: 3px; }
	.nf-heroflag--low { bottom: auto; top: 12px; padding: 9px 15px 10px 12px; border-left-width: 3px; }
	.nf-heroflag__kicker { font-size: 11px; letter-spacing: .17em; }
	.nf-heroflag__line { font-size: 1rem; margin-top: 3px; }

	.nf-card__media .nf-heroflag,
	.nf-related__media .nf-heroflag,
	.nf-toppost__media .nf-heroflag { max-width: 58%; }
	.nf-card__media .nf-heroflag--top,
	.nf-related__media .nf-heroflag--top,
	.nf-toppost__media .nf-heroflag--top { top: 10px; right: 10px; padding: 6px 9px 7px 10px; }
	.nf-card__media .nf-heroflag--low,
	.nf-related__media .nf-heroflag--low,
	.nf-toppost__media .nf-heroflag--low { top: 10px; bottom: auto; padding: 6px 10px 7px 9px; }
	.nf-card__media .nf-heroflag__kicker,
	.nf-related__media .nf-heroflag__kicker,
	.nf-toppost__media .nf-heroflag__kicker { font-size: 8.5px; letter-spacing: .12em; }
	.nf-card__media .nf-heroflag__line,
	.nf-related__media .nf-heroflag__line,
	.nf-toppost__media .nf-heroflag__line { font-size: 0.6875rem; margin-top: 2px; }
}

/* =========================================================
   27. Tabellen im Beitrag als Signatur-Platte
   ========================================================= */

/* Der Gutenberg-Tabellenblock wird zur dunklen Platte. Die Beschriftung
   des Blocks (figcaption) sitzt als Fusszeile mit in der Flaeche. */
.nf-content .wp-block-table {
	margin: 2em 0;
	border-radius: var(--nf-r-lg);
	background: var(--nf-plate-bg);
	border: 1px solid var(--nf-plate-edge);
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

/* Schmale Viewports: waagerecht scrollen statt Spalten zerquetschen.
   Das Scrollen muss am Rahmen (Figure) passieren, nicht an der Tabelle
   selbst - kein display:block hier, das wuerde die native
   Tabellen-Breitenberechnung brechen und width:100% unzuverlaessig
   machen (Ursache fuer den frueheren dunklen Rand rechts, wenn die
   Kopfzeile die Platte nicht ganz ausfuellte). */
.nf-content .wp-block-table > table,
.nf-content .wp-block-table.is-style-stripes > table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.nf-content .wp-block-table table {
	width: 100%;
	table-layout: fixed;
	margin: 0;
	border-collapse: collapse;
	font-size: 0.9375rem;
	color: var(--nf-plate-ink);
}

/* WordPress setzt auf td/th einen umlaufenden Rahmen - der muss komplett weg,
   sonst bleiben die senkrechten Linien stehen. */
.nf-content .wp-block-table table,
.nf-content .wp-block-table thead,
.nf-content .wp-block-table tbody,
.nf-content .wp-block-table tr,
.nf-content .wp-block-table th,
.nf-content .wp-block-table td { border: 0 !important; }

.nf-content .wp-block-table thead tr,
.nf-content .wp-block-table th {
	background: var(--nf-plate-tile);
}
.nf-content .wp-block-table th {
	font-family: var(--nf-font-mono);
	font-size: 10.5px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--nf-plate-ink-soft);
	padding: 13px 12px;
	text-align: left;
	overflow-wrap: break-word;
}
.nf-content .wp-block-table th:first-child,
.nf-content .wp-block-table td:first-child { padding-left: 18px; }
.nf-content .wp-block-table th:last-child,
.nf-content .wp-block-table td:last-child { padding-right: 18px; }

.nf-content .wp-block-table td {
	padding: 13px 12px;
	text-align: left;
	letter-spacing: normal;
	overflow-wrap: break-word;
}
/* Nur eine waagerechte Trennlinie je Zeile, keine senkrechten */
.nf-content .wp-block-table tbody tr + tr td { box-shadow: inset 0 1px 0 var(--nf-plate-edge); }

/* Ruhige Zebrastreifen, unabhaengig vom Blockstil */
.nf-content .wp-block-table tbody tr:nth-child(even) td { background: var(--nf-plate-hatch); }

/* Erste Spalte fuehrt: Links und Text in Bernstein */
.nf-content .wp-block-table td:first-child { font-weight: 500; }
.nf-content .wp-block-table td a {
	color: var(--nfc-amber, #e2963a);
	text-decoration: none;
	border-bottom: 1px solid rgba(226, 150, 58, .35);
}
.nf-content .wp-block-table td a:hover { border-bottom-color: var(--nfc-amber, #e2963a); }

/* Note in Mono, aber ohne den gesperrten Kicker-Abstand */
.nf-content .wp-block-table td:nth-child(2) {
	font-family: var(--nf-font-mono);
	color: var(--nfc-amber, #e2963a);
	letter-spacing: 0;
	white-space: nowrap;
}

/* Beschriftung des Blocks: Fusszeile innerhalb der Platte */
.nf-content .wp-block-table figcaption {
	margin: 0;
	padding: 14px 18px 16px;
	border-top: 1px solid var(--nf-plate-edge);
	background: var(--nf-plate-tile);
	font-size: var(--nf-fs-meta);
	line-height: 1.55;
	color: var(--nf-plate-ink-soft);
	text-align: left;
}

@media (max-width: 600px) {
	.nf-content .wp-block-table table { font-size: 0.875rem; }
	.nf-content .wp-block-table th,
	.nf-content .wp-block-table td { padding: 11px 10px; }
	.nf-content .wp-block-table th:first-child,
	.nf-content .wp-block-table td:first-child { padding-left: 14px; }
	.nf-content .wp-block-table figcaption { padding: 12px 14px 14px; }
}

/* =========================================================
   28. Mehrere Angebote als Raster (Vergleiche, Bestenlisten)
   ========================================================= */

.nf-offers {
	position: relative;
	margin: 34px auto;
	max-width: var(--nf-measure);
	padding: 22px 24px 20px;
	border-radius: var(--nf-r-lg);
	background: var(--nf-plate-bg);
	border: 1px solid var(--nf-plate-edge);
}
.nf-offers__flag {
	display: block;
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nfc-amber, #e2963a);
}
.nf-offers__title {
	margin: 8px 0 18px;
	font-family: var(--nf-font-display);
	font-size: 1.25rem;
	letter-spacing: -.02em;
	color: var(--nf-plate-ink);
}

.nf-offers__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.nf-offers__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 15px 16px 16px;
	border-radius: var(--nf-r-sm);
	background: var(--nf-plate-tile);
	border: 1px solid var(--nf-plate-edge);
}
.nf-offers__head { min-width: 0; }
.nf-offers__name {
	margin: 0;
	font-family: var(--nf-font-display);
	font-size: 1rem;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: var(--nf-plate-ink);
}
.nf-offers__shop {
	display: block;
	margin-top: 3px;
	font-family: var(--nf-font-mono);
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nf-plate-ink-soft);
}
.nf-offers__price {
	margin: 0;
	font-family: var(--nf-font-display);
	font-size: 1.375rem;
	letter-spacing: -.03em;
	color: var(--nf-plate-ink);
}
.nf-offers__cta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 14px;
	border-radius: var(--nf-r-sm);
	background: var(--nfc-amber, #e2963a);
	color: #16181c;
	text-decoration: none;
	font-family: var(--nf-font-display);
	font-size: 0.9375rem;
	font-weight: 700;
	transition: filter .15s ease, transform .15s ease;
}
.nf-offers__cta:hover { filter: brightness(1.07); transform: translateY(-1px); }

.nf-offers__hint {
	margin: 16px 0 0;
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--nf-plate-ink-soft);
}

/* Ab vier Angeboten: kompakte Rangliste statt Zwei-Spalten-Raster.
   Bei zwei oder drei Boxen bleibt das Raster (siehe .nf-offers__grid oben)
   unveraendert - dort lohnt sich die groessere Kartenform noch. */
.nf-offers__list {
	display: flex;
	flex-direction: column;
}
.nf-offers__row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 4px;
	border-bottom: 1px solid var(--nf-plate-edge);
}
.nf-offers__row:last-child { border-bottom: 0; }
.nf-offers__rank {
	flex: 0 0 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--nf-plate-tile);
	color: var(--nfc-amber, #e2963a);
	font-family: var(--nf-font-mono);
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nf-offers__rowhead {
	flex: 1 1 auto;
	min-width: 0;
}
.nf-offers__rowhead .nf-offers__name {
	font-size: 0.9375rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nf-offers__rowhead .nf-offers__shop { margin-top: 1px; }
.nf-offers__rowprice {
	flex: 0 0 auto;
	font-family: var(--nf-font-display);
	font-size: 0.9375rem;
	color: var(--nf-plate-ink-soft);
	white-space: nowrap;
}
.nf-offers__rowcta {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: var(--nf-r-sm);
	background: var(--nfc-amber, #e2963a);
	color: #16181c;
	text-decoration: none;
	font-family: var(--nf-font-display);
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
	transition: filter .15s ease, transform .15s ease;
}
.nf-offers__rowcta:hover { filter: brightness(1.07); transform: translateY(-1px); }

@media (max-width: 640px) {
	.nf-offers { padding: 18px 18px 16px; }
	.nf-offers__grid { grid-template-columns: 1fr; gap: 16px; }
	.nf-offers__title { font-size: 1.125rem; margin-bottom: 14px; }
	.nf-offers__row { flex-wrap: wrap; }
	.nf-offers__rowhead { flex-basis: calc(100% - 38px); }
	.nf-offers__rowprice { flex-basis: calc(100% - 38px); margin-left: 38px; }
	.nf-offers__rowcta { flex-basis: calc(100% - 38px); margin-left: 38px; justify-content: center; margin-top: 6px; }
}

/* =========================================================
   29. Bestenlisten-Spotlight (Startseite, taeglich rotierend)
   ========================================================= */

.nf-spotlight {
	margin: var(--nf-section-gap, 64px) 0 0;
	padding: 22px 26px 10px;
	border-radius: var(--nf-r-lg);
	background: var(--nf-plate-bg);
}

/* =========================================================
   20b. Kombinierte Sektion: Workflow-Kacheln (25%) + Bestenliste (75%)
   ========================================================= */

.nf-workflow-toplist {
	display: flex;
	gap: var(--nf-gap);
	align-items: stretch;
	margin: var(--nf-gap) 0 0;
}

.nf-workflow-toplist__tiles {
	flex: 0 0 20%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
/* Die einzelnen Kacheln sind unveraendert .nf-workflow-tile (Abschnitt 20)
   inklusive der Customizer-gesteuerten Icon-Groesse (--nf-workflow-icon-size).
   Nur die Icon-Flaeche selbst ist etwas geraeumiger als bei der frueheren
   horizontalen Reihe - wird die Bestenliste rechts dadurch laenger, ist das
   ausdruecklich in Ordnung. */
.nf-workflow-toplist__tiles .nf-workflow-tile__icon { min-height: 150px; padding: 22px; }
.nf-workflow-toplist__tiles .nf-workflow-tile__caption { padding: 16px 14px; }
.nf-workflow-toplist__tiles .nf-workflow-tile__caption p { font-size: 1rem; text-align: center; }

.nf-workflow-toplist .nf-spotlight--embedded {
	flex: 1;
	min-width: 0;
	margin: 0;
}

@media (max-width: 900px) {
	.nf-workflow-toplist { flex-direction: column; }
	.nf-workflow-toplist__tiles { flex-direction: row; flex: 0 0 auto; }
	.nf-workflow-toplist__tiles .nf-workflow-tile { flex: 1; }
}

@media (max-width: 640px) {
	.nf-workflow-toplist__tiles { flex-direction: column; }
}

.nf-spotlight__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding-bottom: 16px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--nf-plate-edge);
}
.nf-spotlight__kicker {
	font-family: var(--nf-font-mono);
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--nf-plate-ink-soft);
}
.nf-spotlight__link {
	font-family: var(--nf-font-display);
	font-size: 1rem;
	letter-spacing: -.01em;
	color: var(--nfc-amber, #e2963a);
	text-decoration: none;
	white-space: nowrap;
}
.nf-spotlight__link:hover { text-decoration: underline; }

.nf-spotlight__rows { display: flex; flex-direction: column; }

.nf-spotlight__row {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 0;
	border-top: 1px solid var(--nf-plate-edge);
}
.nf-spotlight__row:first-child { border-top: 0; }
.nf-spotlight__row:hover .nf-spotlight__title { color: var(--nfc-amber, #e2963a); }

.nf-spotlight__rank {
	flex: none;
	width: 44px;
	font-family: var(--nf-font-mono);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1;
	color: var(--nfc-amber, #e2963a);
}

.nf-spotlight__media {
	flex: none;
	display: block;
	width: 64px;
	height: 64px;
	border-radius: var(--nf-r-sm);
	overflow: hidden;
	background: var(--nf-plate-tile);
}
.nf-spotlight__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.nf-spotlight__body { flex: 1; min-width: 0; }

.nf-spotlight__title {
	margin: 0;
	font-family: var(--nf-font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: -.01em;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nf-spotlight__title a { color: var(--nf-plate-ink); text-decoration: none; }
.nf-spotlight__row:hover .nf-spotlight__title a { color: var(--nfc-amber, #e2963a); }

.nf-spotlight__subtitle {
	display: block;
	margin-top: 2px;
	font-family: var(--nf-font-body);
	font-weight: 400;
	font-size: 0.84375rem;
	line-height: 1.3;
	color: var(--nf-plate-ink-soft);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nf-spotlight__aside {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}
.nf-spotlight__score {
	font-family: var(--nf-font-mono);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: var(--nfc-amber, #e2963a);
}
.nf-spotlight__deal {
	font-family: var(--nf-font-body);
	font-size: 0.75rem;
	color: var(--nf-plate-ink-soft);
	text-decoration: none;
	border-bottom: 1px solid rgba(226, 150, 58, .35);
}
.nf-spotlight__deal:hover { color: var(--nfc-amber, #e2963a); border-bottom-color: var(--nfc-amber, #e2963a); }

@media (max-width: 640px) {
	.nf-spotlight { padding: 18px 18px 8px; }
	.nf-spotlight__head { flex-direction: column; align-items: flex-start; gap: 4px; }
	.nf-spotlight__row { gap: 12px; }
	.nf-spotlight__rank { width: 32px; font-size: 1.375rem; }
	.nf-spotlight__media { width: 48px; height: 48px; }
	.nf-spotlight__title { font-size: 0.9375rem; }
	.nf-spotlight__subtitle { font-size: 0.75rem; }
	.nf-spotlight__score { font-size: 1.25rem; }
}
