:root {
	--fjord: #041418;
	--fjord-2: #0a2e38;
	--ice: #eef3f5;
	--snow: #f7fbfc;
	--pine: #128a72;
	--aurora: #d6ff4b;
	--mint: #7af0c8;
	--sky: #3ccbff;
	--ink: #071820;
	--muted: #56707a;
	--line: rgba(7, 24, 32, 0.11);
	--shadow: 0 28px 70px rgba(4, 20, 24, 0.16);
	--radius: 30px;
	--shell: min(1140px, calc(100% - 2.5rem));
	--font: "Montserrat", system-ui, -apple-system, sans-serif;
	--header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
	max-width: 100%;
}
body.nordisk-body {
	margin: 0;
	color: var(--ink);
	background-color: var(--ice);
	background-image:
		radial-gradient(900px 480px at -6% -8%, rgba(60, 203, 255, 0.1), transparent 58%),
		radial-gradient(760px 420px at 106% 0%, rgba(214, 255, 75, 0.12), transparent 54%);
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	max-width: 100%;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.nordisk-shell {
	width: var(--shell);
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}

.nordisk-skip {
	position: absolute; left: -999px; top: 0; z-index: 10000;
	background: var(--aurora); color: var(--fjord); padding: .75rem 1rem; font-weight: 700;
}
.nordisk-skip:focus { left: 1rem; top: 1rem; }

/* Header */
.nordisk-header {
	position: sticky; top: 0; z-index: 50;
	backdrop-filter: blur(18px) saturate(1.2);
	background: rgba(242, 245, 247, 0.82);
	border-bottom: 1px solid transparent;
	transition: .25s ease;
}
.nordisk-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 32px rgba(6, 24, 32, 0.06);
}
.nordisk-header__inner {
	min-height: var(--header-h);
	display: flex; align-items: center; gap: 1.25rem;
}
.nordisk-brand {
	display: inline-flex; align-items: center; gap: .8rem;
	text-decoration: none; color: var(--fjord);
}
.nordisk-brand__mark { display: grid; place-items: center; flex: 0 0 auto; }
.nordisk-mark { display: block; filter: drop-shadow(0 8px 16px rgba(4, 20, 24, 0.18)); }
.nordisk-brand__text { display: grid; gap: .12rem; line-height: 1; }
.nordisk-brand__name {
	display: flex; align-items: baseline; gap: 0;
	font-weight: 800; font-size: 1.08rem; letter-spacing: -.05em;
}
.nordisk-brand__casino { color: var(--muted); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-right: .35rem; }
.nordisk-brand__norsk { color: var(--fjord); }
.nordisk-brand__24 {
	margin-left: .15rem; padding: .08rem .35rem .1rem;
	border-radius: 7px; background: linear-gradient(120deg, var(--aurora), var(--mint));
	color: var(--fjord); font-size: .92rem; line-height: 1;
}
.nordisk-brand__tag {
	font-size: .66rem; font-weight: 650; color: var(--muted);
	letter-spacing: .06em; text-transform: uppercase;
}
.nordisk-nav { margin-left: auto; display: flex; gap: 1.15rem; }
.nordisk-nav a {
	font-size: .9rem; font-weight: 650; text-decoration: none;
	color: var(--ink); opacity: .78;
}
.nordisk-nav a:hover { opacity: 1; color: var(--pine); }
.nordisk-header__cta { margin-left: .25rem; }
.nordisk-burger {
	display: none; width: 44px; height: 44px; margin-left: auto;
	border: 1px solid var(--line); border-radius: 14px;
	background: rgba(255,255,255,.6); place-items: center;
	flex-direction: column; gap: 6px; cursor: pointer;
}
.nordisk-burger span {
	display: block; width: 18px; height: 2px; background: var(--fjord); border-radius: 2px;
}
.nordisk-drawer {
	position: fixed; inset: var(--header-h) 0 auto 0; z-index: 40;
	background: rgba(242,245,247,.97); backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line); padding: 1.25rem;
}
.nordisk-drawer nav { display: grid; gap: .85rem; }
.nordisk-drawer a { font-weight: 750; font-size: 1.15rem; text-decoration: none; }

/* Buttons */
.nordisk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
	min-height: 48px; padding: .85rem 1.3rem; border-radius: 999px;
	font-weight: 750; font-size: .9rem; letter-spacing: -.01em;
	text-decoration: none; border: 1px solid transparent;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	cursor: pointer;
}
.nordisk-btn:hover { transform: translateY(-2px); }
.nordisk-btn--solid {
	background: var(--fjord); color: #f4ffe8;
	box-shadow: 0 12px 28px rgba(6, 24, 32, .22);
}
.nordisk-btn--solid:hover { background: #0a2834; }
.nordisk-btn--ghost {
	background: rgba(255,255,255,.55); border-color: var(--line); color: var(--ink);
}
.nordisk-btn--ghost:hover { border-color: rgba(15, 122, 98, .4); color: var(--pine); }
.nordisk-btn--lime {
	background: var(--aurora);
	color: var(--fjord);
	border: 2px solid var(--fjord);
	box-shadow: 0 4px 0 var(--fjord), 0 14px 32px rgba(4, 20, 24, .35);
	font-weight: 800;
}
.nordisk-btn--lime:hover {
	background: #e8ff6a;
	box-shadow: 0 2px 0 var(--fjord), 0 10px 28px rgba(4, 20, 24, .3);
}
.nordisk-btn--accent {
	background: var(--card-accent, var(--aurora));
	color: var(--card-ink, var(--fjord));
	box-shadow: 0 14px 32px color-mix(in srgb, var(--card-accent, var(--aurora)) 45%, transparent);
	font-weight: 800;
}

/* Hero */
.nordisk-hero {
	position: relative; min-height: calc(100svh - var(--header-h));
	display: grid; align-items: center; padding: 3.2rem 0 4.2rem; overflow: clip;
}
.nordisk-hero__atmosphere { position: absolute; inset: 0; pointer-events: none; }
.nordisk-hero__aurora {
	position: absolute; inset: -18% -10% auto; height: 70%;
	background:
		radial-gradient(36% 50% at 16% 40%, rgba(214, 255, 75, .38), transparent 70%),
		radial-gradient(32% 46% at 68% 26%, rgba(60, 203, 255, .32), transparent 70%),
		radial-gradient(28% 40% at 48% 58%, rgba(122, 240, 200, .24), transparent 70%);
	filter: blur(12px);
	animation: nordisk-drift 14s ease-in-out infinite alternate;
}
.nordisk-hero__night {
	position: absolute; inset: auto 0 0; height: 58%;
	background:
		linear-gradient(180deg, transparent 0%, rgba(2, 12, 16, .18) 28%, rgba(2, 12, 16, .72) 78%, rgba(2, 12, 16, .9) 100%);
}
.nordisk-hero__stars {
	position: absolute; inset: 0 0 38%;
	opacity: .55;
	background-image:
		radial-gradient(1.5px 1.5px at 12% 22%, rgba(244,255,232,.9), transparent),
		radial-gradient(1.2px 1.2px at 28% 48%, rgba(214,255,75,.7), transparent),
		radial-gradient(1px 1px at 41% 18%, rgba(255,255,255,.75), transparent),
		radial-gradient(1.4px 1.4px at 63% 34%, rgba(60,203,255,.8), transparent),
		radial-gradient(1px 1px at 74% 12%, rgba(255,255,255,.65), transparent),
		radial-gradient(1.6px 1.6px at 88% 40%, rgba(122,240,200,.75), transparent),
		radial-gradient(1px 1px at 51% 56%, rgba(255,255,255,.5), transparent);
	animation: nordisk-stars 5s ease-in-out infinite alternate;
}
.nordisk-hero__skyline {
	position: absolute; inset: auto 0 0; height: min(52%, 360px);
	display: grid; align-items: end;
	mask-image: linear-gradient(180deg, transparent 0%, #000 14%);
}
.nordisk-hero__skyline-svg {
	display: block; width: 100%; height: 100%;
	min-height: 200px;
	filter: drop-shadow(0 -10px 28px rgba(2, 12, 16, .45));
}
.nordisk-hero__win {
	opacity: .75;
	animation: nordisk-twinkle 2.8s ease-in-out infinite;
}
.nordisk-hero__wins--lime .nordisk-hero__win:nth-child(3n) { animation-duration: 3.4s; animation-delay: .4s; }
.nordisk-hero__wins--lime .nordisk-hero__win:nth-child(4n) { animation-duration: 2.2s; animation-delay: 1.1s; }
.nordisk-hero__wins--cyan .nordisk-hero__win { animation-duration: 3.1s; animation-delay: .7s; }
.nordisk-hero__wins--mint .nordisk-hero__win { animation-duration: 2.5s; animation-delay: 1.4s; }
.nordisk-hero__neon {
	animation: nordisk-neon 2.6s ease-in-out infinite;
	transform-origin: 1037px 117px;
}
.nordisk-hero__neon-sub {
	animation: nordisk-neon 2.6s ease-in-out infinite .35s;
}
.nordisk-hero__traffic {
	stroke-dasharray: 18 28;
	animation: nordisk-traffic 7s linear infinite;
}
.nordisk-hero__traffic--cyan {
	animation-duration: 9s;
	animation-direction: reverse;
}
.nordisk-hero__quay-glow {
	animation: nordisk-quay 4.5s ease-in-out infinite alternate;
}
.nordisk-hero__reflect rect {
	animation: nordisk-reflect 3.2s ease-in-out infinite;
}
.nordisk-hero__reflect rect:nth-child(2n) { animation-delay: .8s; }
.nordisk-hero__reflect rect:nth-child(3n) { animation-delay: 1.4s; }
.nordisk-hero__layout {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 2rem;
	align-items: start;
}
.nordisk-hero__content { max-width: 640px; }
.nordisk-kicker {
	display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem;
	font-size: .74rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--pine);
}
.nordisk-kicker__dot,
.nordisk-kicker::before {
	content: ""; width: 9px; height: 9px; border-radius: 50%;
	background: linear-gradient(135deg, var(--aurora), var(--sky));
	box-shadow: 0 0 0 5px rgba(214, 255, 75, .18);
}
.nordisk-kicker:has(.nordisk-kicker__dot)::before { display: none; }
.nordisk-kicker--on-dark { color: var(--aurora); }

.nordisk-hero__title { margin: 0; display: grid; justify-items: start; }
.nordisk-hero__brandblock {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .15rem;
	width: max-content;
	text-align: left;
}
.nordisk-hero__eyebrow {
	display: block;
	margin: 0;
	padding: 0;
	font-size: .9rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
	line-height: 1.2;
	/* letter-spacing expands to the right only; keep left glyph edge as the align rail */
	margin-right: -.14em;
}
.nordisk-hero__brand {
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: .28rem;
	margin: 0;
	padding: 0;
	font-weight: 800;
	font-size: clamp(3rem, 9vw, 5.8rem);
	line-height: .92;
	letter-spacing: -.06em;
	color: var(--fjord);
	/* Montserrat ExtraBold sidebearing: slight pull to match Casino C */
	margin-left: -.05em;
}
.nordisk-hero__norsk {
	display: block;
	margin: 0;
	padding: 0;
}
.nordisk-hero__24 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.15em;
	padding: .08em .22em .1em;
	border-radius: .22em;
	background: linear-gradient(125deg, var(--aurora) 0%, var(--mint) 55%, var(--sky) 120%);
	color: var(--fjord);
	transform: translateY(-.12em);
	box-shadow:
		0 0 0 5px rgba(214, 255, 75, .2),
		0 0 22px rgba(214, 255, 75, .55),
		0 0 42px rgba(60, 203, 255, .35),
		0 14px 34px rgba(214, 255, 75, .3);
	animation: nordisk-24-halo 2.8s ease-in-out infinite;
}
.nordisk-hero__line {
	display: block;
	margin: .45rem 0 0;
	padding: 0;
	font-weight: 650;
	font-size: clamp(1.15rem, 2.4vw, 1.65rem);
	line-height: 1.25;
	color: var(--fjord-2);
	max-width: 14ch;
	letter-spacing: -.03em;
	/* Same optical rail as Norsk / Casino */
	margin-left: -.05em;
}
.nordisk-hero__sub {
	margin: 1.2rem 0 0; max-width: 38ch; font-size: 1.02rem; font-weight: 500;
	color: rgba(7, 24, 32, .72);
}
.nordisk-hero__actions {
	display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.55rem;
	position: relative; z-index: 3;
}
.nordisk-hero__desk {
	display: flex;
	align-items: center;
	gap: .95rem;
	margin-top: 1.35rem;
	max-width: 22rem;
	padding: .7rem .95rem .7rem .7rem;
	position: relative;
	z-index: 3;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(7, 24, 32, .92), rgba(13, 50, 44, .88));
	border: 1px solid rgba(214, 255, 75, .18);
	box-shadow:
		0 16px 36px rgba(4, 20, 24, .22),
		inset 0 1px 0 rgba(255, 255, 255, .06);
	overflow: hidden;
}
.nordisk-hero__desk::before {
	content: "";
	position: absolute;
	inset: auto -20% -60% 40%;
	height: 120%;
	background: radial-gradient(closest-side, rgba(214, 255, 75, .18), transparent 70%);
	pointer-events: none;
}
.nordisk-hero__desk-stack {
	position: relative;
	width: 5.4rem;
	height: 3.5rem;
	flex: 0 0 auto;
}
.nordisk-hero__desk-face {
	position: absolute;
	top: 0;
	display: block;
	transition: transform .25s ease;
}
.nordisk-hero__desk-face--a {
	left: 0;
	z-index: 2;
}
.nordisk-hero__desk-face--b {
	left: 1.85rem;
	z-index: 1;
	top: .35rem;
}
.nordisk-hero__desk:hover .nordisk-hero__desk-face--a { transform: translate(-2px, -2px) rotate(-3deg); }
.nordisk-hero__desk:hover .nordisk-hero__desk-face--b { transform: translate(2px, -1px) rotate(3deg); }
.nordisk-avatar--desk {
	border-radius: 16px;
	box-shadow:
		0 0 0 2px rgba(244, 255, 232, .9),
		0 8px 18px rgba(0, 0, 0, .35);
}
.nordisk-hero__desk-pulse {
	position: absolute;
	right: -.1rem;
	bottom: -.05rem;
	width: .7rem;
	height: .7rem;
	border-radius: 50%;
	background: #d6ff4b;
	box-shadow: 0 0 0 0 rgba(214, 255, 75, .55);
	z-index: 3;
	animation: nordisk-desk-pulse 2.4s ease-out infinite;
}
@keyframes nordisk-desk-pulse {
	0% { box-shadow: 0 0 0 0 rgba(214, 255, 75, .55); }
	70% { box-shadow: 0 0 0 10px rgba(214, 255, 75, 0); }
	100% { box-shadow: 0 0 0 0 rgba(214, 255, 75, 0); }
}
.nordisk-hero__desk-copy {
	position: relative;
	min-width: 0;
}
.nordisk-hero__desk-kicker {
	margin: 0;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(214, 255, 75, .85);
}
.nordisk-hero__desk-line {
	margin: .28rem 0 0;
	font-size: .92rem;
	font-weight: 600;
	color: rgba(238, 247, 241, .78);
	line-height: 1.35;
}
.nordisk-hero__desk-line a {
	color: #f4ffe8;
	text-decoration: none;
}
.nordisk-hero__desk-line a:hover { color: #d6ff4b; }
.nordisk-hero__desk-line strong {
	font-weight: 800;
	letter-spacing: -.02em;
}
.nordisk-hero__desk-dot {
	display: inline-block;
	width: .28rem;
	height: .28rem;
	margin: 0 .35rem;
	border-radius: 50%;
	background: rgba(214, 255, 75, .65);
	vertical-align: middle;
}
.nordisk-hero__emblem {
	position: relative;
	justify-self: end;
	width: min(100%, 260px);
	display: grid;
	justify-items: center;
	gap: .75rem;
	margin-top: .55rem;
}
.nordisk-hero__emblem-ring {
	position: absolute;
	inset: -18px;
	border-radius: 40px;
	background:
		conic-gradient(from 210deg, rgba(214,255,75,0), rgba(214,255,75,.55), rgba(60,203,255,.4), rgba(122,240,200,.15), transparent 70%);
	opacity: .9;
	z-index: 0;
	animation: nordisk-spin 18s linear infinite;
}
.nordisk-mark--hero {
	position: relative; z-index: 1;
	width: min(42vw, 168px); height: auto;
	filter: drop-shadow(0 20px 32px rgba(4, 20, 24, .3));
}
.nordisk-hero__emblem-meta {
	position: relative; z-index: 1; text-align: center;
	padding: .7rem .85rem; border-radius: 14px;
	background: #fff; border: 1px solid var(--line);
	box-shadow: 0 12px 28px rgba(4, 20, 24, .12);
}
.nordisk-hero__emblem-meta span {
	display: block; font-size: .68rem; font-weight: 750; letter-spacing: .08em;
	text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.nordisk-hero__emblem-meta strong {
	font-size: .92rem; font-weight: 800; letter-spacing: -.02em;
}
@keyframes nordisk-drift {
	from { transform: translate3d(-2%, 0, 0) scale(1); }
	to { transform: translate3d(3%, 2%, 0) scale(1.04); }
}
@keyframes nordisk-spin {
	to { transform: rotate(360deg); }
}
@keyframes nordisk-24-halo {
	0%, 100% {
		box-shadow:
			0 0 0 4px rgba(214, 255, 75, .16),
			0 0 18px rgba(214, 255, 75, .42),
			0 0 34px rgba(60, 203, 255, .22),
			0 14px 34px rgba(214, 255, 75, .24);
	}
	50% {
		box-shadow:
			0 0 0 7px rgba(214, 255, 75, .28),
			0 0 28px rgba(214, 255, 75, .7),
			0 0 52px rgba(60, 203, 255, .45),
			0 16px 40px rgba(214, 255, 75, .36);
	}
}
@keyframes nordisk-twinkle {
	0%, 100% { opacity: .35; }
	40% { opacity: 1; }
	70% { opacity: .55; }
}
@keyframes nordisk-neon {
	0%, 100% { opacity: .82; filter: brightness(1); }
	45% { opacity: 1; filter: brightness(1.25); }
	52% { opacity: .55; filter: brightness(.85); }
	60% { opacity: 1; filter: brightness(1.35); }
}
@keyframes nordisk-traffic {
	to { stroke-dashoffset: -120; }
}
@keyframes nordisk-quay {
	from { opacity: .55; transform: scaleX(1); }
	to { opacity: .95; transform: scaleX(1.06); }
}
@keyframes nordisk-reflect {
	0%, 100% { opacity: .2; transform: scaleY(1); }
	50% { opacity: .55; transform: scaleY(1.15); }
}
@keyframes nordisk-stars {
	from { opacity: .4; }
	to { opacity: .7; }
}

/* Trust */
.nordisk-trust { margin-top: -1.25rem; position: relative; z-index: 2; }
.nordisk-trust__row {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
	padding: 1.1rem; border-radius: 24px;
	background: rgba(255,255,255,.78); border: 1px solid var(--line);
	backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.nordisk-trust__item {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: .7rem;
	row-gap: .08rem;
	align-items: center;
	padding: .55rem .7rem;
	border-radius: 16px;
	transition: background .2s ease, transform .2s ease;
}
.nordisk-trust__item:hover {
	background: rgba(214, 255, 75, .1);
	transform: translateY(-2px);
}
.nordisk-trust__icon {
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	color: var(--fjord-2);
	background:
		radial-gradient(circle at 30% 25%, rgba(214,255,75,.28), transparent 45%),
		linear-gradient(160deg, #0a2e38 0%, #041418 100%);
	box-shadow:
		inset 0 0 0 1px rgba(214, 255, 75, .18),
		0 8px 18px rgba(4, 20, 24, .18);
	overflow: hidden;
}
.nordisk-trust__icon svg {
	width: 34px; height: 34px;
	overflow: visible;
}
.nordisk-trust__item:hover .nordisk-trust__icon {
	box-shadow:
		inset 0 0 0 1px rgba(214, 255, 75, .4),
		0 0 22px rgba(214, 255, 75, .28),
		0 10px 22px rgba(4, 20, 24, .22);
}
.nordisk-trust__item strong {
	font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
}
.nordisk-trust__item > span:last-child {
	font-size: .78rem; font-weight: 600; color: var(--muted);
}

/* Shared motion helpers */
.nt-orbit, .nt-badge, .nt-spark, .nt-chip, .nt-star,
.nt-aurora, .nt-mount, .nt-mount-edge, .nt-ring-glow,
.nt-moon, .nt-sun, .nt-live-dot, .nt-age-txt {
	transform-box: fill-box;
	transform-origin: center;
}

/* 18+ age badge */
.nordisk-trust__item:hover .nt-orbit {
	animation: nt-orbit-spin 2.2s linear infinite;
	transform-box: view-box;
	transform-origin: 24px 24px;
}
.nordisk-trust__item:hover .nt-badge {
	animation: nt-float .9s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-age-txt {
	animation: nt-glow-txt .9s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-spark--a {
	animation: nt-sparkle .7s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-spark--b {
	animation: nt-sparkle .7s ease-in-out infinite .2s;
}

/* 7 chips */
.nordisk-trust__item:hover .nt-chip--back {
	animation: nt-chip-back .85s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-chip--mid {
	animation: nt-chip-mid .85s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-chip--front {
	animation: nt-chip-front .85s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-star {
	animation: nt-sparkle .65s ease-in-out infinite;
}

/* NO aurora fjord */
.nordisk-trust__item:hover .nt-aurora--a {
	animation: nt-wave 1.1s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-aurora--b {
	animation: nt-wave 1.1s ease-in-out infinite .15s;
}
.nordisk-trust__item:hover .nt-mount,
.nordisk-trust__item:hover .nt-mount-edge {
	animation: nt-rise .9s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-star--1 { animation: nt-twinkle .8s ease-in-out infinite; }
.nordisk-trust__item:hover .nt-star--2 { animation: nt-twinkle .8s ease-in-out infinite .2s; }
.nordisk-trust__item:hover .nt-star--3 { animation: nt-twinkle .8s ease-in-out infinite .35s; }

/* 24/7 moon-sun live */
.nordisk-trust__item:hover .nt-ring-glow {
	animation: nt-orbit-spin 1.6s linear infinite;
	transform-box: view-box;
	transform-origin: 24px 24px;
}
.nordisk-trust__item:hover .nt-moon {
	animation: nt-moon-drift 1.2s ease-in-out infinite;
}
.nordisk-trust__item:hover .nt-sun {
	animation: nt-sun-spin 1.4s linear infinite;
	transform-box: view-box;
	transform-origin: 31.5px 17.5px;
}
.nordisk-trust__item:hover .nt-live-dot {
	animation: nt-live-blink .7s ease-in-out infinite;
}

@keyframes nt-orbit-spin { to { transform: rotate(360deg); } }
@keyframes nt-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-2px) scale(1.04); }
}
@keyframes nt-glow-txt {
	0%, 100% { fill: #F4FFE8; }
	50% { fill: #D6FF4B; }
}
@keyframes nt-sparkle {
	0%, 100% { transform: scale(.7); opacity: .55; }
	50% { transform: scale(1.35); opacity: 1; }
}
@keyframes nt-chip-back {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(-2px, 1px) rotate(-8deg); }
}
@keyframes nt-chip-mid {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(1px, -2px) rotate(6deg); }
}
@keyframes nt-chip-front {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(1px, -1px) scale(1.06); }
}
@keyframes nt-wave {
	0%, 100% { transform: translateX(0); opacity: .75; }
	50% { transform: translateX(2px); opacity: 1; }
}
@keyframes nt-rise {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-1.5px); }
}
@keyframes nt-twinkle {
	0%, 100% { opacity: .35; transform: scale(.8); }
	50% { opacity: 1; transform: scale(1.3); }
}
@keyframes nt-moon-drift {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(-1px, 1px) rotate(-6deg); }
}
@keyframes nt-sun-spin { to { transform: rotate(360deg); } }
@keyframes nt-live-blink {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.45); opacity: .55; }
}

/* Sections */
.nordisk-board, .nordisk-why, .nordisk-safe { padding: 5rem 0; }
.nordisk-section-head { max-width: 620px; margin-bottom: 2rem; }
.nordisk-section-head h2 {
	margin: 0; font-size: clamp(1.85rem, 3.6vw, 2.7rem);
	font-weight: 800; line-height: 1.05; letter-spacing: -.045em;
}
.nordisk-section-head p:last-child {
	margin: .75rem 0 0; color: var(--muted); font-weight: 500;
}

/* ===== Casino toplist rows (NO affiliate style) ===== */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.nordisk-board__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: .75rem;
}
.nordisk-row {
	opacity: 0; transform: translateY(18px);
}
.nordisk-row.is-in {
	opacity: 1; transform: none;
	transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.nordisk-row__inner {
	display: grid;
	grid-template-columns: 44px 104px minmax(0, 1fr) 88px 150px;
	align-items: center;
	gap: 1rem 1.15rem;
	padding: 1rem 1.15rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(7, 24, 32, 0.08);
	box-shadow: 0 10px 28px rgba(6, 24, 32, 0.06);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nordisk-row__inner:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--card-accent) 45%, rgba(7,24,32,.1));
	box-shadow: 0 16px 36px rgba(6, 24, 32, 0.1);
}
.nordisk-row--featured .nordisk-row__inner {
	border-color: color-mix(in srgb, var(--card-accent) 55%, transparent);
	background:
		linear-gradient(90deg, color-mix(in srgb, var(--card-accent) 14%, #fff) 0%, #fff 42%);
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--card-accent) 18%, transparent),
		0 16px 40px color-mix(in srgb, var(--card-accent) 16%, transparent);
}

.nordisk-row__rank {
	display: grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--fjord);
	color: var(--card-accent);
	font-size: 1.05rem; font-weight: 800; letter-spacing: -.03em;
}
.nordisk-row--featured .nordisk-row__rank {
	background: var(--card-accent);
	color: var(--card-ink);
}

/* Hex logo — ring + image share the same SVG path */
.nordisk-hexlogo {
	position: relative;
	width: 96px; height: 104px;
	flex: 0 0 auto;
	margin: 0;
	justify-self: center;
	filter: drop-shadow(0 10px 18px rgba(6, 24, 32, 0.16));
}
.nordisk-hexlogo__svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}
.nordisk-hexlogo__fill--fresh { fill: #2c2c2e !important; }
.nordisk-hexlogo__fill--vavada { fill: #1e2430 !important; }
.nordisk-hexlogo__fill--martin { fill: #1e232b !important; }
.nordisk-hexlogo__fill--stake { fill: #1a2733 !important; }
.nordisk-hexlogo__fill--beef { fill: #0f1620 !important; }
.nordisk-hexlogo__fill--duel { fill: #050a1e !important; }
.nordisk-hexlogo__fill--iris { fill: #000000 !important; }

.nordisk-row__body { min-width: 0; }
.nordisk-row__head {
	display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .65rem;
	margin-bottom: .35rem;
}
.nordisk-row__name {
	margin: 0;
	font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em;
	color: var(--fjord); line-height: 1.15;
}
.nordisk-row__badge {
	display: inline-flex; align-items: center;
	height: 24px; padding: 0 .55rem; border-radius: 999px;
	background: var(--card-accent); color: var(--card-ink);
	font-size: .65rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.nordisk-row__bonus {
	margin: 0 0 .45rem;
	display: grid; gap: .1rem;
}
.nordisk-row__bonus span {
	font-size: .68rem; font-weight: 750; letter-spacing: .06em;
	text-transform: uppercase; color: var(--muted);
}
.nordisk-row__bonus strong {
	font-size: 1.02rem; font-weight: 750; letter-spacing: -.02em;
	color: var(--fjord); line-height: 1.3;
}
.nordisk-row__meta {
	margin: 0;
	display: flex; flex-wrap: wrap; gap: .35rem .9rem;
	font-size: .82rem; font-weight: 650; color: var(--fjord);
}
.nordisk-row__meta em {
	font-style: normal; font-weight: 700; color: var(--muted);
	margin-right: .25rem;
}

.nordisk-row__score {
	display: grid; justify-items: center; gap: .1rem;
	text-align: center;
}
.nordisk-row__score strong {
	font-size: 1.55rem; font-weight: 800; letter-spacing: -.04em;
	line-height: 1; color: var(--fjord);
}
.nordisk-row__score > span {
	font-size: .72rem; font-weight: 700; color: var(--muted);
}
.nordisk-row__stars {
	display: flex; gap: 2px; margin-top: .28rem;
	font-size: 1.15rem; line-height: 1; letter-spacing: .02em;
	color: rgba(7,24,32,.16);
}
.nordisk-row__star.is-on { color: #e6b422; }
.nordisk-row__star.is-half {
	background: linear-gradient(90deg, #e6b422 50%, rgba(7,24,32,.16) 50%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.nordisk-row__cta {
	display: grid; gap: .45rem; justify-items: stretch;
}
.nordisk-row__cta .nordisk-btn--accent {
	min-height: 46px; width: 100%;
	font-size: .9rem;
}
.nordisk-row__review {
	text-align: center;
	font-size: .8rem; font-weight: 700;
	color: var(--pine); text-decoration: none;
}
.nordisk-row__review:hover { text-decoration: underline; }

/* Why */
.nordisk-why__cards {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.nordisk-why__card {
	padding: 1.35rem; border-radius: 24px; min-height: 210px;
	background: rgba(255,255,255,.68); border: 1px solid var(--line);
}
.nordisk-why__num {
	font-size: .85rem; font-weight: 800; color: var(--pine); letter-spacing: .08em;
}
.nordisk-why__card h3 {
	margin: .75rem 0 .5rem; font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em;
}
.nordisk-why__card p { margin: 0; color: var(--muted); font-weight: 500; }

/* Safe */
.nordisk-safe__panel {
	display: flex; align-items: end; justify-content: space-between; gap: 1.5rem;
	padding: clamp(1.4rem, 4vw, 2.4rem); border-radius: var(--radius);
	background:
		radial-gradient(520px 220px at 85% 0%, rgba(200, 245, 66, .16), transparent 60%),
		linear-gradient(145deg, #061820, #123442 55%, #0d322c);
	color: #e8f3ec; box-shadow: var(--shadow);
}
.nordisk-safe__panel h2 {
	margin: 0; font-size: clamp(1.55rem, 2.8vw, 2.2rem);
	font-weight: 800; letter-spacing: -.04em; max-width: 16ch;
}
.nordisk-safe__panel p:last-child {
	margin: .75rem 0 0; max-width: 46ch; color: rgba(232, 243, 236, .78); font-weight: 500;
}

/* Footer */
.nordisk-footer {
	padding: 3.5rem 0 7rem; border-top: 1px solid var(--line);
	background: rgba(255,255,255,.4);
}
.nordisk-footer__grid {
	display: grid; grid-template-columns: 1.4fr .8fr 1.2fr; gap: 2rem;
}
.nordisk-footer__brandblock { display: flex; gap: .9rem; align-items: flex-start; }
.nordisk-footer__brand {
	margin: 0; font-weight: 800; font-size: 1.25rem; letter-spacing: -.03em;
}
.nordisk-footer__brand span { color: var(--pine); }
.nordisk-footer__lead, .nordisk-footer__note { color: var(--muted); font-weight: 500; }
.nordisk-footer__label { font-weight: 750; margin: 0 0 .7rem; }
.nordisk-footer a {
	display: block; text-decoration: none; margin-bottom: .4rem; font-weight: 650;
}
.nordisk-footer__bottom {
	margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
	display: flex; justify-content: space-between; gap: 1rem;
	font-size: .8rem; font-weight: 600; color: var(--muted);
}

.nordisk-mobile-cta {
	display: none;
	position: fixed;
	inset: auto 0 0;
	z-index: 60;
	padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
	background: rgba(242, 245, 247, .92);
	backdrop-filter: blur(14px);
	border-top: 1px solid var(--line);
}
.nordisk-mobile-cta .nordisk-btn { width: 100%; }

[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-in {
	opacity: 1; transform: none;
	transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}

.nordisk-main--simple { padding: 3.5rem 0 5.5rem; }
.nordisk-article h1 {
	font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 800; letter-spacing: -.04em;
}
.nordisk-prose { max-width: 68ch; }

.nordisk-prose .nordisk-table-wrap {
	width: 100%;
	max-width: 100%;
	margin: 1.35rem 0 1.6rem;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 14px 34px rgba(4, 20, 24, .07);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.nordisk-prose .nordisk-table {
	width: 100%;
	min-width: 30rem;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}

.nordisk-prose .nordisk-table th,
.nordisk-prose .nordisk-table td {
	padding: 0.78rem 0.95rem;
	text-align: left;
	vertical-align: middle;
}

.nordisk-prose .nordisk-table thead th {
	font-weight: 750;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(238, 247, 241, .88);
	background: linear-gradient(165deg, #071820 0%, #0d322c 100%);
	border-bottom: 0;
	white-space: nowrap;
}

.nordisk-prose .nordisk-table thead th:first-child {
	border-radius: 17px 0 0 0;
}

.nordisk-prose .nordisk-table thead th:last-child {
	border-radius: 0 17px 0 0;
}

.nordisk-prose .nordisk-table tbody td {
	border-bottom: 1px solid rgba(7, 24, 32, .08);
	color: rgba(7, 24, 32, .82);
	font-weight: 600;
}

.nordisk-prose .nordisk-table tbody td:first-child {
	font-weight: 750;
	color: var(--fjord);
}

.nordisk-prose .nordisk-table tbody tr:last-child td {
	border-bottom: 0;
}

.nordisk-prose .nordisk-table tbody tr:nth-child(even) td {
	background: rgba(18, 138, 114, .04);
}

.nordisk-prose .nordisk-table tbody tr:hover td {
	background: rgba(214, 255, 75, .12);
}

/* Gutenberg tables in casino reviews — same look as .nordisk-table */
.nordisk-review__prose .wp-block-table {
	width: 100%;
	max-width: 100%;
	margin: 1.35rem 0 1.6rem;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 14px 34px rgba(4, 20, 24, .07);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.nordisk-review__prose .wp-block-table table {
	width: 100%;
	min-width: 30rem;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	border: 0 !important;
	background: transparent;
}
.nordisk-review__prose .wp-block-table thead {
	border: 0 !important;
}
.nordisk-review__prose .wp-block-table th,
.nordisk-review__prose .wp-block-table td {
	padding: 0.78rem 0.95rem !important;
	text-align: left;
	vertical-align: middle;
	border: 0 !important;
	border-color: transparent !important;
}
.nordisk-review__prose .wp-block-table thead th {
	font-weight: 750;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(238, 247, 241, .88) !important;
	background: linear-gradient(165deg, #071820 0%, #0d322c 100%) !important;
	white-space: nowrap;
}
.nordisk-review__prose .wp-block-table thead th:first-child {
	border-radius: 17px 0 0 0;
}
.nordisk-review__prose .wp-block-table thead th:last-child {
	border-radius: 0 17px 0 0;
}
.nordisk-review__prose .wp-block-table tbody td {
	border-bottom: 1px solid rgba(7, 24, 32, .08) !important;
	color: rgba(7, 24, 32, .82);
	font-weight: 600;
	background: transparent;
}
.nordisk-review__prose .wp-block-table tbody td:first-child {
	font-weight: 750;
	color: var(--fjord);
}
.nordisk-review__prose .wp-block-table tbody tr:last-child td {
	border-bottom: 0 !important;
}
.nordisk-review__prose .wp-block-table tbody tr:nth-child(even) td {
	background: rgba(18, 138, 114, .04);
}
.nordisk-review__prose .wp-block-table tbody tr:hover td {
	background: rgba(214, 255, 75, .12);
}
.nordisk-review__prose .wp-block-table.is-style-stripes,
.nordisk-review__prose .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: transparent;
}
.nordisk-review__prose .wp-block-table.is-style-stripes {
	border-bottom: 0;
}

@media (max-width: 960px) {
	/* No fly-in / layout shift on phones */
	[data-reveal],
	[data-reveal].is-in,
	.nordisk-row {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		translate: none !important;
	}

	.nordisk-nav, .nordisk-header__cta { display: none; }
	.nordisk-burger { display: inline-grid; }
	.nordisk-hero {
		min-height: auto;
		align-items: start;
		/* Clearance for absolute skyline at bottom */
		padding: 2rem 0 150px;
	}
	.nordisk-hero__layout {
		grid-template-columns: 1fr;
		gap: 1.6rem;
		align-items: start;
	}
	.nordisk-hero__content {
		position: relative;
		z-index: 2;
		max-width: none;
		text-align: center;
		justify-self: center;
		width: 100%;
	}
	.nordisk-hero__content .nordisk-kicker {
		justify-content: center;
	}
	.nordisk-hero__title {
		justify-items: center;
	}
	.nordisk-hero__brandblock {
		align-items: center;
		width: max-content;
		margin-inline: auto;
		text-align: center;
	}
	.nordisk-hero__brand {
		justify-content: center;
	}
	.nordisk-hero__line {
		max-width: 22ch;
		margin-inline: auto;
		margin-left: auto;
		text-align: center;
	}
	.nordisk-hero__sub {
		margin-inline: auto;
		max-width: 36ch;
	}
	.nordisk-hero__desk {
		margin-inline: auto;
		margin-top: 1.1rem;
		text-align: left;
	}
	.nordisk-hero__actions { display: none; }
	.nordisk-hero__emblem { display: none; }
	/* City stays behind, only bottom strip */
	.nordisk-hero__skyline {
		position: absolute;
		inset: auto 0 0;
		height: 132px;
		z-index: 0;
		mask-image: linear-gradient(180deg, transparent 0%, #000 30%);
	}
	.nordisk-hero__skyline-svg { min-height: 132px; }
	.nordisk-hero__night {
		height: 140px;
		background: linear-gradient(180deg, transparent 0%, rgba(2, 12, 16, .35) 55%, rgba(2, 12, 16, .75) 100%);
	}
	.nordisk-hero__stars { inset: 0 0 45%; opacity: .4; }
	.nordisk-trust { margin-top: .5rem; }
	.nordisk-trust__row { grid-template-columns: 1fr 1fr; }
	.nordisk-trust__item { padding: .5rem .45rem; column-gap: .55rem; }
	.nordisk-trust__icon { width: 44px; height: 44px; border-radius: 13px; }
	.nordisk-trust__icon svg { width: 30px; height: 30px; }
	.nordisk-trust__item strong { font-size: 1.2rem; }
	.nordisk-why__cards { grid-template-columns: 1fr; }
	.nordisk-footer__grid { grid-template-columns: 1fr; }

	/* Mobile/tablet card: centered stack */
	.nordisk-row__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"rank"
			"logo"
			"body"
			"score"
			"cta";
		justify-items: center;
		text-align: center;
		gap: .85rem;
		padding: 1.25rem 1.15rem 1.35rem;
	}
	.nordisk-row__rank {
		grid-area: rank;
		width: 36px; height: 36px;
		font-size: .95rem;
	}
	.nordisk-row__inner .nordisk-hexlogo {
		grid-area: logo;
		width: 112px; height: 122px;
		justify-self: center;
	}
	.nordisk-row__body {
		grid-area: body;
		width: 100%;
	}
	.nordisk-row__head {
		justify-content: center;
	}
	.nordisk-row__name { font-size: 1.35rem; }
	.nordisk-row__bonus { justify-items: center; }
	.nordisk-row__bonus strong { font-size: .98rem; }
	.nordisk-row__meta {
		justify-content: center;
		gap: .3rem .7rem;
		font-size: .78rem;
	}
	.nordisk-row__score {
		grid-area: score;
		justify-items: center;
		width: 100%;
		padding-top: .35rem;
		border-top: 1px solid rgba(7, 24, 32, 0.08);
	}
	.nordisk-row__score strong { font-size: 1.65rem; }
	.nordisk-row__stars {
		justify-content: center;
		font-size: 1.25rem;
		margin-top: .35rem;
	}
	.nordisk-row__cta {
		grid-area: cta;
		width: 100%;
		grid-template-columns: 1fr;
		gap: .55rem;
	}
	.nordisk-row__cta .nordisk-btn--accent {
		min-height: 50px;
		width: 100%;
	}
	.nordisk-row__review {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		width: 100%;
		border-radius: 999px;
		border: 1px solid var(--line);
		background: rgba(7, 24, 32, 0.03);
		color: var(--fjord);
		font-size: .88rem;
		font-weight: 750;
		text-decoration: none;
	}
	.nordisk-row__review:hover {
		background: rgba(7, 24, 32, 0.06);
		text-decoration: none;
	}

	.nordisk-safe__panel { flex-direction: column; align-items: stretch; }
	.nordisk-mobile-cta { display: block; }
	.nordisk-footer { padding-bottom: 7.5rem; }

	/* Casino review — tablet/mobile */
	.nordisk-review,
	.nordisk-review__hero,
	.nordisk-feedback {
		max-width: 100%;
	}
	.nordisk-review__hero {
		padding: 1.5rem 0 1.25rem;
		overflow-x: clip;
		overflow-y: visible;
	}
	/* Never force width:100% on .nordisk-shell — it kills side gutters */
	.nordisk-review__hero-grid,
	.nordisk-review__split {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.15rem;
		min-width: 0;
	}
	.nordisk-review__hero-copy {
		min-width: 0;
		max-width: 100%;
		text-align: left;
	}
	.nordisk-review__highlight {
		display: inline-flex;
		max-width: 100%;
		white-space: normal;
		text-wrap: balance;
		box-decoration-break: clone;
	}
	.nordisk-review__title {
		font-size: clamp(1.9rem, 8vw, 2.6rem);
		line-height: 1.05;
	}
	.nordisk-review__lead {
		max-width: none;
		font-size: .98rem;
	}
	.nordisk-review__hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: .65rem;
	}
	.nordisk-review__hero-actions .nordisk-btn {
		width: 100%;
	}
	.nordisk-review__scorecard {
		position: relative;
		z-index: 1;
		justify-self: stretch;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 1.15rem 1.05rem 1.25rem;
		border-radius: 20px;
		overflow: visible;
		isolation: isolate;
	}
	.nordisk-review__strip {
		position: relative;
		z-index: 1;
		margin-top: 1rem;
		margin-bottom: .5rem;
		padding: 0 0 1.35rem;
	}
	.nordisk-review__strip-wrap {
		width: 100%;
		margin-inline: 0;
		padding: 1.15rem 1.1rem 1.3rem;
	}
	.nordisk-review__strip-row {
		grid-template-columns: 1fr;
		gap: .75rem;
	}
	.nordisk-review__meter {
		min-width: 0;
		overflow: hidden;
	}
	.nordisk-review__meter-head {
		align-items: center;
		gap: .7rem;
		min-width: 0;
	}
	.nordisk-review__meter-icon {
		width: 34px;
		height: 34px;
		flex: 0 0 34px;
	}
	.nordisk-review__meter-icon svg {
		width: 34px;
		height: 34px;
	}
	.nordisk-review__meter-top {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: .75rem;
		width: 100%;
		min-width: 0;
	}
	.nordisk-review__meter-top span {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
	.nordisk-review__layout {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.nordisk-review__sidebar {
		display: contents;
	}
	.nordisk-review__toc,
	.nordisk-review__sidebar,
	.nordisk-review__cta-card {
		position: static !important;
		width: 100%;
		max-width: none;
	}
	.nordisk-review__body {
		padding: 1rem 0 3rem;
		overflow: visible;
	}
	.nordisk-review__strip {
		margin-top: .5rem;
		margin-bottom: 0;
	}
	.nordisk-review__content,
	.nordisk-review__prose,
	.nordisk-review__verdict,
	.nordisk-review__faq,
	.nordisk-review__cta-card {
		max-width: 100%;
		min-width: 0;
	}
	.nordisk-casino-single .nordisk-footer { padding-bottom: 2.5rem; }
	.nordisk-casino-single .nordisk-mobile-cta { display: none; }
}
@media (max-width: 960px) {
	:root {
		--shell: 100%;
		--gutter: 1.15rem;
	}
	.nordisk-shell {
		width: 100%;
		max-width: 100%;
		padding-inline: var(--gutter);
		margin-inline: 0;
	}
}
@media (max-width: 640px) {
	:root { --gutter: 1.05rem; }
	.nordisk-hero {
		padding: 1.75rem 0 138px;
	}
	.nordisk-hero__layout { gap: 1rem; }
	.nordisk-hero__line { max-width: 20ch; margin-left: auto; text-align: center; }
	.nordisk-hero__brand { font-size: clamp(2.6rem, 14vw, 3.6rem); margin-left: 0; }
	.nordisk-hero__sub { margin-top: .9rem; font-size: .95rem; }
	.nordisk-hero__skyline { height: 118px; }
	.nordisk-hero__skyline-svg { min-height: 118px; }
	.nordisk-hero__night { height: 124px; }
	.nordisk-brand__casino { display: none; }
	.nordisk-row .nordisk-hexlogo { width: 120px; height: 130px; }
	.nordisk-hexlogo__fallback { font-size: 2rem; }
	.nordisk-row__inner { padding: 1.2rem 1rem 1.3rem; }
	.nordisk-trust__row { gap: .55rem; padding: .85rem; }

	.nordisk-review__hero { padding: 1.2rem 0 1rem; }
	.nordisk-review__highlight {
		font-size: .72rem;
		padding: .3rem .6rem;
		max-width: 100%;
		white-space: normal;
		line-height: 1.3;
	}
	.nordisk-review__facts li {
		font-size: .84rem;
		gap: .5rem;
	}
	.nordisk-review__tags {
		justify-content: flex-start;
	}
	.nordisk-review__scorecard .nordisk-review__tags {
		justify-content: center;
	}
	.nordisk-review__verdict {
		padding: 1.15rem 1.1rem 1.25rem;
	}
	.nordisk-review__verdict > p:last-child {
		font-size: .98rem;
	}
	.nordisk-review__toc-list a {
		padding: .5rem .45rem;
	}
	.nordisk-review__toc-text {
		font-size: .86rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.nordisk-review__meter-icon .rmi-soft { animation: none !important; }
	.nordisk-hero__aurora,
	.nordisk-hero__emblem-ring,
	.nordisk-hero__24,
	.nordisk-hero__win,
	.nordisk-hero__neon,
	.nordisk-hero__neon-sub,
	.nordisk-hero__traffic,
	.nordisk-hero__quay-glow,
	.nordisk-hero__reflect rect,
	.nordisk-hero__stars,
	.nordisk-hero__desk-pulse,
	.nordisk-trust__item:hover .nt-orbit,
	.nordisk-trust__item:hover .nt-badge,
	.nordisk-trust__item:hover .nt-age-txt,
	.nordisk-trust__item:hover .nt-spark--a,
	.nordisk-trust__item:hover .nt-spark--b,
	.nordisk-trust__item:hover .nt-chip--back,
	.nordisk-trust__item:hover .nt-chip--mid,
	.nordisk-trust__item:hover .nt-chip--front,
	.nordisk-trust__item:hover .nt-star,
	.nordisk-trust__item:hover .nt-aurora--a,
	.nordisk-trust__item:hover .nt-aurora--b,
	.nordisk-trust__item:hover .nt-mount,
	.nordisk-trust__item:hover .nt-mount-edge,
	.nordisk-trust__item:hover .nt-star--1,
	.nordisk-trust__item:hover .nt-star--2,
	.nordisk-trust__item:hover .nt-star--3,
	.nordisk-trust__item:hover .nt-ring-glow,
	.nordisk-trust__item:hover .nt-moon,
	.nordisk-trust__item:hover .nt-sun,
	.nordisk-trust__item:hover .nt-live-dot { animation: none; }
	[data-reveal], .nordisk-row { opacity: 1 !important; transform: none !important; transition: none !important; }
	.nordisk-btn:hover, .nordisk-row__inner:hover, .nordisk-trust__item:hover { transform: none; }
}

/* ===== Casino review (CPT single) ===== */
.nordisk-review {
	--review-accent: var(--aurora);
	--review-ink: var(--fjord);
}
.nordisk-review__hero {
	position: relative;
	padding: 3rem 0 2.5rem;
	overflow: clip;
	background:
		radial-gradient(700px 340px at 88% 0%, color-mix(in srgb, var(--review-accent) 28%, transparent), transparent 60%),
		radial-gradient(560px 280px at 8% 20%, rgba(60, 203, 255, .12), transparent 55%),
		linear-gradient(180deg, #eef6f8 0%, var(--ice) 100%);
}
.nordisk-review__hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
}
@media (min-width: 961px) {
	.nordisk-review__hero-grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
		gap: 2rem;
	}
}
.nordisk-review__title {
	margin: 0;
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	font-weight: 800;
	letter-spacing: -.055em;
	line-height: .95;
	color: var(--fjord);
}
.nordisk-review__credit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: .55rem .75rem;
	margin: .85rem 0 0;
}
.nordisk-review__dates {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: .25rem .45rem;
	margin: .55rem 0 0;
	font-size: .78rem;
	font-weight: 600;
	color: var(--muted);
	line-height: 1.35;
}
.nordisk-review__dates time {
	font-weight: 750;
	color: rgba(7, 24, 32, .72);
}
.nordisk-review__dates-sep {
	opacity: .45;
}
.nordisk-review__byline {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	margin: 0;
	padding: .35rem .7rem .35rem .35rem;
	border-radius: 999px;
	background: rgba(7, 24, 32, .04);
	border: 1px solid var(--line);
	text-decoration: none;
	color: inherit;
	max-width: 100%;
	transition: background .18s ease, border-color .18s ease;
}
.nordisk-review__byline:hover {
	background: color-mix(in srgb, var(--review-accent) 14%, #fff);
	border-color: color-mix(in srgb, var(--review-accent) 40%, var(--line));
}
.nordisk-review__byline-text {
	display: grid;
	gap: .05rem;
	line-height: 1.15;
	padding-right: .15rem;
}
.nordisk-review__byline-text em {
	font-style: normal;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
}
.nordisk-review__byline-text strong {
	font-size: .92rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--fjord);
}

/* ===== Share buttons ===== */
.nordisk-share {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
}
.nordisk-share__label {
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}
.nordisk-share__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: .35rem;
}
.nordisk-share__link {
	display: inline-grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 999px;
	border: 1px solid rgba(7, 24, 32, .1);
	background: rgba(7, 24, 32, .04);
	color: var(--fjord);
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.nordisk-share__link svg {
	width: 1rem;
	height: 1rem;
	display: block;
}
.nordisk-share__link:hover {
	transform: translateY(-1px);
}
.nordisk-share__link--facebook:hover {
	color: #1877F2;
	border-color: rgba(24, 119, 242, .45);
	background: rgba(24, 119, 242, .1);
}
.nordisk-share__link--whatsapp:hover {
	color: #25D366;
	border-color: rgba(37, 211, 102, .45);
	background: rgba(37, 211, 102, .1);
}
.nordisk-share__link--x:hover {
	color: #111;
	border-color: rgba(17, 17, 17, .35);
	background: rgba(17, 17, 17, .08);
}

/* Mobile review meta: keep author + share left, never centered */
@media (max-width: 960px) {
	.nordisk-review__hero-copy {
		text-align: left !important;
	}
	.nordisk-review__credit {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: .5rem .65rem;
		width: 100%;
	}
	.nordisk-review__byline,
	.nordisk-share {
		margin-left: 0 !important;
		margin-right: 0 !important;
		align-self: flex-start !important;
	}
	.nordisk-review__dates {
		flex-basis: 100%;
		width: 100%;
		justify-content: flex-start !important;
		text-align: left;
	}
	.nordisk-review__highlight,
	.nordisk-review__lead,
	.nordisk-review__disclaimer {
		text-align: left;
	}
}

/* ===== Social icons ===== */
.nordisk-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .45rem;
}
.nordisk-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	min-width: 2.15rem;
	height: 2.15rem;
	padding: 0 .55rem;
	border-radius: 999px;
	border: 1px solid rgba(7, 24, 32, .1);
	background: rgba(7, 24, 32, .04);
	color: var(--fjord);
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.nordisk-social__link svg {
	width: 1rem;
	height: 1rem;
	display: block;
}
.nordisk-social__label {
	font-size: .78rem;
	font-weight: 700;
}
.nordisk-social--compact .nordisk-social__label { display: none; }
.nordisk-social--compact .nordisk-social__link {
	width: 2.15rem;
	padding: 0;
}
.nordisk-social__link:hover {
	transform: translateY(-1px);
	background: rgba(18, 138, 114, .08);
	border-color: rgba(18, 138, 114, .28);
}
.nordisk-social__link--telegram:hover { color: #229ED9; border-color: rgba(34, 158, 217, .45); background: rgba(34, 158, 217, .1); }
.nordisk-social__link--facebook:hover { color: #1877F2; border-color: rgba(24, 119, 242, .45); background: rgba(24, 119, 242, .1); }
.nordisk-social__link--tumblr:hover { color: #36465D; border-color: rgba(54, 70, 93, .4); background: rgba(54, 70, 93, .08); }
.nordisk-social--hero .nordisk-social__link {
	border-color: rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .06);
	color: #f4ffe8;
	margin-top: .15rem;
}
.nordisk-social--hero {
	margin-top: 1.1rem;
}
.nordisk-social--hero .nordisk-social__link:hover {
	background: rgba(214, 255, 75, .16);
	border-color: rgba(214, 255, 75, .45);
	color: #fff;
}
.nordisk-social--hero .nordisk-social__link--telegram:hover { background: rgba(36, 161, 222, .22); border-color: rgba(36, 161, 222, .5); }
.nordisk-social--hero .nordisk-social__link--facebook:hover { background: rgba(66, 103, 178, .28); border-color: rgba(66, 103, 178, .55); }
.nordisk-social--hero .nordisk-social__link--tumblr:hover { background: rgba(54, 70, 93, .4); border-color: rgba(160, 180, 200, .45); }
.nordisk-review__highlight {
	display: inline-flex;
	margin: .9rem 0 0;
	padding: .35rem .7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--review-accent) 28%, #fff);
	border: 1px solid color-mix(in srgb, var(--review-accent) 55%, transparent);
	font-size: .78rem;
	font-weight: 750;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--fjord);
}
.nordisk-review__lead {
	margin: 1rem 0 0;
	max-width: 42ch;
	font-size: 1.05rem;
	color: rgba(7, 24, 32, .72);
	font-weight: 500;
}
.nordisk-review__offer {
	margin-top: 1.35rem;
	padding: 1rem 1.15rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 36px rgba(4, 20, 24, .08);
	display: grid;
	gap: .25rem;
	max-width: 52ch;
}
.nordisk-review__offer span {
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
}
.nordisk-review__offer strong {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.35;
	color: var(--fjord);
}
.nordisk-review__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	margin-top: 1.35rem;
}
.nordisk-review__hero-actions .nordisk-btn--solid {
	background: var(--fjord);
	color: #f4ffe8;
	border: 1px solid transparent;
	box-shadow: 0 12px 28px rgba(6, 24, 32, .24);
}
.nordisk-review__hero-actions .nordisk-btn--solid:hover {
	background: #0a2834;
}
.nordisk-review__disclaimer {
	margin: .85rem 0 0;
	font-size: .78rem;
	font-weight: 600;
	color: var(--muted);
}
.nordisk-review__scorecard {
	position: relative;
	z-index: 0;
	justify-self: stretch;
	width: 100%;
	max-width: 100%;
	padding: 1.35rem 1.2rem 1.4rem;
	border-radius: 22px;
	background: rgba(255,255,255,.92);
	border: 1px solid var(--line);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .65rem;
	text-align: center;
}
.nordisk-review__scorecard > * {
	grid-area: auto;
	grid-column: auto;
	grid-row: auto;
}
.nordisk-review__hero-copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}
.nordisk-hexlogo--lg {
	width: 148px;
	height: 160px;
}
.nordisk-review__scorecard .nordisk-hexlogo,
.nordisk-review__scorecard .nordisk-hexlogo--lg {
	grid-area: unset;
	width: 148px;
	height: 160px;
	margin: 0 auto;
	flex: 0 0 auto;
}
.nordisk-review__score-main {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: .25rem;
}
.nordisk-review__score-main strong {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: -.05em;
	line-height: 1;
}
.nordisk-review__score-main span {
	font-size: 1rem;
	font-weight: 700;
	color: var(--muted);
}
.nordisk-review__stars { justify-content: center; font-size: 1.35rem; }
.nordisk-review__facts {
	list-style: none;
	margin: .35rem 0 0;
	padding: .85rem 0 0;
	width: 100%;
	border-top: 1px solid var(--line);
	display: grid;
	gap: .55rem;
	text-align: left;
}
.nordisk-review__facts li {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	font-size: .88rem;
	font-weight: 650;
}
.nordisk-review__facts em {
	font-style: normal;
	color: var(--muted);
	font-weight: 600;
}
.nordisk-review__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .4rem;
	margin-top: .2rem;
}
.nordisk-review__tags span {
	padding: 0;
	border-radius: 0;
	background: none;
	border: none;
	font-size: .78rem;
	font-weight: 650;
	color: var(--muted);
}
.nordisk-review__tags span:not(:last-child)::after {
	content: "·";
	margin-left: .45rem;
	margin-right: .15rem;
	color: rgba(7, 24, 32, .28);
}

/* Mobile scorecard: strict vertical stack — logo → score → stars → facts → tags */
@media (max-width: 960px) {
	.nordisk-review__scorecard {
		display: flex !important;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: .55rem;
		padding: 1.2rem 1.05rem 1.3rem;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		float: none !important;
		grid-area: auto !important;
		grid-template-columns: none !important;
		grid-template-areas: none !important;
		grid-template-rows: none !important;
		overflow: hidden;
	}
	.nordisk-review__scorecard > * {
		display: block;
		float: none !important;
		grid-area: auto !important;
		grid-column: auto !important;
		grid-row: auto !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		width: auto;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		transform: none !important;
	}
	.nordisk-review__scorecard .nordisk-hexlogo,
	.nordisk-review__scorecard .nordisk-hexlogo--lg {
		display: block !important;
		width: 148px !important;
		height: 160px !important;
		margin: 0 auto !important;
		order: 1;
		filter: drop-shadow(0 10px 18px rgba(6, 24, 32, 0.16));
	}
	.nordisk-review__scorecard .nordisk-review__score-main {
		display: flex !important;
		order: 2;
		width: auto;
		justify-content: center;
	}
	.nordisk-review__scorecard .nordisk-review__score-main strong {
		font-size: 2.35rem;
	}
	.nordisk-review__scorecard .nordisk-review__stars {
		display: flex !important;
		order: 3;
		width: auto;
		margin: 0;
		justify-content: center;
	}
	.nordisk-review__scorecard .nordisk-review__facts {
		display: grid !important;
		order: 4;
		width: 100%;
		margin-top: .25rem;
		padding-top: .85rem;
		gap: .65rem;
		text-align: center;
	}
	.nordisk-review__scorecard .nordisk-review__facts li {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-content: stretch;
		gap: .12rem;
		text-align: center;
	}
	.nordisk-review__scorecard .nordisk-review__facts em {
		font-size: .7rem;
		font-weight: 750;
		letter-spacing: .06em;
		text-transform: uppercase;
	}
	.nordisk-review__scorecard .nordisk-review__facts span {
		font-size: .95rem;
		font-weight: 750;
		color: var(--fjord);
		overflow-wrap: anywhere;
	}
	.nordisk-review__scorecard .nordisk-review__tags {
		display: flex !important;
		order: 5;
		justify-content: center;
		width: 100%;
	}
}

/* Ratings strip */
.nordisk-review__strip {
	padding: .75rem 0 1.75rem;
	margin-top: .25rem;
	margin-bottom: .35rem;
	position: relative;
	z-index: 1;
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-review__strip-wrap {
	padding: 1.3rem 1.25rem 1.4rem;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 16px 40px rgba(4, 20, 24, .08);
	overflow: hidden;
}
.nordisk-review__strip-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: .85rem;
}
.nordisk-review__strip-note {
	margin: 1.05rem 0 0;
	padding-top: .9rem;
	border-top: 1px solid rgba(7, 24, 32, .08);
	font-size: .8rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--muted);
}
@media (min-width: 961px) {
	.nordisk-review__strip-row {
		grid-template-columns: repeat(5, 1fr);
		gap: .85rem;
	}
}
.nordisk-review__meter {
	display: grid;
	gap: .5rem;
	min-width: 0;
}
.nordisk-review__meter-head {
	display: flex;
	align-items: center;
	gap: .6rem;
	min-width: 0;
}
.nordisk-review__meter-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	color: #3a6670;
	background: none;
	border: none;
}
.nordisk-review__meter-icon svg {
	width: 36px;
	height: 36px;
	display: block;
}
.nordisk-review__meter-icon .rmi-soft {
	animation: rmi-soft 3.2s ease-in-out infinite;
	transform-box: fill-box;
	transform-origin: center;
}
@keyframes rmi-soft {
	0%, 100% { opacity: .72; }
	50% { opacity: 1; }
}
.nordisk-review__meter-top {
	display: grid;
	gap: .1rem;
	min-width: 0;
	flex: 1;
}
.nordisk-review__meter-top span {
	font-size: .72rem;
	font-weight: 700;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nordisk-review__meter-top strong {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--fjord);
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.nordisk-review__meter-bar {
	height: 9px;
	border-radius: 999px;
	background: rgba(7, 24, 32, .065);
	overflow: hidden;
}
.nordisk-review__meter-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0f766e 0%, #14a3a0 52%, #38bdf8 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}
.nordisk-review__meter:nth-child(2) .nordisk-review__meter-bar span {
	background: linear-gradient(90deg, #0e7490 0%, #0891b2 55%, #22d3ee 100%);
}
.nordisk-review__meter:nth-child(3) .nordisk-review__meter-bar span {
	background: linear-gradient(90deg, #115e59 0%, #0d9488 50%, #2dd4bf 100%);
}
.nordisk-review__meter:nth-child(4) .nordisk-review__meter-bar span {
	background: linear-gradient(90deg, #1d4e6e 0%, #0284c7 55%, #7dd3fc 100%);
}
.nordisk-review__meter:nth-child(5) .nordisk-review__meter-bar span {
	background: linear-gradient(90deg, #134e4a 0%, #0f766e 48%, #5eead4 100%);
}


.nordisk-review__body {
	padding: 1.5rem 0 3.5rem;
	overflow: visible;
}
.nordisk-review__layout {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: stretch;
	overflow: visible;
}
.nordisk-review__content { min-width: 0; order: 2; }
.nordisk-review__toc { order: 1; }
.nordisk-review__cta-card { order: 3; }
.nordisk-review__sidebar {
	display: contents;
}
@media (min-width: 961px) {
	.nordisk-review__body { padding: 3.5rem 0 5rem; }
	.nordisk-review__layout {
		display: grid;
		grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
		grid-template-areas: "content sidebar";
		gap: 1rem 2rem;
		align-items: start;
	}
	.nordisk-review__content { grid-area: content; order: initial; }
	.nordisk-review__sidebar {
		grid-area: sidebar;
		display: flex;
		flex-direction: column;
		gap: 0.85rem;
		align-content: start;
		position: sticky;
		top: calc(var(--header-h) + 0.75rem);
		align-self: start;
		height: auto;
		max-height: calc(100svh - var(--header-h) - 1rem);
		order: initial;
		overflow: visible;
	}
	/* TOC scrolls inside; rakeback CTA stays pinned under it */
	.nordisk-review__toc {
		order: initial;
		position: static;
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}
	.nordisk-review__cta-card {
		order: initial;
		position: static;
		flex: 0 0 auto;
	}
}
.nordisk-review__prose {
	max-width: none;
}
.nordisk-review__prose .wp-block-image,
.nordisk-review__prose figure {
	max-width: 100%;
	margin: 1.35rem 0 1.6rem;
}
.nordisk-review__prose .wp-block-image img,
.nordisk-review__prose figure img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(4, 20, 24, .07);
}
/* Full-width screenshots (no align / not manually resized) */
.nordisk-review__prose .wp-block-image:not(.aligncenter):not(.alignleft):not(.alignright):not(.is-resized),
.nordisk-review__prose figure:not(.aligncenter):not(.alignleft):not(.alignright):not(.is-resized) {
	width: 100%;
}
.nordisk-review__prose .wp-block-image:not(.aligncenter):not(.alignleft):not(.alignright):not(.is-resized) img,
.nordisk-review__prose figure:not(.aligncenter):not(.alignleft):not(.alignright):not(.is-resized) img {
	width: 100%;
}
/* Centered images from the block editor */
.nordisk-review__prose .wp-block-image.aligncenter,
.nordisk-review__prose figure.aligncenter {
	display: table;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.nordisk-review__prose .wp-block-image.aligncenter img,
.nordisk-review__prose figure.aligncenter img {
	width: auto;
	margin-inline: auto;
}
.nordisk-review__prose .wp-block-image.is-resized img {
	max-width: 100%;
}
.nordisk-review__prose h2,
.nordisk-review__prose h3,
.nordisk-review [id] {
	scroll-margin-top: calc(var(--header-h) + 1.25rem);
}
.nordisk-review__prose h2 {
	margin: 2rem 0 .7rem;
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -.03em;
}
.nordisk-review__prose p,
.nordisk-review__prose li {
	color: rgba(7, 24, 32, .78);
	font-weight: 500;
}
.nordisk-review__prose ul {
	padding-left: 1.15rem;
}
.nordisk-review__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 2.2rem;
}
@media (min-width: 700px) {
	.nordisk-review__split {
		grid-template-columns: 1fr 1fr;
	}
}
.nordisk-review__list {
	padding: 1.2rem 1.2rem 1.3rem;
	border-radius: 22px;
	border: 1px solid var(--line);
	background: #fff;
}
.nordisk-review__list h2 {
	margin: 0 0 .85rem;
	font-size: 1.1rem;
	font-weight: 800;
}
.nordisk-review__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .55rem;
}
.nordisk-review__list li {
	position: relative;
	padding-left: 1.35rem;
	font-size: .92rem;
	font-weight: 600;
	color: rgba(7, 24, 32, .78);
}
.nordisk-review__list--pros li::before {
	content: "+";
	position: absolute;
	left: 0;
	top: 0;
	color: #128a72;
	font-weight: 800;
}
.nordisk-review__list--cons li::before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
	color: #c2410c;
	font-weight: 800;
}
.nordisk-review__verdict {
	margin-top: 2.2rem;
	padding: 1.35rem 1.4rem 1.45rem;
	border-radius: 22px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--review-accent) 12%, #fff), #fff 55%),
		#fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(4, 20, 24, .06);
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-review__verdict .nordisk-kicker { margin-bottom: .55rem; }
.nordisk-review__verdict > p:last-child {
	margin: 0;
	font-weight: 600;
	color: rgba(7, 24, 32, .82);
	line-height: 1.55;
	font-size: 1.02rem;
}

.nordisk-review__faq {
	margin-top: 2.4rem;
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-review__faq h2 {
	margin: 0 0 1rem;
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -.03em;
}
.nordisk-faq {
	display: grid;
	gap: .65rem;
}
.nordisk-faq__item {
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--line);
	padding: .2rem 1rem;
}
.nordisk-faq__item summary {
	cursor: pointer;
	list-style: none;
	padding: .95rem 0;
	font-weight: 750;
	letter-spacing: -.015em;
}
.nordisk-faq__item summary::-webkit-details-marker { display: none; }
.nordisk-faq__item summary::after {
	content: "+";
	float: right;
	color: var(--pine);
	font-weight: 800;
}
.nordisk-faq__item[open] summary::after { content: "–"; }
.nordisk-faq__item p {
	margin: 0 0 1rem;
	color: var(--muted);
	font-weight: 500;
}
.nordisk-review__toc {
	position: static;
	z-index: 1;
	padding: 0;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(4, 20, 24, .06);
	overflow: hidden;
}
.nordisk-review__toc-panel {
	margin: 0;
}
.nordisk-review__toc-summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: 1rem 1.15rem;
	cursor: pointer;
	user-select: none;
}
.nordisk-review__toc-summary::-webkit-details-marker { display: none; }
.nordisk-review__toc-label {
	margin: 0;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
}
.nordisk-review__toc-toggle {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(7, 24, 32, .05);
	color: var(--pine);
	font-weight: 800;
	line-height: 1;
}
.nordisk-review__toc-toggle::before { content: "+"; }
.nordisk-review__toc-panel[open] .nordisk-review__toc-toggle::before { content: "–"; }
.nordisk-review__toc-list {
	list-style: none;
	margin: 0;
	padding: 0 0.65rem 0.75rem;
	display: grid;
	gap: .2rem;
}
@media (min-width: 961px) {
	/* Desktop: always expanded, summary not clickable-looking */
	.nordisk-review__toc-panel { display: block; }
	.nordisk-review__toc-summary {
		pointer-events: none;
		padding: 1.15rem 1.15rem 0.55rem;
	}
	.nordisk-review__toc-toggle { display: none; }
	.nordisk-review__toc-list {
		padding: 0 1.15rem 1.15rem;
		display: grid !important;
	}
	.nordisk-review__toc-panel:not([open]) .nordisk-review__toc-list {
		display: grid !important;
	}
}
.nordisk-review__toc-list a {
	display: flex;
	align-items: baseline;
	gap: .65rem;
	padding: .55rem .6rem;
	border-radius: 12px;
	text-decoration: none;
	color: var(--ink);
	transition: background .18s ease, color .18s ease;
}
.nordisk-review__toc-list a:hover {
	background: color-mix(in srgb, var(--review-accent) 14%, #fff);
	color: var(--fjord);
}
.nordisk-review__toc-num {
	flex: 0 0 auto;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .04em;
	color: color-mix(in srgb, var(--review-accent) 35%, var(--muted));
	font-variant-numeric: tabular-nums;
}
.nordisk-review__toc-text {
	font-size: .88rem;
	font-weight: 650;
	letter-spacing: -.015em;
	line-height: 1.3;
}
.nordisk-review__split,
.nordisk-review__prose h2 {
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-review__cta-card {
	padding: 1.25rem;
	border-radius: 22px;
	background:
		radial-gradient(280px 140px at 100% 0%, color-mix(in srgb, var(--review-accent) 35%, transparent), transparent 70%),
		linear-gradient(160deg, #061820, #0d322c);
	border: none;
	color: #eef7f1;
	box-shadow: 0 14px 34px rgba(4, 20, 24, .07);
}
.nordisk-review__cta-card-label {
	margin: 0;
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(238, 247, 241, .65);
}
.nordisk-review__cta-card-bonus {
	margin: .45rem 0 1.1rem;
	font-size: 1.02rem;
	font-weight: 750;
	line-height: 1.35;
}
.nordisk-review__cta-card .nordisk-btn--solid {
	width: 100%;
	background: #f4ffe8;
	color: var(--fjord);
}
.nordisk-review__cta-card .nordisk-btn--solid:hover {
	background: #fff;
}
.nordisk-review__back {
	display: inline-block;
	margin-top: .85rem;
	color: rgba(238, 247, 241, .75);
	font-size: .84rem;
	font-weight: 650;
	text-decoration: none;
}
.nordisk-review__back:hover { color: #fff; }

/* ===== Avatars ===== */
.nordisk-avatar {
	--avatar-size: 48px;
	display: inline-grid;
	place-items: center;
	width: var(--avatar-size);
	height: var(--avatar-size);
	flex: 0 0 auto;
	border-radius: 50%;
	overflow: hidden;
	background: #0a1c22;
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(7, 24, 32, .12);
}
.nordisk-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nordisk-avatar__fallback {
	font-size: calc(var(--avatar-size) * .34);
	font-weight: 800;
	letter-spacing: -.03em;
	color: #f4ffe8;
}
.nordisk-avatar--sm { box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(7, 24, 32, .1); }
.nordisk-avatar--xl {
	border-radius: 28px;
	box-shadow:
		0 0 0 4px #fff,
		0 0 0 5px rgba(18, 138, 114, .35),
		0 22px 48px rgba(4, 20, 24, .22);
}
.nordisk-avatar--ring {
	background:
		radial-gradient(120% 80% at 50% 0%, rgba(214, 255, 75, .2), transparent 55%),
		#061820;
}

/* ===== Author profiles ===== */
.nordisk-author {
	overflow-x: clip;
	max-width: 100%;
}
.nordisk-author__hero {
	position: relative;
	width: 100%;
	padding: 3.2rem 0 2.8rem;
	overflow: hidden;
	background:
		radial-gradient(70% 90% at 8% 15%, rgba(214, 255, 75, .22), transparent 58%),
		radial-gradient(65% 80% at 92% 8%, rgba(18, 138, 114, .22), transparent 55%),
		radial-gradient(50% 70% at 50% 110%, rgba(60, 203, 255, .12), transparent 60%),
		linear-gradient(165deg, #071820 0%, #0d322c 55%, #113a42 100%);
	color: #eef7f1;
}
.nordisk-author__hero-glow {
	position: absolute;
	inset: auto 0 -30% 35%;
	height: 75%;
	background: radial-gradient(closest-side, rgba(214, 255, 75, .14), transparent 70%);
	pointer-events: none;
}
/* Author content uses global --shell so it lines up with header logo/nav */
.nordisk-author__hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: end;
}
@media (min-width: 820px) {
	.nordisk-author__hero-grid {
		grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
		gap: 2.5rem;
		align-items: center;
	}
}
.nordisk-author__portrait {
	margin: 0;
	display: grid;
	justify-items: center;
	gap: .75rem;
}
.nordisk-author__portrait-cap {
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(238, 247, 241, .62);
}
.nordisk-author--kevin .nordisk-author__portrait-cap { color: color-mix(in srgb, #d6ff4b 70%, #fff); }
.nordisk-author--alex .nordisk-author__portrait-cap { color: color-mix(in srgb, #7dd3c0 80%, #fff); }
.nordisk-author__intro .nordisk-kicker { color: rgba(238, 247, 241, .7); }
.nordisk-author__intro .nordisk-kicker__dot { background: #d6ff4b; }
.nordisk-author__name {
	margin: .35rem 0 0;
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	font-weight: 800;
	letter-spacing: -.05em;
	line-height: .95;
	color: #fff;
}
.nordisk-author__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 1.25rem;
}
.nordisk-author__stat {
	min-width: 7.5rem;
	padding: .7rem .95rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	display: grid;
	gap: .15rem;
}
.nordisk-author__stat strong {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: #f4ffe8;
}
.nordisk-author__stat span {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(238, 247, 241, .55);
}
.nordisk-author__body {
	padding: 2.4rem 0 4.5rem;
	overflow: visible;
}
.nordisk-author__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	overflow: visible;
}
@media (min-width: 900px) {
	.nordisk-author__layout {
		grid-template-columns: minmax(260px, .75fr) minmax(0, 1.45fr);
		gap: 2.25rem;
		align-items: start;
	}
}
.nordisk-author__main {
	display: grid;
	gap: 1.25rem;
	min-width: 0;
}
.nordisk-author__facts,
.nordisk-author__work,
.nordisk-author__bio-block {
	padding: 1.25rem;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(4, 20, 24, .06);
}
.nordisk-author__bio-text {
	margin: 0;
	max-width: 62ch;
	color: rgba(7, 24, 32, .78);
	font-weight: 500;
	line-height: 1.65;
	font-size: 1.02rem;
}
.nordisk-author__side {
	position: sticky;
	top: calc(var(--header-h) + 1rem);
	align-self: start;
	height: fit-content;
}
.nordisk-author__facts h2,
.nordisk-author__work-head h2 {
	margin: 0 0 .35rem;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -.02em;
}
.nordisk-author__work-head {
	margin-bottom: 1.1rem;
}
.nordisk-author__work-head p {
	margin: 0;
	color: var(--muted);
	font-size: .92rem;
	font-weight: 500;
}
.nordisk-author__facts ul {
	list-style: none;
	margin: .9rem 0 0;
	padding: 0;
	display: grid;
	gap: .7rem;
}
.nordisk-author__facts li {
	position: relative;
	padding-left: 1.1rem;
	font-size: .94rem;
	font-weight: 600;
	color: rgba(7, 24, 32, .78);
}
.nordisk-author__facts li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: .4rem;
	height: .4rem;
	border-radius: 50%;
	background: var(--pine);
}
.nordisk-author__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .7rem;
}
.nordisk-author__card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: .85rem;
	align-items: center;
	padding: .9rem 1rem;
	border-radius: 16px;
	border: 1px solid var(--line);
	text-decoration: none;
	color: inherit;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nordisk-author__card:hover {
	background: rgba(18, 138, 114, .04);
	border-color: rgba(18, 138, 114, .22);
	transform: translateY(-1px);
}
.nordisk-author__card-rank {
	font-weight: 800;
	color: var(--pine);
	font-variant-numeric: tabular-nums;
}
.nordisk-author__card-main {
	display: grid;
	gap: .15rem;
	min-width: 0;
}
.nordisk-author__card-main strong {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -.02em;
}
.nordisk-author__card-main em {
	font-style: normal;
	font-size: .84rem;
	font-weight: 500;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nordisk-author__card-score {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--fjord);
}
.nordisk-author__empty {
	margin: 0;
	color: var(--muted);
	font-weight: 500;
}
@media (max-width: 640px) {
	.nordisk-author__side { position: static; }
	.nordisk-author__card {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"rank score"
			"main main";
	}
	.nordisk-author__card-rank { grid-area: rank; }
	.nordisk-author__card-score { grid-area: score; justify-self: end; }
	.nordisk-author__card-main { grid-area: main; }
	.nordisk-author__card-main em { white-space: normal; }
}

/* ===== Player feedback (Trustpilot-style cards) ===== */
.nordisk-feedback {
	padding: 2.2rem 0 1.2rem;
	background: #fff;
	scroll-margin-top: calc(var(--header-h) + 1rem);
	border-top: 1px solid var(--line);
}
.nordisk-feedback__head { margin-bottom: 1.25rem; }
.nordisk-feedback__head-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}
.nordisk-feedback__title {
	margin: 0;
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
	font-weight: 800;
	letter-spacing: -.035em;
	color: #1a1a1a;
}
.nordisk-feedback__lead {
	margin: .4rem 0 0;
	color: #6b7280;
	font-weight: 500;
	font-size: .95rem;
}
.nordisk-feedback__write-top {
	flex: 0 0 auto;
}
.nordisk-feedback__notice {
	margin: 0 0 1rem;
	padding: .85rem 1rem;
	border-radius: 14px;
	font-weight: 650;
	font-size: .92rem;
}
.nordisk-feedback__notice--ok {
	background: rgba(0, 182, 122, .1);
	border: 1px solid rgba(0, 182, 122, .28);
	color: #0b6b4d;
}
.nordisk-feedback__notice--err {
	background: rgba(194, 65, 12, .08);
	border: 1px solid rgba(194, 65, 12, .25);
	color: #9a3412;
}
.nordisk-feedback__empty {
	margin: 0 0 1rem;
	color: var(--muted);
	font-weight: 500;
}
.nordisk-feedback {
	overflow-x: hidden;
	max-width: 100%;
}
.nordisk-feedback__carousel {
	position: relative;
	margin: 0;
	max-width: 100%;
	padding: .35rem 0 1rem;
	overflow: hidden;
	isolation: isolate;
}
.nordisk-feedback__carousel--nav {
	padding-inline: 2.75rem;
}
.nordisk-feedback__track {
	list-style: none;
	margin: 0;
	padding: .2rem 0 .35rem;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(240px, 300px);
	gap: .85rem;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	width: 100%;
	max-width: 100%;
}
/* ≤3 reviews: stretch evenly across content width, no carousel chrome */
.nordisk-feedback__carousel:not(.nordisk-feedback__carousel--nav) .nordisk-feedback__track {
	grid-auto-flow: unset;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	grid-auto-columns: unset;
	overflow: visible;
	scroll-snap-type: none;
}
.nordisk-feedback__track::-webkit-scrollbar { display: none; }
.nordisk-feedback.is-expanded .nordisk-feedback__track {
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
	grid-auto-columns: unset;
	overflow: hidden;
	scroll-snap-type: none;
}
.nordisk-feedback__card {
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 1.15rem 1.15rem 0.85rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}
.nordisk-feedback__who {
	display: flex;
	align-items: center;
	gap: .7rem;
	margin-bottom: .75rem;
}
.nordisk-feedback__avatar {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	background: var(--avatar-bg, #7c5cff);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: -.02em;
}
.nordisk-feedback__who-text {
	display: grid;
	gap: .1rem;
	min-width: 0;
}
.nordisk-feedback__who-text strong {
	font-size: .95rem;
	font-weight: 800;
	color: #111;
	letter-spacing: -.015em;
}
.nordisk-feedback__who-text time {
	font-size: .8rem;
	font-weight: 500;
	color: #9ca3af;
}
.nordisk-feedback__stars {
	display: inline-flex;
	gap: .1rem;
	color: #e5e7eb;
	font-size: 1.05rem;
	line-height: 1;
	margin-bottom: .55rem;
}
.nordisk-feedback__star.is-on { color: #fbbf24; }
.nordisk-feedback__card-title {
	margin: 0 0 .35rem;
	font-size: .98rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: #111;
}
.nordisk-feedback__body { margin-bottom: .55rem; }
.nordisk-feedback__card-text {
	margin: 0;
	color: #1f2937;
	font-weight: 500;
	font-size: .92rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.nordisk-feedback__body.is-open .nordisk-feedback__card-text {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}
.nordisk-feedback__more {
	margin: .35rem 0 0;
	padding: 0;
	border: 0;
	background: none;
	color: #2563eb;
	font: inherit;
	font-size: .9rem;
	font-weight: 700;
	cursor: pointer;
}
.nordisk-feedback__more:hover { text-decoration: underline; }
.nordisk-feedback__reply-box {
	margin: .35rem 0 .65rem;
}
.nordisk-feedback__reply-box summary {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	cursor: pointer;
	color: #6b7280;
	font-size: .88rem;
	font-weight: 650;
	user-select: none;
}
.nordisk-feedback__reply-box summary::-webkit-details-marker { display: none; }
.nordisk-feedback__reply-box summary:hover { color: #111; }
.nordisk-feedback__reply-ico {
	display: inline-grid;
	place-items: center;
	width: 1.1rem;
	height: 1.1rem;
	color: #9ca3af;
}
.nordisk-feedback__reply-ico svg { width: 1rem; height: 1rem; }
.nordisk-feedback__reply {
	margin-top: .65rem;
	padding: .85rem .95rem;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
}
.nordisk-feedback__reply-label {
	margin: 0 0 .35rem;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem .7rem;
	align-items: baseline;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pine);
}
.nordisk-feedback__reply-label time {
	font-weight: 650;
	letter-spacing: 0;
	text-transform: none;
	color: #9ca3af;
}
.nordisk-feedback__reply > p:last-child {
	margin: 0;
	font-size: .9rem;
	font-weight: 500;
	color: #374151;
	line-height: 1.5;
}
.nordisk-feedback__actions {
	margin-top: auto;
	padding-top: .7rem;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: .35rem;
}
.nordisk-feedback__action {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .4rem .55rem;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #6b7280;
	font: inherit;
	font-size: .82rem;
	font-weight: 650;
	cursor: pointer;
}
.nordisk-feedback__action svg {
	width: .95rem;
	height: .95rem;
}
.nordisk-feedback__action em {
	font-style: normal;
	font-variant-numeric: tabular-nums;
}
.nordisk-feedback__action:hover,
.nordisk-feedback__action.is-on {
	background: #f3f4f6;
	color: #111;
}
.nordisk-feedback__nav {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #111;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(16, 24, 40, .12);
	transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.nordisk-feedback__carousel--nav .nordisk-feedback__nav {
	display: grid;
}
.nordisk-feedback__nav svg { width: 1.15rem; height: 1.15rem; }
.nordisk-feedback__nav:hover { background: #f9fafb; }
.nordisk-feedback__nav--prev { left: .2rem; }
.nordisk-feedback__nav--next { right: .2rem; }
.nordisk-feedback__nav.is-disabled {
	opacity: .35;
	pointer-events: none;
}
.nordisk-feedback.is-expanded .nordisk-feedback__nav { display: none; }

/* Desktop: equal cards across the shell; arrows only when --nav */
@media (min-width: 900px) {
	.nordisk-feedback__carousel--nav {
		padding: .45rem 3rem 1.1rem;
	}
	.nordisk-feedback__carousel--nav .nordisk-feedback__track {
		grid-auto-columns: calc((100% - 2rem) / 3);
		gap: 1rem;
	}
	.nordisk-feedback__carousel:not(.nordisk-feedback__carousel--nav) .nordisk-feedback__track {
		gap: 1rem;
	}
	.nordisk-feedback__card {
		box-shadow: 0 6px 18px rgba(16, 24, 40, .07);
	}
	.nordisk-feedback__nav--prev { left: .35rem; }
	.nordisk-feedback__nav--next { right: .35rem; }
}
.nordisk-feedback__seeall-wrap {
	display: flex;
	justify-content: center;
	margin: .25rem 0 1.5rem;
}
.nordisk-feedback__seeall {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .7rem 1.2rem;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	color: #111;
	font: inherit;
	font-size: .92rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .18s ease;
}
.nordisk-feedback__seeall:hover { background: #e5e7eb; }
.nordisk-feedback__seeall span {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	font-size: .85rem;
}
.nordisk-feedback-form-section {
	padding: 0 0 3.5rem;
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-feedback__form {
	padding: 1.35rem 1.35rem 1.45rem;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(4, 20, 24, .06);
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.nordisk-feedback__form-title,
.nordisk-feedback__form h3 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--fjord);
}
.nordisk-feedback__form-lead {
	margin: .4rem 0 1.1rem;
	color: var(--muted);
	font-size: .92rem;
	font-weight: 500;
}
.nordisk-feedback__field {
	display: grid;
	gap: .35rem;
	margin-bottom: .9rem;
}
.nordisk-feedback__field label,
.nordisk-feedback__label {
	font-size: .82rem;
	font-weight: 750;
	color: var(--fjord);
}
.nordisk-feedback__field input,
.nordisk-feedback__field textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: .7rem .85rem;
	font: inherit;
	font-weight: 500;
	color: var(--ink);
	background: #fff;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.nordisk-feedback__field input:focus,
.nordisk-feedback__field textarea:focus {
	outline: none;
	border-color: rgba(18, 138, 114, .45);
	box-shadow: 0 0 0 3px rgba(18, 138, 114, .12);
}
.nordisk-feedback__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: .9rem;
}
@media (min-width: 640px) {
	.nordisk-feedback__row { grid-template-columns: 1fr 1fr; }
}
.nordisk-feedback__rater {
	position: relative;
	display: inline-flex;
	flex-direction: row-reverse;
	gap: .15rem;
	max-width: 100%;
}
.nordisk-feedback__rater label {
	position: relative;
	cursor: pointer;
	font-size: 1.65rem;
	line-height: 1;
	color: rgba(7, 24, 32, .18);
	transition: color .15s ease, transform .15s ease;
}
.nordisk-feedback__rater input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	opacity: 0;
	pointer-events: none;
}
.nordisk-feedback__rater label:hover,
.nordisk-feedback__rater label:hover ~ label,
.nordisk-feedback__rater label:has(input:checked),
.nordisk-feedback__rater label:has(input:checked) ~ label {
	color: #fbbf24;
}
.nordisk-feedback__rater label:hover { transform: scale(1.08); }
.nordisk-feedback__form .nordisk-btn { margin-top: .25rem; }
.nordisk-feedback__form-note {
	margin: .7rem 0 0;
	font-size: .78rem;
	color: var(--muted);
	font-weight: 500;
}
.nordisk-feedback__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
@media (max-width: 700px) {
	.nordisk-feedback__nav { display: none !important; }
	.nordisk-feedback__carousel,
	.nordisk-feedback__carousel--nav {
		padding: .15rem 0 1rem;
	}
	.nordisk-feedback__carousel--nav .nordisk-feedback__track {
		grid-auto-flow: column;
		grid-template-columns: none;
		grid-auto-columns: min(78vw, 280px);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}
	.nordisk-feedback__carousel:not(.nordisk-feedback__carousel--nav) .nordisk-feedback__track {
		grid-template-columns: 1fr;
	}
}
