/* ==========================================================================
   Naturligt — main.css (v0.2)
   Nyhedsportal-editorial: Playfair Display til rubrikker, Inter til alt andet.
   Lys flade, tynde streger, chips pr. kategori. Ingen bokse, ingen radius.
   ========================================================================== */

/* ---------- Fonte (selvhostede) ---------- */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/playfair-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/playfair-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/playfair-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/playfair-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/playfair-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700-normal.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
	--bg: #FAF9F7;
	--surface: #FFFFFF;
	--text: #121212;
	--soft: #555550;
	--faint: #8A8A85;
	--rule: #E2E0DB;
	--rule-strong: #121212;
	--accent: #2F5B3B;
	--accent-ink: #1E3D29;
	--footer-bg: #EFECE5;
	--footer-text: #121212;
	--footer-muted: rgba(0, 0, 0, .5);
	--footer-rule: rgba(0, 0, 0, .12);
	--on-accent: #FFFFFF;

	--serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--headline: var(--sans);

	--wrap: 1200px;
	--pad: 24px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 400 15.5px/1.55 var(--sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--headline); font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: var(--headline-ls, -.01em); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.nt-sr, .screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nt-skip { position: absolute; left: 16px; top: -64px; z-index: 10000; background: var(--text); color: var(--bg); padding: 10px 16px; }
.nt-skip:focus { top: 16px; }
.nt-wrap { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; }
.nt-icon { width: 20px; height: 20px; flex: none; }

/* ---------- Motion ---------- */
@keyframes nt-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.nt-reveal { animation: nt-rise .7s var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
.js .nt-io { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.js .nt-io.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.nt-reveal, .js .nt-io { animation: none; opacity: 1; transform: none; transition: none; }
}

/* ---------- Primitiver ---------- */
.nt-chip {
	display: inline-block;
	font: 700 10px/1.4 var(--sans);
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--chip, var(--accent));
	padding: 2.5px 7px;
	white-space: nowrap;
}
.nt-chip:hover { filter: brightness(1.12); }
.nt-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nt-time { font-size: 11.5px; color: var(--faint); white-space: nowrap; }
.nt-time + .nt-time::before { content: '·'; margin-right: 8px; }
.nt-kicker { font: 600 11.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.nt-label { font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); display: inline-flex; align-items: center; gap: 6px; }
.nt-label .nt-icon { width: 14px; height: 14px; }
.nt-summary { font-size: 14px; line-height: 1.55; color: var(--soft); }
.nt-summary--clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nt-dot { display: inline-block; width: 8px; height: 8px; background: var(--chip, var(--accent)); margin-right: 10px; vertical-align: 2px; }
.nt-dot--lg { width: 12px; height: 12px; margin-right: 14px; vertical-align: 6px; }
.nt-byline { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 13px; color: var(--faint); }
.nt-byline__author { color: var(--soft); font-weight: 500; }

.nt-more { display: inline-flex; align-items: center; gap: 6px; font: 600 12px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--text); white-space: nowrap; }
.nt-more .nt-icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.nt-more:hover { color: var(--accent); }
.nt-more:hover .nt-icon { transform: translateX(3px); }

.nt-media { margin: 0; position: relative; overflow: hidden; aspect-ratio: var(--ratio, 16 / 9); background: var(--rule); }
.nt-media img, .nt-media__ph { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.nt-media__ph { background: linear-gradient(135deg, hsl(var(--h) 22% 50%), hsl(calc(var(--h) + 40) 26% 76%)); }
article:hover .nt-media img { transform: scale(1.03); }

.nt-avatar { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font: 600 12px/1 var(--sans); letter-spacing: .04em; flex: none; }
.nt-avatar--lg { width: 56px; height: 56px; font-size: 16px; }

.nt-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: var(--text); color: var(--bg); font: 600 13px/1 var(--sans); transition: background .25s; }
.nt-btn:hover { background: var(--accent); color: var(--on-accent); }

/* ---------- Sektionshoveder ---------- */
.nt-sechead { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 18px; border-top: 1px solid var(--rule); }
.nt-sechead--strong { border-top: 2px solid var(--rule-strong); }
.nt-sechead__title { font: 700 12.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; }
.nt-sechead__title a:hover { color: var(--accent); }
.nt-sechead:not(.nt-sechead--strong) .nt-sechead__title { font: 700 21px/1.1 var(--headline); letter-spacing: 0; text-transform: none; }
.nt-sechead__aside { font-size: 12.5px; color: var(--faint); }

/* ---------- Masthead & navbar ---------- */
.nt-masthead { text-align: center; padding: 30px 0 16px; }
.nt-brand { font: 800 clamp(38px, 6vw, 60px)/1 var(--serif); letter-spacing: -.01em; color: var(--text); }
.nt-tagline { margin-top: 10px; font: 500 12.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }

.nt-navbar { position: sticky; top: 0; z-index: 900; background: var(--bg); border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule); }
.nt-navbar .nt-wrap { display: flex; align-items: center; gap: 20px; min-height: 48px; }
.nt-navbar__brand { font: 800 20px/1 var(--serif); opacity: 0; width: 0; overflow: hidden; white-space: nowrap; transition: opacity .3s var(--ease), width .3s var(--ease); }
.nt-navbar.is-stuck .nt-navbar__brand { opacity: 1; width: auto; margin-right: 8px; }
.nt-nav { flex: 1; min-width: 0; }
.nt-menu { display: flex; gap: 0 26px; }
.nt-menu a { display: inline-block; padding: 14px 0; font: 600 13px/1 var(--sans); letter-spacing: .04em; text-transform: uppercase; position: relative; }
.nt-menu a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--text); transform: scaleX(0); transition: transform .25s var(--ease); }
.nt-menu a:hover::after, .nt-menu .current-menu-item a::after, .nt-menu .current-cat a::after { transform: scaleX(1); }
.nt-navbar__search { display: inline-flex; padding: 8px; margin-right: -8px; color: var(--soft); }
.nt-navbar__search:hover { color: var(--text); }
/* Mega-menu */
.nt-menu__item { display: flex; align-items: center; }
.nt-menu__toggle { display: none; padding: 6px; color: var(--soft); }
.nt-menu__toggle .nt-icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.nt-mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--rule); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .35); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s; z-index: 5; }
.nt-menu__item--mega:hover .nt-mega, .nt-menu__item--mega:focus-within .nt-mega, .nt-menu__item--mega.is-open .nt-mega { opacity: 1; visibility: visible; transform: none; transition-delay: .06s, .06s, 0s; }
.nt-mega__inner { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 48px; padding: 28px 0 32px; }
.nt-mega__col { display: grid; gap: 10px; align-content: start; }
.nt-mega__col--cats { gap: 12px; justify-items: start; }
.nt-mega__col--cats .nt-mega__list { justify-self: stretch; width: 100%; margin-top: 4px; }
.nt-mega__col--cats .nt-more { margin-top: 6px; }
.nt-mega__title { font: 700 24px/1.1 var(--headline); display: flex; align-items: center; }
.nt-mega__title a:hover { color: var(--accent); }
.nt-mega__list li { border-bottom: 1px solid var(--rule); }
.nt-mega__list a { display: block; padding: 9px 0; font: 500 14.5px/1.3 var(--sans); text-transform: none; letter-spacing: 0; }
.nt-mega__list a:hover { color: var(--accent); }
.nt-mega__col--posts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 16px; }
.nt-mega__col--posts .nt-label { grid-column: 1 / -1; }
.nt-mega a::after { display: none; }
.nt-menu .nt-mega__post { display: block; padding: 0; text-transform: none; letter-spacing: 0; font: 400 14px/1.3 var(--sans); }
.nt-mega__post .nt-media { margin-bottom: 8px; }
.nt-mega__post-title { display: block; font: 600 14px/1.3 var(--headline); }
.nt-mega__post:hover .nt-mega__post-title { color: var(--accent); }
.nt-mega__post:hover .nt-media img { transform: scale(1.03); }
.nt-subcats a { display: inline-flex; gap: 6px; align-items: baseline; text-transform: none; letter-spacing: 0; font: 500 13px/1 var(--sans); padding: 8px 12px; }
.nt-subcats__count { font-size: 11px; color: var(--faint); }
.nt-tags a:hover .nt-subcats__count { color: inherit; }

.nt-navtoggle { display: none; padding: 8px; margin-left: -8px; }
.nt-navtoggle__close { display: none; }
.nt-navtoggle[aria-expanded="true"] .nt-navtoggle__open { display: none; }
.nt-navtoggle[aria-expanded="true"] .nt-navtoggle__close { display: block; }

.nt-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: 0 50%; z-index: 1000; display: none; }
.nt-is-article .nt-progress { display: block; }

/* ---------- Forside ---------- */
.nt-fp { margin-top: 28px; }
.nt-fp + .nt-fp { margin-top: 40px; }
.nt-fp-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: start; }

.nt-hero { display: grid; gap: 12px; }
.nt-hero .nt-media { margin-bottom: 6px; }
.nt-hero__title { font: 700 clamp(26px, 3.4vw, 38px)/1.12 var(--headline); letter-spacing: -.005em; }
.nt-hero__title a:hover { color: var(--accent); }
.nt-hero .nt-summary { font-size: 15.5px; max-width: 640px; }

.nt-latest { display: grid; align-content: start; }
.nt-latest__item { padding: 13px 0; border-bottom: 1px solid var(--rule); display: grid; gap: 6px; }
.nt-latest__item:first-child { padding-top: 0; }
.nt-latest__title { font: 600 17px/1.3 var(--headline); }
.nt-latest__title:hover { color: var(--accent); }

.nt-grid { display: grid; gap: 28px 26px; }
.nt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nt-card { display: flex; flex-direction: column; }
.nt-card__body { padding-top: 12px; display: grid; gap: 7px; }
.nt-card__title { font: 600 18.5px/1.22 var(--headline); }
.nt-card__title a:hover { color: var(--accent); }

.nt-fp-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
.nt-row-sm { display: grid; grid-template-columns: 132px 1fr; gap: 14px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.nt-row-sm__body { display: grid; gap: 6px; }
.nt-row-sm__title { font: 600 16px/1.3 var(--headline); }
.nt-row-sm__title a:hover { color: var(--accent); }

/* ---------- Kort-forside (migogaalborg-struktur) ---------- */
.nt-front { display: grid; gap: 16px; margin-top: 20px; }
.nt-front > section { display: grid; gap: 16px; }
.nt-ticker { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 11px 16px; border-radius: 6px; background: color-mix(in srgb, var(--accent) 11%, var(--surface)); }
.nt-ticker__label { display: inline-flex; align-items: center; gap: 8px; flex: none; font: 700 11px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.nt-ticker__label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: nt-pulse 1.8s ease-in-out infinite; }
@keyframes nt-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
.nt-ticker__title { flex: 1; min-width: 0; font: 600 14.5px/1.3 var(--headline); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nt-ticker__title:hover { color: var(--accent); }
.nt-ticker__time { flex: none; font-size: 11.5px; color: var(--faint); }

.nt-c { position: relative; display: flex; flex-direction: column; min-width: 0; height: 100%; background: var(--surface); border-radius: 6px; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.nt-c:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -20px rgba(0, 0, 0, .4); }
.nt-c .nt-media { flex: none; }
.nt-c__body { flex: 1; display: grid; gap: 8px; align-content: start; padding: 14px 16px 18px; }
.nt-c__title { font: 700 19px/1.25 var(--headline); letter-spacing: -.01em; text-wrap: balance; }
.nt-c__title a:hover { color: var(--accent); }
.nt-c--lg .nt-c__title { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; }
.nt-c--wide .nt-c__title { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.18; }
.nt-c--lg .nt-c__body, .nt-c--wide .nt-c__body { padding: 16px 20px 20px; }
.nt-c .nt-summary { font-size: 14px; }
.nt-c--solid { background: var(--chip, var(--accent)); color: #fff; justify-content: center; }
.nt-c--solid .nt-c__body { padding: 22px 20px; }
.nt-c--solid .nt-chip { background: rgba(255, 255, 255, .18); }
.nt-c--solid .nt-time { color: rgba(255, 255, 255, .7); }
.nt-c--solid .nt-summary { color: rgba(255, 255, 255, .8); }
.nt-c--solid .nt-c__title { font-size: clamp(19px, 2vw, 23px); }
.nt-c--solid .nt-c__title a:hover { color: #fff; text-decoration: underline; text-underline-offset: .15em; }
.nt-c--solid::after { content: ''; position: absolute; right: -40px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255, 255, 255, .08); pointer-events: none; }

.nt-lead { grid-template-columns: 2fr 1fr; }
.nt-lead__side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.nt-r2 { grid-template-columns: 1fr 1fr; }
.nt-r3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nt-mix { grid-template-columns: 1fr 2fr; }
.nt-mix__stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.nt-front + .nt-fp { margin-top: 44px; }
.nt-row-sm .nt-media { border-radius: 4px; }

/* ---------- Arkiv & søgning ---------- */
.nt-archive__head { padding: 28px 0 18px; display: grid; gap: 12px; border-bottom: 2px solid var(--rule-strong); margin-top: 8px; }
.nt-archive__title { font: 800 clamp(28px, 4vw, 44px)/1.1 var(--headline); }
.nt-archive__title em { font-style: italic; font-weight: 500; color: var(--accent); }
.nt-archive__desc { max-width: 60ch; font-size: 15px; }
.nt-archive__count { font-size: 12.5px; color: var(--faint); }
.nt-archive { padding-bottom: 48px; }
.nt-row { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 26px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.nt-row__body { display: grid; gap: 8px; }
.nt-row__title { font: 700 clamp(20px, 2.4vw, 26px)/1.2 var(--headline); }
.nt-row__title a:hover { color: var(--accent); }
.nt-empty { padding: 32px 0; color: var(--faint); font-size: 15px; }

.nt-pagination { margin-top: 28px; }
.nt-pagination .nav-links { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.nt-pagination .page-numbers { display: inline-block; padding: 8px 12px; font: 600 13px/1 var(--sans); color: var(--soft); }
.nt-pagination .page-numbers.current { background: var(--text); color: var(--bg); }
.nt-pagination a.page-numbers:hover { color: var(--accent); }

.nt-search { display: flex; align-items: center; gap: 10px; max-width: 560px; padding: 4px 0 8px; border-bottom: 2px solid var(--text); }
.nt-search__icon { color: var(--faint); }
.nt-search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 6px 0; font: 400 18px/1.3 var(--sans); color: var(--text); }
.nt-search input::placeholder { color: var(--faint); }
.nt-search input:focus { outline: none; }
.nt-search button { font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; padding: 8px 0 8px 8px; color: var(--soft); }
.nt-search button:hover { color: var(--accent); }

.nt-crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--faint); }
.nt-crumbs li + li::before { content: '/'; margin-right: 6px; opacity: .6; }
.nt-crumbs a:hover { color: var(--accent); }

/* ---------- Artikel ---------- */
.nt-article__head { max-width: 928px; margin: 8px auto 0; padding: 28px 0 24px; display: grid; gap: 14px; }
.nt-article__title { font: 800 clamp(30px, 4.6vw, 50px)/1.1 var(--headline); letter-spacing: -.005em; text-wrap: balance; }
.nt-article__dek { font-size: 18px; line-height: 1.5; color: var(--soft); max-width: 46ch; }
.nt-article__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 6px; }
.nt-article__hero { margin-bottom: 32px; }
.nt-caption { margin-top: 8px; font-size: 12px; color: var(--faint); }

.nt-article__layout { display: grid; grid-template-columns: 200px minmax(0, 680px); gap: 48px; justify-content: center; padding-bottom: 40px; }
.nt-article__layout--narrow { grid-template-columns: minmax(0, 680px); }
.nt-article__side { position: sticky; top: 72px; align-self: start; display: grid; gap: 28px; padding-top: 6px; }
.nt-toc ol { margin-top: 10px; display: grid; }
.nt-toc a { display: block; padding: 6px 0 6px 12px; font-size: 13px; line-height: 1.4; color: var(--soft); border-left: 2px solid var(--rule); transition: color .2s, border-color .2s; }
.nt-toc a:hover, .nt-toc a.is-active { color: var(--text); border-left-color: var(--accent); }

.nt-share { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nt-share .nt-label { margin-right: 6px; }
.nt-share a, .nt-share button { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--soft); transition: color .2s, background .2s; }
.nt-share a:hover, .nt-share button:hover { color: var(--text); background: var(--rule); }
.nt-share button.is-done { color: var(--on-accent); background: var(--accent); }
.nt-share--inline { margin-left: auto; }

/* Prosa — det, docx-indholdet lander i */
.nt-prose { font-size: 17px; line-height: 1.7; }
.nt-prose > * + * { margin-top: 1.35em; }
.nt-prose > p:first-of-type::first-letter { float: left; font: 700 4.4em/.82 var(--serif); margin: .05em .1em 0 0; color: var(--accent); }
.nt-prose h2 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.15; margin-top: 2.1em; scroll-margin-top: 72px; }
.nt-prose h3 { font-size: 21px; line-height: 1.25; margin-top: 1.8em; }
.nt-prose h2 + *, .nt-prose h3 + * { margin-top: .7em; }
.nt-prose a { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .16em; }
.nt-prose a:hover { color: var(--accent); }
.nt-prose ul, .nt-prose ol { padding-left: 1.3em; display: grid; gap: .45em; }
.nt-prose ul { list-style: disc; }
.nt-prose ul li::marker { color: var(--accent); }
.nt-prose ol { list-style: decimal; }
.nt-prose ol li::marker { font-weight: 600; color: var(--accent); }
.nt-prose strong { font-weight: 600; }
.nt-prose blockquote { margin: 2em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent); font: italic 500 clamp(20px, 2.2vw, 24px)/1.4 var(--serif); color: var(--accent-ink); }
.nt-prose blockquote p + p { margin-top: .5em; }
.nt-prose blockquote cite { display: block; margin-top: .7em; font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-style: normal; }
.nt-prose figure { margin: 2em 0; }
.nt-prose figure img { width: 100%; }
.nt-prose figcaption { margin-top: 8px; font-size: 12px; color: var(--faint); }
.nt-prose .alignwide { width: min(100vw - 2 * var(--pad), 1000px); margin-left: 50%; transform: translateX(-50%); }
.nt-prose hr { border: 0; height: 1px; background: var(--rule-strong); margin: 2.6em 0; }
.nt-prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.nt-prose th, .nt-prose td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.nt-prose th { font: 600 11px/1.3 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.nt-prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--rule); padding: .1em .35em; }
.nt-prose pre { background: var(--text); color: var(--bg); padding: 18px 20px; overflow-x: auto; font-size: 14px; }
.nt-prose pre code { background: none; padding: 0; }
.nt-prose .wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.nt-prose .wp-block-gallery figure { margin: 0; }
.nt-prose .wp-block-button__link { display: inline-block; padding: 10px 16px; background: var(--text); color: var(--bg); text-decoration: none; font: 600 13px/1 var(--sans); }
.nt-prose .wp-block-embed iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; }

/* Faktaboks & affiliate-produkt */
.nt-fakta { margin: 2em 0; padding: 18px 22px; background: var(--surface); border-top: 2px solid var(--accent); border-bottom: 1px solid var(--rule); font-size: 15px; line-height: 1.6; }
.nt-fakta__title { font: 700 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.nt-fakta p + p { margin-top: .6em; }

/* Produktboks: tekst til venstre, pris + knap til højre; billede kun når der er et */
.nt-produkt { margin: 2.4em 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px 32px; align-items: center; padding: 34px 32px; background: var(--surface); border-radius: 8px; }
.nt-produkt--img { grid-template-columns: 150px minmax(0, 1fr) auto; }
.nt-produkt__media { width: 150px; aspect-ratio: 1; overflow: hidden; background: var(--rule); border-radius: 6px; }
.nt-produkt__media img { width: 100%; height: 100%; object-fit: cover; }
.nt-produkt__body { display: grid; gap: 6px; min-width: 0; }
.nt-produkt__badge { justify-self: start; font: 700 10px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--on-accent); background: var(--accent); padding: 2.5px 7px; margin-bottom: 4px; }
.nt-produkt__title { font: 700 19px/1.2 var(--headline); }
.nt-produkt__text { font-size: 14px; color: var(--soft); line-height: 1.5; }
.nt-produkt__text p + p { margin-top: .5em; }
.nt-produkt__cta { display: grid; gap: 10px; justify-items: end; text-align: right; }
.nt-produkt__price { font: 700 17px/1 var(--headline); white-space: nowrap; }
.nt-prose .nt-btn { text-decoration: none; }
.nt-produkt .nt-btn { background: var(--accent); color: var(--on-accent); border-radius: 4px; padding: 11px 18px; }
.nt-produkt .nt-btn:hover { background: var(--accent-ink); }
.nt-btn .nt-icon { width: 16px; height: 16px; }

.nt-article__foot { display: grid; gap: 28px; margin-top: 40px; }
.nt-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.nt-tags .nt-label { margin-right: 6px; }
.nt-tags a { font: 600 11px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; padding: 7px 10px; background: var(--rule); color: var(--soft); transition: all .2s; }
.nt-tags a:hover { background: var(--text); color: var(--bg); }
.nt-author { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule); align-items: start; }
.nt-author__name { font: 700 20px/1.2 var(--headline); margin: 6px 0 6px; }
.nt-author p { color: var(--soft); font-size: 14px; max-width: 54ch; }

.nt-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 28px 0 48px; border-top: 1px solid var(--rule); margin-top: 40px; }
.nt-postnav__item { display: grid; gap: 6px; }
.nt-postnav__item--next { text-align: right; justify-items: end; }
.nt-postnav__title { font: 600 18px/1.3 var(--headline); transition: color .2s; }
.nt-postnav__item:hover .nt-postnav__title { color: var(--accent); }

/* ---------- 404 ---------- */
.nt-404 { padding: 56px 0 72px; display: grid; gap: 16px; justify-items: start; max-width: 560px; }
.nt-404__title { font: 800 clamp(30px, 4.5vw, 48px)/1.1 var(--headline); }
.nt-404 .nt-search { width: 100%; }

/* ---------- Footer (følger paletten) ---------- */
.nt-footer { margin-top: 56px; background: var(--footer-bg); color: var(--footer-text); border-top: 1px solid var(--footer-rule); }
.nt-footer__top { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; padding: 44px 0 32px; }
.nt-footer__brand a { font: 800 30px/1 var(--serif); color: var(--footer-text); }
.nt-footer__brand p { margin-top: 12px; max-width: 36ch; font-size: 14px; color: var(--footer-muted); }
.nt-footer__col h2 { font: 700 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--footer-muted); margin-bottom: 12px; }
.nt-footer__col li + li { margin-top: 6px; }
.nt-footer__col a { font-size: 14px; color: var(--footer-text); opacity: .85; transition: opacity .2s, color .2s; }
.nt-footer__col a:hover { opacity: 1; color: var(--accent); }
.nt-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 0 22px; border-top: 1px solid var(--footer-rule); font-size: 12px; color: var(--footer-muted); }
.nt-footer__top-link { display: inline-flex; align-items: center; gap: 6px; color: var(--footer-text); }
.nt-footer__top-link .nt-icon { width: 14px; height: 14px; }
.nt-footer__top-link:hover { color: var(--accent); }

/* ---------- Landingssider & sektionsblokke ---------- */
.nt-landing { --lp-gap: clamp(56px, 8vw, 104px); padding-top: 24px; }
.nt-landing > * + * { margin-top: var(--lp-gap); }
.nt-landing .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.nt-landing .nt-lp-title { font: 700 clamp(26px, 3.4vw, 40px)/1.1 var(--headline); }
.nt-landing .nt-lp-title + .nt-lp-lead { margin-top: 12px; }
.nt-lp-lead { font-size: 18px; line-height: 1.55; color: var(--soft); max-width: 54ch; }
.nt-lp-h1 { font: 800 clamp(38px, 5.5vw, 66px)/1.04 var(--headline); letter-spacing: -.012em; text-wrap: balance; }
.nt-lp-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.nt-lp-hero__body { display: grid; gap: 22px; justify-items: start; }
.nt-lp-hero__body .nt-kicker { margin: 0; }
.nt-lp-hero__img { margin: 0; }
.nt-lp-hero__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.nt-lp-cover { display: grid; place-items: center; text-align: center; color: #fff; }
.nt-lp-cover .wp-block-cover__inner-container { display: grid; gap: 20px; justify-items: center; max-width: 760px; padding: 48px var(--pad); }
.nt-lp-cover .nt-kicker--light, .nt-lp-h1--light, .nt-lp-lead--light { color: #fff; }
.nt-lp-lead--light { opacity: .9; }

.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.wp-block-button__link { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; background: var(--accent); color: var(--on-accent); font: 600 14px/1 var(--sans); border-radius: 4px; text-decoration: none; transition: background .2s, transform .2s; }
.wp-block-button__link:hover { background: var(--accent-ink); transform: translateY(-1px); }
.is-style-nt-secondary .wp-block-button__link { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--rule-strong); }
.is-style-nt-secondary .wp-block-button__link:hover { background: var(--text); color: var(--bg); }
.nt-lp-cover .is-style-nt-secondary .wp-block-button__link { color: #fff; box-shadow: inset 0 0 0 1px #fff; }

.nt-lp-usp { gap: 32px; }
.nt-lp-usp .wp-block-column { padding-top: 18px; border-top: 1px solid var(--rule-strong); display: grid; gap: 8px; align-content: start; }
.nt-lp-num { font: 600 12px/1 var(--sans); letter-spacing: .12em; color: var(--accent); }
.nt-lp-usp h3 { font: 700 21px/1.2 var(--headline); }
.nt-lp-usp p:not(.nt-lp-num) { font-size: 14.5px; color: var(--soft); }

.nt-katgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.nt-kat { display: grid; gap: 6px; align-content: start; padding: 22px 22px 20px; background: var(--surface); border-radius: 8px; border-top: 3px solid var(--chip); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.nt-kat:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(0, 0, 0, .35); }
.nt-kat__dot { display: none; }
.nt-kat__title { font: 700 20px/1.15 var(--headline); }
.nt-kat__count { font-size: 12px; color: var(--faint); }
.nt-kat__desc { font-size: 13.5px; color: var(--soft); line-height: 1.5; margin-top: 4px; }
.nt-kat__sub { font-size: 12px; color: var(--faint); margin-top: 6px; }

.nt-lp-produkter .nt-produkt { margin: 20px 0 0; }
.nt-lp-produkter .nt-produkt + .nt-produkt { margin-top: 14px; }

.nt-cta { display: grid; grid-template-columns: minmax(0, 1.5fr) auto; gap: 32px; align-items: center; padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 64px); background: var(--accent); color: var(--on-accent); border-radius: 10px; }
.nt-cta h2 { font: 700 clamp(26px, 3.4vw, 40px)/1.1 var(--headline); }
.nt-cta p { margin-top: 10px; opacity: .85; max-width: 52ch; }
.nt-cta .wp-block-button__link { background: var(--bg); color: var(--text); }
.nt-cta .wp-block-button__link:hover { background: #fff; }

.nt-faq { max-width: 780px; }
.nt-faq .nt-lp-title { margin-bottom: 16px; }
.nt-faq__item { border-top: 1px solid var(--rule); }
.nt-faq__item:last-child { border-bottom: 1px solid var(--rule); }
.nt-faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font: 600 17px/1.3 var(--headline); cursor: pointer; list-style: none; }
.nt-faq__item summary::-webkit-details-marker { display: none; }
.nt-faq__item summary::after { content: '+'; font: 400 22px/1 var(--sans); color: var(--faint); flex: none; }
.nt-faq__item[open] summary::after { content: '−'; }
.nt-faq__item > *:not(summary) { padding: 0 0 18px; color: var(--soft); max-width: 62ch; }

.nt-lp-quotes .wp-block-quote { border: 0; padding: 0; margin: 0; }
.nt-lp-quotes .wp-block-quote p { font: italic 500 20px/1.4 var(--serif); }
.nt-lp-quotes .wp-block-quote cite { display: block; margin-top: 12px; font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-style: normal; }
.nt-lp-quotes .wp-block-quote p::before { content: '“'; color: var(--accent); }
.nt-lp-quotes .wp-block-quote p::after { content: '”'; color: var(--accent); }

.nt-lp-mt { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.nt-lp-mt.has-media-on-the-right .wp-block-media-text__media { order: 2; }
.nt-lp-mt .wp-block-media-text__media { margin: 0; }
.nt-lp-mt .wp-block-media-text__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.nt-lp-mt .wp-block-media-text__content { display: grid; gap: 16px; justify-items: start; padding: 0; }
.nt-lp-mt h2 { font: 700 clamp(26px, 3.2vw, 38px)/1.12 var(--headline); }
.nt-lp-mt .wp-block-media-text__content > p:not(.nt-kicker) { font-size: 16px; color: var(--soft); line-height: 1.6; }

/* Mørkt preset */
.nt-dark .nt-media img { filter: brightness(.92); }

/* ---------- Responsivt ---------- */
@media (max-width: 1000px) {
	.nt-fp-grid { grid-template-columns: 1fr; }
	.nt-r3 { grid-template-columns: 1fr 1fr; }
	.nt-latest { grid-template-columns: 1fr 1fr; gap: 0 26px; }
	.nt-latest__item:first-child { padding-top: 13px; }
	.nt-article__layout { grid-template-columns: 170px minmax(0, 1fr); gap: 32px; }
	.nt-article__head { max-width: none; }
	.nt-produkt { grid-template-columns: 1fr; }
	.nt-produkt--img { grid-template-columns: 150px minmax(0, 1fr); }
	.nt-produkt__cta { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; text-align: left; padding-top: 4px; }
}
@media (max-width: 760px) {
	.nt-masthead { padding: 22px 0 12px; }
	.nt-navbar .nt-wrap { gap: 8px; }
	.nt-navtoggle { display: inline-flex; }
	.nt-navbar__brand { opacity: 1; width: auto; flex: 1; }
	.nt-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--rule); display: none; }
	.nt-nav.is-open { display: block; }
	.nt-nav .nt-menu { display: grid; padding: 6px var(--pad) 10px; }
	.nt-nav .nt-menu a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
	.nt-nav .nt-menu a::after { display: none; }
	.nt-menu__item { flex-wrap: wrap; justify-content: space-between; }
	.nt-menu__item > a { flex: 1; }
	.nt-menu__toggle { display: inline-flex; }
	.nt-menu__item.is-open .nt-menu__toggle .nt-icon { transform: rotate(180deg); }
	.nt-mega { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; width: 100%; }
	.nt-menu__item.is-open .nt-mega { display: block; }
	.nt-mega__inner { width: 100%; grid-template-columns: 1fr; gap: 8px; padding: 0 0 12px 12px; }
	.nt-mega__col--posts, .nt-mega__col--cats .nt-mega__title, .nt-mega__col--cats .nt-summary { display: none; }
	.nt-mega__list a { border: 0; padding: 8px 0; }
	.nt-grid--3 { grid-template-columns: 1fr; }
	.nt-latest { grid-template-columns: 1fr; }
	.nt-lead, .nt-r2, .nt-r3, .nt-mix { grid-template-columns: 1fr; }
	.nt-lead__side, .nt-mix__stack { grid-template-rows: none; }
	.nt-c--solid { min-height: 150px; }
	.nt-ticker__time { display: none; }
	.nt-fp-list { grid-template-columns: 1fr; gap: 14px; }
	.nt-row-sm { grid-template-columns: 110px 1fr; }
	.nt-row { grid-template-columns: 1fr; gap: 12px; }
	.nt-article__layout { grid-template-columns: 1fr; gap: 20px; }
	.nt-article__side { position: static; }
	.nt-article__side .nt-share { display: none; }
	.nt-share--inline { margin-left: 0; width: 100%; }
	.nt-produkt, .nt-produkt--img { grid-template-columns: 1fr; padding: 22px 20px; }
	.nt-produkt__media { width: 100%; aspect-ratio: 16 / 9; }
	.nt-produkt__cta { display: flex; justify-content: space-between; align-items: center; text-align: left; }
	.nt-postnav { grid-template-columns: 1fr; }
	.nt-postnav__item--next { text-align: left; justify-items: start; }
	.nt-footer__top { grid-template-columns: 1fr 1fr; }
	.nt-footer__brand { grid-column: 1 / -1; }
	.nt-lp-hero, .nt-lp-mt, .nt-cta { grid-template-columns: 1fr; }
	.nt-lp-mt.has-media-on-the-right .wp-block-media-text__media { order: 0; }
	.nt-landing { --lp-gap: 48px; }
}
@media (max-width: 480px) {
	.nt-prose { font-size: 16px; }
	.nt-footer__top { grid-template-columns: 1fr; }
}

@media print {
	.nt-navbar, .nt-progress, .nt-share, .nt-toc, .nt-postnav, .nt-footer { display: none !important; }
	.nt-article__layout { grid-template-columns: 1fr; }
}
