:root {
	--nhe-ink: #111114;
	--nhe-ink-soft: #202025;
	--nhe-paper: #f7f2e8;
	--nhe-paper-deep: #e9e0d2;
	--nhe-white: #ffffff;
	--nhe-violet: #8f73cf;
	--nhe-cyan: #cc2333;
	--nhe-coral: #cc2333;
	--nhe-lime: #cc2333;
	--nhe-pink: #8f73cf;
	--nhe-blue: #8f73cf;
	--nhe-text: #202025;
	--nhe-muted: #5d5a60;
	--nhe-line: rgba(17, 17, 20, 0.16);
	--nhe-serif: Georgia, "Times New Roman", serif;
	--nhe-sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
	--nhe-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--nhe-shell: 1380px;
	--nhe-radius-sm: 6px;
	--nhe-radius: 8px;
	--nhe-space-1: 0.25rem;
	--nhe-space-2: 0.5rem;
	--nhe-space-3: 0.75rem;
	--nhe-space-4: 1rem;
	--nhe-space-5: 1.25rem;
	--nhe-space-6: 1.5rem;
	--nhe-space-8: 2rem;
	--nhe-space-10: 2.5rem;
	--nhe-space-12: 3rem;
	--nhe-space-16: 4rem;
	--nhe-space-20: 5rem;
}

html {
	scroll-behavior: smooth;
}

body.nhe-editorial-site {
	margin: 0;
	background: var(--nhe-paper);
	color: var(--nhe-text);
	font-family: var(--nhe-sans);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.nhe-editorial-site #nhe-main {
	background: var(--nhe-paper);
}

body.nhe-editorial-site #nhe-main > .nhe-section:not(.nhe-section-white):not(.nhe-section-deep):not(.nhe-section-dark) {
	background: var(--nhe-paper);
}

.nhe-editorial-site *,
.nhe-editorial-site *::before,
.nhe-editorial-site *::after {
	box-sizing: border-box;
}

.nhe-editorial-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

.nhe-editorial-site a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.nhe-editorial-site button,
.nhe-editorial-site input {
	font: inherit;
}

.nhe-shell {
	width: min(calc(100% - 2rem), var(--nhe-shell));
	margin-inline: auto;
}

.nhe-skip-link {
	position: fixed;
	z-index: 99999;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.75rem 1rem;
	background: var(--nhe-cyan);
	color: var(--nhe-ink);
	font-weight: 800;
	transform: translateY(-160%);
}

.nhe-skip-link:focus {
	transform: translateY(0);
}

.nhe-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	color: var(--nhe-white);
	background: var(--nhe-ink);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-bar .nhe-site-header {
	top: 32px;
}

.nhe-utility {
	color: #c5ccd6;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nhe-utility-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	justify-content: space-between;
	padding-block: 0.42rem;
}

.nhe-utility-inner span:last-child {
	text-align: right;
}

.nhe-header-main {
	display: grid;
	grid-template-columns: 250px 1fr auto;
	gap: var(--nhe-space-6);
	align-items: center;
	min-height: 78px;
}

.nhe-logo {
	display: block;
	width: 245px;
	text-decoration: none;
}

.nhe-logo img {
	width: 100%;
}

.nhe-menu-shell {
	display: none;
}

.nhe-primary-nav {
	display: flex;
	justify-content: center;
	gap: clamp(1rem, 2vw, 1.8rem);
}

.nhe-primary-nav a {
	position: relative;
	color: #f5f6f8;
	font-size: 1rem;
	font-weight: 750;
	text-decoration: none;
}

.nhe-primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: -0.45rem;
	left: 0;
	height: 2px;
	background: var(--nhe-cyan);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.nhe-primary-nav a:hover::after,
.nhe-primary-nav a:focus-visible::after {
	transform: scaleX(1);
}

.nhe-header-cta,
.nhe-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--nhe-space-2);
	min-height: 44px;
	padding: 0.7rem 1rem;
	border: 1px solid var(--nhe-cyan);
	border-radius: 999px;
	background: var(--nhe-cyan);
	color: var(--nhe-ink);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nhe-header-cta {
	border-color: var(--nhe-lime);
	background: transparent;
	color: var(--nhe-white);
}

.nhe-hero .nhe-button:not(.nhe-button-light) {
	border-color: var(--nhe-lime);
	background: var(--nhe-lime);
	color: var(--nhe-ink);
}

.nhe-header-cta:hover,
.nhe-button:hover {
	background: transparent;
	color: var(--nhe-white);
	transform: translateY(-1px);
}

.nhe-button-light {
	border-color: var(--nhe-line);
	background: transparent;
	color: var(--nhe-ink);
}

.nhe-button-light:hover {
	border-color: var(--nhe-ink);
	color: var(--nhe-ink);
}

.nhe-menu-toggle {
	display: none;
	width: 46px;
	height: 42px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--nhe-radius-sm);
	background: transparent;
	cursor: pointer;
	list-style: none;
}

.nhe-menu-toggle::-webkit-details-marker {
	display: none;
}

.nhe-menu-toggle::marker {
	content: "";
}

.nhe-menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: var(--nhe-white);
}

.nhe-section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.nhe-section-white {
	background: var(--nhe-white);
}

.nhe-section-deep {
	background: var(--nhe-paper-deep);
}

.nhe-section-dark {
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-eyebrow,
.nhe-kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--nhe-space-2);
	margin: 0 0 var(--nhe-space-4);
	color: var(--nhe-violet);
	font-family: var(--nhe-mono);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
}

.nhe-eyebrow::before,
.nhe-kicker::before {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.nhe-section-dark .nhe-eyebrow {
	color: var(--nhe-cyan);
}

.nhe-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
	gap: var(--nhe-space-10);
	align-items: end;
	margin-bottom: var(--nhe-space-12);
	padding-bottom: var(--nhe-space-8);
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-section-dark .nhe-section-head {
	border-color: rgba(255, 255, 255, 0.16);
}

.nhe-display,
.nhe-section-title,
.nhe-article-title,
.nhe-archive-title {
	margin: 0;
	color: var(--nhe-ink);
	font-family: var(--nhe-serif);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.98;
	text-wrap: balance;
}

.nhe-display {
	max-width: 850px;
	font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.nhe-display em {
	color: var(--nhe-violet);
	font-weight: 400;
}

.nhe-section-title {
	max-width: 780px;
	font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.nhe-section-dark .nhe-section-title,
.nhe-section-dark .nhe-display {
	color: var(--nhe-white);
}

.nhe-section-intro {
	margin: 0;
	color: var(--nhe-muted);
	font-size: 1.02rem;
}

.nhe-section-dark .nhe-section-intro {
	color: #b9c1cc;
}

.nhe-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4rem, 9vw, 8rem) var(--nhe-space-16);
	background:
		linear-gradient(90deg, transparent 0 64%, rgba(200, 242, 42, 0.08) 64% 100%),
		var(--nhe-paper);
}

.nhe-hero::before {
	position: absolute;
	top: 0;
	right: 8%;
	width: 1px;
	height: 100%;
	background: var(--nhe-line);
	content: "";
}

.nhe-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.nhe-hero-deck {
	max-width: 680px;
	margin: var(--nhe-space-8) 0;
	color: #48505b;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
}

.nhe-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nhe-space-3);
}

.nhe-hero-visual {
	position: relative;
}

.nhe-hero-visual::before {
	position: absolute;
	z-index: 2;
	top: -1.25rem;
	right: -1.25rem;
	width: 7.5rem;
	height: 7.5rem;
	border: 1.4rem solid var(--nhe-cyan);
	border-radius: 50%;
	content: "";
	mix-blend-mode: multiply;
}

.nhe-hero-visual img {
	width: 100%;
	aspect-ratio: 16 / 11;
	border-radius: var(--nhe-radius);
	object-fit: cover;
}

.nhe-hero-story {
	position: absolute;
	right: -1.5rem;
	bottom: -2rem;
	width: min(88%, 440px);
	padding: var(--nhe-space-5);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
	box-shadow: 0 1.25rem 3.5rem rgba(16, 19, 26, 0.16);
}

.nhe-hero-story h2 {
	margin: 0.35rem 0 0;
	font-family: var(--nhe-serif);
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	line-height: 1.08;
}

.nhe-hero-story a {
	text-decoration: none;
}

.nhe-proof {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: var(--nhe-space-20);
	border-top: 1px solid var(--nhe-line);
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-proof div {
	padding: var(--nhe-space-5);
	border-right: 1px solid var(--nhe-line);
}

.nhe-proof div:last-child {
	border-right: 0;
}

.nhe-proof strong,
.nhe-proof span {
	display: block;
}

.nhe-proof strong {
	color: var(--nhe-ink);
	font-family: var(--nhe-serif);
	font-size: 1.18rem;
}

.nhe-proof span {
	margin-top: 0.2rem;
	color: var(--nhe-muted);
	font-family: var(--nhe-mono);
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nhe-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--nhe-space-5);
}

.nhe-card {
	overflow: hidden;
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
}

.nhe-card-media {
	display: block;
	overflow: hidden;
	background: var(--nhe-ink);
}

.nhe-card-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 260ms ease;
}

.nhe-card:hover .nhe-card-media img {
	transform: scale(1.025);
}

.nhe-card-body {
	padding: var(--nhe-space-6);
}

.nhe-card h3 {
	margin: 0 0 var(--nhe-space-3);
	font-family: var(--nhe-serif);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.nhe-card h3 a {
	text-decoration: none;
}

.nhe-card h3 a:hover {
	color: var(--nhe-violet);
}

.nhe-card p {
	margin: 0;
	color: var(--nhe-muted);
	font-size: 0.94rem;
}

.nhe-card-meta {
	display: flex;
	justify-content: space-between;
	gap: var(--nhe-space-3);
	margin-top: var(--nhe-space-5);
	padding-top: var(--nhe-space-4);
	border-top: 1px solid var(--nhe-line);
	color: var(--nhe-muted);
	font-family: var(--nhe-mono);
	font-size: 0.64rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.nhe-authority-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
	gap: clamp(2rem, 6vw, 6rem);
}

.nhe-authority-copy {
	padding: clamp(1.5rem, 4vw, 3.5rem);
	border-radius: var(--nhe-radius);
	background: var(--nhe-ink);
	color: #d8dee7;
}

.nhe-authority-copy h3 {
	margin-top: 0;
	color: var(--nhe-white);
	font-family: var(--nhe-serif);
	font-size: clamp(2rem, 4vw, 3.7rem);
	line-height: 1;
}

.nhe-authority-copy p:first-of-type::first-letter {
	float: left;
	margin: 0.08em 0.12em 0 0;
	color: var(--nhe-cyan);
	font-family: var(--nhe-serif);
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 0.8;
}

.nhe-authority-index {
	display: grid;
	align-content: start;
}

.nhe-index-item {
	display: grid;
	grid-template-columns: 2.2rem 1fr;
	gap: var(--nhe-space-4);
	padding: var(--nhe-space-5) 0;
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-index-item span {
	color: var(--nhe-violet);
	font-family: var(--nhe-mono);
	font-size: 0.72rem;
}

.nhe-index-item strong {
	display: block;
	margin-bottom: var(--nhe-space-2);
	font-family: var(--nhe-serif);
	font-size: 1.25rem;
}

.nhe-index-item p {
	margin: 0;
	color: var(--nhe-muted);
	font-size: 0.88rem;
}

.nhe-desk-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--nhe-space-4);
}

.nhe-desk {
	position: relative;
	min-height: 250px;
	padding: var(--nhe-space-6);
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease;
}

.nhe-desk:nth-child(2n) {
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-desk:hover {
	border-color: var(--nhe-violet);
	transform: translateY(-4px);
}

.nhe-desk-number {
	display: block;
	color: var(--nhe-violet);
	font-family: var(--nhe-mono);
	font-size: 0.7rem;
}

.nhe-desk:nth-child(2n) .nhe-desk-number {
	color: var(--nhe-cyan);
}

.nhe-desk h3 {
	margin: var(--nhe-space-10) 0 var(--nhe-space-4);
	font-family: var(--nhe-serif);
	font-size: 2rem;
	line-height: 1;
}

.nhe-desk p {
	margin: 0;
	color: var(--nhe-muted);
	font-size: 0.9rem;
}

.nhe-desk:nth-child(2n) p {
	color: #b9c1cc;
}

.nhe-desk-arrow {
	position: absolute;
	right: var(--nhe-space-5);
	bottom: var(--nhe-space-5);
	font-size: 1.5rem;
}

.nhe-popular-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 5vw, 5rem);
}

.nhe-popular-feature img {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--nhe-radius);
	object-fit: cover;
}

.nhe-popular-list {
	counter-reset: popular;
}

.nhe-popular-row {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr) auto;
	gap: var(--nhe-space-5);
	align-items: center;
	padding: var(--nhe-space-5) 0;
	border-bottom: 1px solid var(--nhe-line);
	text-decoration: none;
}

.nhe-popular-row::before {
	color: var(--nhe-violet);
	font-family: var(--nhe-mono);
	font-size: 0.75rem;
	content: counter(popular, decimal-leading-zero);
	counter-increment: popular;
}

.nhe-popular-row strong {
	font-family: var(--nhe-serif);
	font-size: 1.2rem;
	line-height: 1.2;
}

.nhe-popular-row span {
	color: var(--nhe-muted);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	text-transform: uppercase;
}

.nhe-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--nhe-space-5);
	margin-top: var(--nhe-space-12);
}

.nhe-process-item {
	position: relative;
	padding-top: var(--nhe-space-10);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nhe-process-item::before {
	position: absolute;
	top: -0.85rem;
	left: 0;
	display: grid;
	width: 1.7rem;
	height: 1.7rem;
	place-items: center;
	border-radius: 50%;
	background: var(--nhe-cyan);
	color: var(--nhe-ink);
	font-family: var(--nhe-mono);
	font-size: 0.64rem;
	content: attr(data-step);
}

.nhe-process-item h3 {
	margin: 0 0 var(--nhe-space-3);
	font-family: var(--nhe-serif);
	font-size: 1.35rem;
}

.nhe-process-item p {
	margin: 0;
	color: #adb7c3;
	font-size: 0.9rem;
}

.nhe-signal-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 6vw, 6rem);
}

.nhe-signal-art {
	display: grid;
	min-height: 480px;
	padding: var(--nhe-space-10);
	place-items: center;
	border-radius: var(--nhe-radius);
	background:
		linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.12) 45% 55%, transparent 55%),
		var(--nhe-violet);
}

.nhe-signal-wheel {
	display: grid;
	width: min(72%, 330px);
	aspect-ratio: 1;
	place-items: center;
	border: 3rem solid var(--nhe-paper);
	border-radius: 50%;
	background: var(--nhe-ink);
	box-shadow: 0 0 0 1.5rem var(--nhe-cyan);
	color: var(--nhe-white);
	font-family: var(--nhe-serif);
	font-size: clamp(4rem, 10vw, 7rem);
	font-weight: 700;
}

.nhe-signal-copy h3 {
	margin-top: 0;
	font-family: var(--nhe-serif);
	font-size: clamp(2.3rem, 5vw, 4.5rem);
	line-height: 1;
}

.nhe-signal-copy p {
	color: #444c57;
}

.nhe-faq-list {
	border-top: 1px solid var(--nhe-line);
}

.nhe-faq-list details {
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-faq-list summary {
	display: flex;
	justify-content: space-between;
	gap: var(--nhe-space-6);
	padding: var(--nhe-space-5) 0;
	font-family: var(--nhe-serif);
	font-size: 1.25rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.nhe-faq-list summary::-webkit-details-marker {
	display: none;
}

.nhe-faq-list summary::after {
	display: grid;
	flex: 0 0 1.75rem;
	width: 1.75rem;
	height: 1.75rem;
	place-items: center;
	border-radius: 50%;
	background: var(--nhe-ink);
	color: var(--nhe-white);
	font-family: var(--nhe-sans);
	font-size: 1rem;
	content: "+";
}

.nhe-faq-list details[open] summary::after {
	background: var(--nhe-violet);
	content: "−";
}

.nhe-faq-list details p {
	max-width: 850px;
	margin: 0;
	padding: 0 0 var(--nhe-space-6);
	color: var(--nhe-muted);
}

.nhe-site-footer {
	padding-top: var(--nhe-space-16);
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1.15fr 0.7fr 0.7fr;
	gap: var(--nhe-space-10);
	padding-bottom: var(--nhe-space-12);
}

.nhe-footer-categories {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: var(--nhe-space-6);
	align-content: start;
}

.nhe-footer-categories .nhe-footer-label {
	grid-column: 1 / -1;
}

.nhe-footer-brand img {
	width: min(100%, 250px);
	margin-bottom: var(--nhe-space-5);
}

.nhe-footer-brand p {
	max-width: 420px;
	margin: 0;
	color: #adb7c3;
	font-size: 0.9rem;
}

.nhe-footer-grid > div:not(.nhe-footer-brand) a {
	display: block;
	margin-bottom: var(--nhe-space-3);
	color: #dce1e8;
	font-size: 0.9rem;
	text-decoration: none;
}

.nhe-footer-grid > div:not(.nhe-footer-brand) a:hover {
	color: var(--nhe-cyan);
}

.nhe-footer-label {
	margin: 0 0 var(--nhe-space-5);
	color: var(--nhe-cyan);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nhe-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: var(--nhe-space-6);
	padding-block: var(--nhe-space-5);
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: #8993a0;
	font-family: var(--nhe-mono);
	font-size: 0.62rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nhe-archive-hero,
.nhe-article-hero {
	padding-block: clamp(3.5rem, 8vw, 7rem);
	background: var(--nhe-paper-deep);
}

.nhe-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nhe-space-2);
	margin-bottom: var(--nhe-space-8);
	color: var(--nhe-muted);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	text-transform: uppercase;
}

.nhe-archive-title {
	max-width: 920px;
	font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.nhe-archive-description {
	max-width: 760px;
	margin: var(--nhe-space-6) 0 0;
	color: #4f5661;
	font-size: 1.1rem;
}

.nhe-archive-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 0;
	margin-top: calc(var(--nhe-space-16) * -1);
	overflow: hidden;
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
}

.nhe-archive-feature img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
}

.nhe-archive-feature-copy {
	align-self: center;
	padding: clamp(2rem, 5vw, 4rem);
}

.nhe-archive-feature-copy h2 {
	margin: 0 0 var(--nhe-space-5);
	font-family: var(--nhe-serif);
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1;
}

.nhe-archive-feature-copy h2 a {
	text-decoration: none;
}

.nhe-pagination {
	margin-top: var(--nhe-space-12);
}

.nhe-archive-more {
	margin-top: var(--nhe-space-20);
}

.nhe-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nhe-space-2);
	justify-content: center;
}

.nhe-pagination .page-numbers {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	padding: 0.5rem;
	place-items: center;
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius-sm);
	background: var(--nhe-white);
	text-decoration: none;
}

.nhe-pagination .current,
.nhe-pagination a:hover {
	border-color: var(--nhe-violet);
	background: var(--nhe-violet);
	color: var(--nhe-white);
}

.nhe-article-head {
	max-width: 1000px;
}

.nhe-article-title {
	font-size: clamp(3rem, 7vw, 6.4rem);
}

.nhe-article-deck {
	max-width: 780px;
	margin: var(--nhe-space-6) 0;
	color: #4b535e;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.nhe-article-byline {
	display: flex;
	flex-wrap: wrap;
	gap: var(--nhe-space-4);
	align-items: center;
	color: var(--nhe-muted);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	text-transform: uppercase;
}

.nhe-article-featured {
	width: min(calc(100% - 2rem), var(--nhe-shell));
	margin: calc(var(--nhe-space-12) * -1) auto var(--nhe-space-12);
}

.nhe-article-featured img {
	width: 100%;
	max-height: 690px;
	border-radius: var(--nhe-radius);
	object-fit: cover;
}

.nhe-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	padding-bottom: var(--nhe-space-20);
}

.nhe-article-content {
	min-width: 0;
	color: #292e36;
	font-family: var(--nhe-serif);
	font-size: 1.14rem;
	line-height: 1.82;
}

.nhe-article-content > p:first-child {
	font-size: 1.25rem;
}

.nhe-article-content > p:first-child::first-letter {
	float: left;
	margin: 0.09em 0.11em 0 0;
	color: var(--nhe-violet);
	font-size: 4.7rem;
	font-weight: 700;
	line-height: 0.75;
}

.nhe-article-content h2,
.nhe-article-content h3 {
	color: var(--nhe-ink);
	font-family: var(--nhe-serif);
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.nhe-article-content h2 {
	margin: 2.6em 0 0.7em;
	font-size: clamp(2rem, 4vw, 3rem);
}

.nhe-article-content h3 {
	margin: 2em 0 0.65em;
	font-size: 1.6rem;
}

.nhe-article-content a {
	color: #4f2ed7;
}

.nhe-article-content ul,
.nhe-article-content ol {
	padding-left: 1.3em;
}

.nhe-article-content li {
	margin-bottom: 0.55em;
}

.nhe-article-content blockquote {
	margin: var(--nhe-space-8) 0;
	padding: var(--nhe-space-6);
	border-left: 6px solid var(--nhe-cyan);
	background: var(--nhe-white);
	color: var(--nhe-ink);
	font-size: 1.25rem;
}

.nhe-article-content .nhe-key-takeaway,
.nhe-article-content .nhe-article-faq,
.nhe-article-content .nhe-related-inline {
	margin: var(--nhe-space-8) 0;
	padding: var(--nhe-space-6);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
	font-family: var(--nhe-sans);
	font-size: 1rem;
}

.nhe-article-content .nhe-key-takeaway {
	border-top: 5px solid var(--nhe-violet);
}

.nhe-article-content .nhe-article-faq {
	border-top: 5px solid var(--nhe-cyan);
}

.nhe-article-content .nhe-related-inline {
	border-top: 5px solid var(--nhe-lime);
}

.nhe-sidebar {
	position: sticky;
	top: 145px;
	display: grid;
	gap: var(--nhe-space-5);
}

.admin-bar .nhe-sidebar {
	top: 177px;
}

.nhe-side-card {
	padding: var(--nhe-space-6);
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
}

.nhe-side-card-dark {
	border-color: var(--nhe-ink);
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-side-label {
	margin: 0 0 var(--nhe-space-4);
	color: var(--nhe-violet);
	font-family: var(--nhe-mono);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nhe-side-card-dark .nhe-side-label {
	color: var(--nhe-cyan);
}

.nhe-side-card h2,
.nhe-side-card h3 {
	margin: 0 0 var(--nhe-space-3);
	font-family: var(--nhe-serif);
	font-size: 1.45rem;
	line-height: 1.15;
}

.nhe-side-card p {
	margin: 0;
	color: var(--nhe-muted);
	font-size: 0.88rem;
}

.nhe-side-card-dark p {
	color: #b9c1cc;
}

.nhe-side-links a {
	display: block;
	padding: var(--nhe-space-3) 0;
	border-bottom: 1px solid var(--nhe-line);
	font-family: var(--nhe-serif);
	font-size: 1rem;
	line-height: 1.25;
	text-decoration: none;
}

.nhe-related {
	padding-block: var(--nhe-space-16);
	background: var(--nhe-white);
}

.nhe-empty {
	padding: var(--nhe-space-16);
	border: 1px solid var(--nhe-line);
	border-radius: var(--nhe-radius);
	background: var(--nhe-white);
	text-align: center;
}

.nhe-empty h2 {
	font-family: var(--nhe-serif);
	font-size: 2.4rem;
}

.nhe-page-content {
	width: min(100%, 860px);
	margin-inline: auto;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--nhe-line);
	background: var(--nhe-white);
}

.nhe-page-content > :first-child {
	margin-top: 0;
}

.nhe-page-content > :last-child {
	margin-bottom: 0;
}

.nhe-hero .nhe-button:not(.nhe-button-light):hover,
.nhe-hero .nhe-button:not(.nhe-button-light):focus-visible {
	border-color: var(--nhe-ink);
	background: var(--nhe-white);
	color: var(--nhe-ink);
}

.nhe-connect-band {
	position: relative;
	overflow: hidden;
	padding-block: var(--nhe-space-12);
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-connect-band::after {
	position: absolute;
	inset: -40% -8% auto auto;
	width: 32rem;
	height: 32rem;
	border: 1px solid rgba(200, 242, 42, 0.24);
	border-radius: 50%;
	box-shadow:
		0 0 0 4rem rgba(200, 242, 42, 0.04),
		0 0 0 8rem rgba(200, 242, 42, 0.025);
	content: "";
}

.nhe-connect-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 150px minmax(280px, 0.75fr) minmax(440px, 1.25fr);
	gap: var(--nhe-space-10);
	align-items: center;
}

.nhe-connect-mark {
	display: grid;
	width: 126px;
	aspect-ratio: 1;
	place-items: center;
	border: 4px solid var(--nhe-lime);
	color: var(--nhe-lime);
	font-family: var(--nhe-sans);
	font-size: 3.6rem;
	font-weight: 950;
	letter-spacing: -0.08em;
	line-height: 1;
}

.nhe-connect-band .nhe-eyebrow {
	margin-bottom: var(--nhe-space-2);
	color: var(--nhe-coral);
}

.nhe-connect-band h2,
.nhe-newsletter h2 {
	margin: 0;
	font-family: var(--nhe-serif);
	font-size: clamp(2.15rem, 4vw, 4rem);
	letter-spacing: -0.04em;
	line-height: 1;
}

.nhe-connect-band p {
	margin-bottom: 0;
	color: #c9d1de;
}

.nhe-connect-nodes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--nhe-space-4);
}

.nhe-connect-nodes span {
	position: relative;
	display: grid;
	min-height: 82px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	font-family: var(--nhe-mono);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nhe-connect-nodes span::before {
	position: absolute;
	top: 50%;
	left: -1.1rem;
	width: 1.1rem;
	border-top: 1px dashed rgba(200, 242, 42, 0.5);
	content: "";
}

.nhe-newsletter {
	padding-block: var(--nhe-space-10);
	background: var(--nhe-lime);
	color: var(--nhe-ink);
}

.nhe-newsletter-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
	gap: var(--nhe-space-12);
	align-items: center;
}

.nhe-newsletter .nhe-eyebrow {
	margin-bottom: var(--nhe-space-2);
	color: var(--nhe-coral);
}

.nhe-newsletter p {
	margin: var(--nhe-space-3) 0 0;
}

.nhe-newsletter-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	border: 1px solid rgba(7, 21, 47, 0.4);
	background: var(--nhe-white);
}

.nhe-newsletter-form input {
	min-width: 0;
	padding: 0.9rem 1rem;
	border: 0;
	background: transparent;
	color: var(--nhe-ink);
}

.nhe-newsletter-form button {
	padding: 0.9rem 1.3rem;
	border: 0;
	background: var(--nhe-ink);
	color: var(--nhe-white);
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.nhe-header-main {
		grid-template-columns: 190px 1fr;
	}

	.nhe-header-cta {
		display: none;
	}

	.nhe-primary-nav {
		justify-content: flex-end;
		gap: 1rem;
	}

	.nhe-logo {
		width: 185px;
	}

	.nhe-article-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: var(--nhe-space-10);
	}

	.nhe-connect-grid {
		grid-template-columns: 110px minmax(220px, 0.8fr) minmax(360px, 1.2fr);
	}

	.nhe-connect-mark {
		width: 100px;
	}
}

@media (max-width: 900px) {
	.admin-bar .nhe-site-header {
		top: 46px;
	}

	.nhe-header-main {
		grid-template-columns: 1fr auto;
		min-height: 70px;
	}

	.nhe-menu-toggle {
		display: block;
	}

	.nhe-menu-shell {
		display: block;
	}

	.nhe-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: var(--nhe-space-5) max(1rem, calc((100vw - var(--nhe-shell)) / 2));
		background: var(--nhe-ink);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nhe-primary-nav-desktop {
		display: none;
	}

	.nhe-menu-shell[open] .nhe-primary-nav,
	.nhe-primary-nav.is-open {
		display: grid;
	}

	.nhe-primary-nav a {
		padding: var(--nhe-space-3) 0;
		font-size: 1rem;
	}

	body.nhe-menu-open {
		overflow: hidden;
	}

	.nhe-hero-grid,
	.nhe-authority-grid,
	.nhe-popular-grid,
	.nhe-signal-grid,
	.nhe-archive-feature,
	.nhe-article-layout {
		grid-template-columns: 1fr;
	}

	.nhe-hero-visual {
		margin-top: var(--nhe-space-8);
	}

	.nhe-hero-story {
		right: var(--nhe-space-4);
		bottom: calc(var(--nhe-space-8) * -1);
	}

	.nhe-proof,
	.nhe-process {
		grid-template-columns: repeat(2, 1fr);
	}

	.nhe-card-grid,
	.nhe-desk-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nhe-section-head {
		grid-template-columns: 1fr;
		gap: var(--nhe-space-5);
	}

	.nhe-footer-grid {
		grid-template-columns: 1.4fr 1.1fr 0.6fr 0.6fr;
	}

	.nhe-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nhe-archive-feature img {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.nhe-connect-grid,
	.nhe-newsletter-grid {
		grid-template-columns: 1fr;
	}

	.nhe-connect-nodes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.nhe-shell {
		width: min(calc(100% - 1.25rem), var(--nhe-shell));
	}

	.nhe-utility {
		display: none;
	}

	.nhe-logo {
		width: 170px;
	}

	.nhe-display {
		font-size: clamp(3rem, 17vw, 4.6rem);
	}

	.nhe-proof,
	.nhe-process,
	.nhe-card-grid,
	.nhe-desk-grid,
	.nhe-sidebar,
	.nhe-footer-grid {
		grid-template-columns: 1fr;
	}

	.nhe-proof div {
		border-right: 0;
		border-bottom: 1px solid var(--nhe-line);
	}

	.nhe-proof div:last-child {
		border-bottom: 0;
	}

	.nhe-hero-story {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 1.5rem);
		margin: -2rem auto 0;
	}

	.nhe-hero-visual::before {
		top: -0.75rem;
		right: -0.25rem;
		width: 5rem;
		height: 5rem;
		border-width: 0.9rem;
	}

	.nhe-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.nhe-button {
		width: 100%;
	}

	.nhe-desk {
		min-height: 220px;
	}

	.nhe-popular-row {
		grid-template-columns: 2.5rem minmax(0, 1fr);
	}

	.nhe-popular-row span {
		display: none;
	}

	.nhe-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.nhe-article-featured {
		width: 100%;
		margin-top: 0;
	}

	.nhe-article-featured img {
		border-radius: 0;
	}

	.nhe-article-content {
		font-size: 1.05rem;
	}

	.nhe-connect-nodes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nhe-newsletter-form {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.nhe-editorial-site *,
	.nhe-editorial-site *::before,
	.nhe-editorial-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Final contrast guard: keeps the approved ivory editorial surfaces readable
   even when an optimisation plugin combines older cached declarations. */
body.nhe-editorial-site .nhe-site-header {
	background: rgba(250, 248, 243, 0.98) !important;
	color: var(--nhe-ink) !important;
}

body.nhe-editorial-site .nhe-primary-nav a,
body.nhe-editorial-site .nhe-header-cta {
	color: var(--nhe-ink) !important;
}

body.home.nhe-editorial-site .nhe-hero {
	background: var(--nhe-paper) !important;
}

body.home.nhe-editorial-site .nhe-display,
body.home.nhe-editorial-site .nhe-display em {
	color: var(--nhe-ink) !important;
}

/* Approved infographic alignment — premium print-editorial system. */
.nhe-site-header {
	color: var(--nhe-ink);
	background: rgba(250, 248, 243, 0.97);
	border-bottom: 1px solid var(--nhe-line);
	box-shadow: 0 0.6rem 2rem rgba(7, 21, 47, 0.035);
	backdrop-filter: blur(14px);
}

.nhe-utility {
	color: #d7deea;
	background: var(--nhe-ink);
	border-bottom: 0;
}

.nhe-utility-inner {
	padding-block: 0.36rem;
}

.nhe-header-main {
	grid-template-columns: 270px 1fr auto;
	min-height: 82px;
}

.nhe-logo {
	width: 265px;
}

.nhe-primary-nav {
	gap: clamp(0.9rem, 1.65vw, 1.55rem);
}

.nhe-primary-nav a {
	color: var(--nhe-ink);
	font-size: 0.9rem;
	font-weight: 780;
	letter-spacing: -0.01em;
}

.nhe-header-cta {
	min-height: 42px;
	padding-inline: 1.25rem;
	border: 1px solid #a8cc19;
	border-radius: 2px;
	color: var(--nhe-ink);
}

.nhe-header-cta:hover,
.nhe-header-cta:focus-visible {
	border-color: var(--nhe-ink);
	background: var(--nhe-ink);
	color: var(--nhe-white);
}

.nhe-menu-toggle {
	border-color: var(--nhe-line);
	border-radius: 2px;
}

.nhe-menu-toggle span:not(.screen-reader-text) {
	background: var(--nhe-ink);
}

body.home #nhe-main {
	background:
		linear-gradient(rgba(7, 21, 47, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 21, 47, 0.018) 1px, transparent 1px),
		var(--nhe-paper);
	background-size: 52px 52px;
}

body.home .nhe-section {
	padding-block: clamp(3rem, 5vw, 4.5rem);
}

body.home .nhe-section-head {
	margin-bottom: var(--nhe-space-8);
	padding-bottom: var(--nhe-space-5);
}

body.home .nhe-section-title {
	font-size: clamp(2.25rem, 3.7vw, 3.5rem);
	line-height: 1.01;
}

.nhe-hero {
	padding-block: clamp(2.5rem, 4.6vw, 4.5rem) var(--nhe-space-6);
	background: var(--nhe-paper);
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-hero::before {
	right: 50%;
	opacity: 0.45;
}

.nhe-hero-grid {
	grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
	min-height: 0;
}

.nhe-display {
	max-width: 610px;
	font-size: clamp(3.55rem, 5.2vw, 5.35rem);
	font-weight: 700;
	line-height: 0.96;
}

.nhe-display em {
	color: var(--nhe-ink);
	font-weight: 400;
}

.nhe-hero-deck {
	max-width: 560px;
	margin: var(--nhe-space-6) 0;
	color: #37445a;
	font-size: clamp(1rem, 1.45vw, 1.12rem);
	line-height: 1.58;
}

.nhe-hero .nhe-button,
.nhe-button {
	min-height: 46px;
	padding-inline: 1.35rem;
	border-radius: 2px;
}

.nhe-hero-visual {
	min-height: 410px;
	isolation: isolate;
}

.nhe-display,
.nhe-section-title,
.nhe-article-title,
.nhe-archive-title,
.nhe-card h3,
.nhe-authority-copy h3,
.nhe-desk h3,
.nhe-popular-row strong,
.nhe-process-item h3,
.nhe-faq-list summary {
	font-family: var(--nhe-serif) !important;
}

.nhe-hero-visual::before {
	display: none;
}

.nhe-hero-visual img {
	position: absolute;
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	object-fit: contain;
}

.nhe-hero-brand-tile {
	position: absolute;
	top: 30%;
	left: 1%;
	display: grid;
	width: 74px;
	aspect-ratio: 1;
	place-items: center;
	background: var(--nhe-lime);
	color: var(--nhe-ink);
	font-size: 2rem;
	font-weight: 950;
	letter-spacing: -0.08em;
}

.nhe-hero-metric,
.nhe-hero-guide {
	position: absolute;
	z-index: 2;
	display: grid;
	gap: 0.12rem;
	width: 142px;
	padding: 0.9rem;
	border: 1px solid var(--nhe-line);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0.8rem 2rem rgba(7, 21, 47, 0.12);
	color: var(--nhe-ink);
	text-decoration: none;
}

.nhe-hero-metric {
	bottom: 2rem;
	left: 2%;
}

.nhe-hero-guide {
	right: 1%;
	bottom: 1.6rem;
}

.nhe-hero-metric span,
.nhe-hero-guide span {
	font-family: var(--nhe-mono);
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.nhe-hero-metric strong,
.nhe-hero-guide strong {
	font-family: var(--nhe-serif);
	font-size: 1.12rem;
	line-height: 1.05;
}

.nhe-hero-metric strong {
	font-size: 1.7rem;
}

.nhe-hero-metric small,
.nhe-hero-guide small {
	color: var(--nhe-muted);
	font-size: 0.65rem;
}

.nhe-proof {
	margin-top: var(--nhe-space-6);
	background: rgba(255, 255, 255, 0.34);
}

.nhe-proof div {
	display: grid;
	grid-template-columns: 42px 1fr;
	grid-template-rows: auto auto;
	column-gap: var(--nhe-space-3);
	align-items: center;
	padding: 1.1rem 1.2rem;
}

.nhe-proof div::before {
	display: grid;
	grid-row: 1 / 3;
	width: 36px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid var(--nhe-ink);
	border-radius: 50%;
	color: var(--nhe-ink);
	font-size: 0.85rem;
	content: "✓";
}

.nhe-proof strong {
	font-family: var(--nhe-sans);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nhe-proof span {
	margin: 0;
	font-family: var(--nhe-sans);
	font-size: 0.7rem;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: none;
}

body.home #latest .nhe-shell {
	display: grid;
	grid-template-columns: 215px minmax(0, 1fr);
	gap: var(--nhe-space-8);
	align-items: start;
}

body.home #latest .nhe-section-head {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

body.home #latest .nhe-section-title {
	margin-bottom: var(--nhe-space-5);
	font-size: clamp(2.35rem, 3.5vw, 3.3rem);
}

body.home #latest .nhe-section-intro {
	font-size: 0.88rem;
	line-height: 1.55;
}

body.home .nhe-card-grid {
	gap: 0.75rem;
}

body.home .nhe-card {
	border-radius: 2px;
	box-shadow: 0 0.55rem 1.5rem rgba(7, 21, 47, 0.035);
}

body.home .nhe-card-body {
	padding: 1.1rem;
}

body.home .nhe-card h3 {
	font-size: clamp(1.4rem, 1.8vw, 1.75rem);
}

body.home .nhe-card p {
	font-size: 0.82rem;
	line-height: 1.55;
}

body.home .nhe-card-meta {
	font-size: 0.58rem;
}

body.home #about-sevenseventech {
	border-top: 1px solid var(--nhe-line);
}

body.home .nhe-authority-grid {
	grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
	gap: 0;
	border-top: 1px solid var(--nhe-line);
	border-bottom: 1px solid var(--nhe-line);
}

body.home .nhe-authority-copy {
	padding: var(--nhe-space-8) var(--nhe-space-12) var(--nhe-space-8) 0;
	border-radius: 0;
	background: transparent;
	color: var(--nhe-text);
}

body.home .nhe-authority-copy h3 {
	color: var(--nhe-ink);
	font-size: clamp(1.8rem, 3vw, 2.75rem);
}

body.home .nhe-authority-copy p {
	margin-block: 0.85rem;
	font-size: 0.91rem;
	line-height: 1.62;
}

body.home .nhe-authority-copy p:first-of-type::first-letter {
	color: var(--nhe-coral);
}

body.home .nhe-authority-index {
	align-content: start;
	padding: var(--nhe-space-8);
	background: var(--nhe-paper-deep);
	border-left: 1px solid var(--nhe-line);
}

body.home .nhe-authority-index::before {
	display: grid;
	width: 108px;
	aspect-ratio: 1;
	margin-bottom: var(--nhe-space-6);
	place-items: center;
	background: var(--nhe-ink);
	color: var(--nhe-lime);
	font-size: 3.7rem;
	font-weight: 950;
	letter-spacing: -0.1em;
	content: "77";
}

body.home .nhe-index-item {
	padding: 0.85rem 0;
}

body.home .nhe-index-item strong {
	font-size: 1.05rem;
}

body.home .nhe-index-item p {
	font-size: 0.78rem;
	line-height: 1.45;
}

body.home .nhe-section-deep {
	background: var(--nhe-white);
}

body.home .nhe-desk-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.55rem;
}

body.home .nhe-desk,
body.home .nhe-desk:nth-child(2n) {
	min-height: 230px;
	padding: 1rem;
	border-radius: 2px;
	border-bottom: 5px solid var(--nhe-lime);
	background: var(--nhe-paper);
	color: var(--nhe-ink);
	text-align: center;
}

body.home .nhe-desk:hover {
	border-color: var(--nhe-coral);
	transform: translateY(-3px);
}

body.home .nhe-desk-number,
body.home .nhe-desk:nth-child(2n) .nhe-desk-number {
	color: var(--nhe-coral);
	text-align: left;
}

body.home .nhe-desk h3 {
	margin: 3.2rem 0 0.75rem;
	font-size: 1.42rem;
}

body.home .nhe-desk p,
body.home .nhe-desk:nth-child(2n) p {
	color: var(--nhe-muted);
	font-size: 0.74rem;
	line-height: 1.45;
}

body.home .nhe-desk-arrow {
	right: 0.85rem;
	bottom: 0.55rem;
	font-size: 1rem;
}

body.home .nhe-connect-band {
	padding-block: var(--nhe-space-10);
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		var(--nhe-ink);
	background-size: 34px 34px;
}

body.home .nhe-connect-grid {
	grid-template-columns: 100px minmax(260px, 0.72fr) minmax(520px, 1.28fr);
	gap: var(--nhe-space-8);
}

body.home .nhe-connect-mark {
	width: 82px;
	border-width: 3px;
	font-size: 2.5rem;
}

body.home .nhe-connect-band h2 {
	color: var(--nhe-lime);
	font-size: clamp(2rem, 3.1vw, 3rem);
}

body.home .nhe-connect-nodes {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.45rem;
}

body.home .nhe-connect-nodes span {
	min-height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	font-size: 0.57rem;
}

body.home .nhe-popular-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
	gap: var(--nhe-space-8);
}

body.home .nhe-popular-feature img {
	aspect-ratio: 16 / 10;
	border-radius: 2px;
}

body.home .nhe-popular-row {
	grid-template-columns: 2.8rem minmax(0, 1fr) auto;
	padding: 1rem 0;
}

body.home .nhe-section-dark {
	background: var(--nhe-paper);
	color: var(--nhe-text);
	border-top: 1px solid var(--nhe-line);
	border-bottom: 1px solid var(--nhe-line);
}

body.home .nhe-section-dark .nhe-section-title {
	color: var(--nhe-ink);
}

body.home .nhe-section-dark .nhe-section-intro {
	color: var(--nhe-muted);
}

body.home .nhe-section-dark .nhe-section-head {
	border-color: var(--nhe-line);
}

body.home .nhe-section-dark .nhe-eyebrow {
	color: var(--nhe-coral);
}

body.home .nhe-process {
	gap: 0;
	margin-top: var(--nhe-space-8);
	border-top: 1px solid var(--nhe-line);
	border-bottom: 1px solid var(--nhe-line);
}

body.home .nhe-process-item {
	padding: var(--nhe-space-8) var(--nhe-space-5) var(--nhe-space-6);
	border-top: 0;
	border-right: 1px solid var(--nhe-line);
}

body.home .nhe-process-item:last-child {
	border-right: 0;
}

body.home .nhe-process-item h3 {
	color: var(--nhe-ink);
}

body.home .nhe-process-item p {
	color: var(--nhe-muted);
}

body.home .nhe-signal-grid {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: var(--nhe-space-10);
}

body.home .nhe-signal-art {
	min-height: 420px;
	border-radius: 2px;
	background:
		radial-gradient(circle at 72% 28%, rgba(200, 242, 42, 0.72) 0 18%, transparent 18.5%),
		linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.1) 47% 53%, transparent 53%),
		var(--nhe-ink);
}

body.home .nhe-signal-wheel {
	width: min(58%, 230px);
	border: 1rem solid var(--nhe-paper);
	box-shadow: 0 0 0 0.55rem var(--nhe-lime);
	font-size: 4.5rem;
}

body.home .nhe-signal-copy p {
	font-size: 0.92rem;
	line-height: 1.65;
}

body.home .nhe-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 1px solid var(--nhe-line);
	border-bottom: 0;
}

body.home .nhe-faq-list details {
	border-right: 1px solid var(--nhe-line);
}

body.home .nhe-faq-list details:nth-child(2n) {
	border-right: 0;
}

body.home .nhe-faq-list summary {
	padding-inline: var(--nhe-space-5);
	font-size: 1.08rem;
}

body.home .nhe-faq-list details p {
	padding-inline: var(--nhe-space-5);
	font-size: 0.88rem;
}

.nhe-newsletter {
	padding-block: var(--nhe-space-8);
	border-top: 1px solid #aacd1d;
}

.nhe-newsletter h2 {
	font-size: clamp(2rem, 3.2vw, 3rem);
}

.nhe-site-footer {
	padding-top: var(--nhe-space-10);
	border-top: 4px solid var(--nhe-lime);
}

.nhe-footer-grid {
	grid-template-columns: 1.55fr 1fr 0.68fr 0.68fr;
	gap: var(--nhe-space-8);
	padding-bottom: var(--nhe-space-8);
}

.nhe-footer-brand img {
	width: min(100%, 235px);
}

.nhe-footer-brand p,
.nhe-footer-grid > div:not(.nhe-footer-brand) a {
	font-size: 0.8rem;
	line-height: 1.45;
}

@media (max-width: 1100px) {
	.nhe-header-main {
		grid-template-columns: 210px 1fr auto;
		gap: 1rem;
	}

	.nhe-logo {
		width: 205px;
	}

	.nhe-primary-nav {
		gap: 0.78rem;
	}

	.nhe-primary-nav a {
		font-size: 0.8rem;
	}

	.nhe-hero-grid {
		grid-template-columns: minmax(360px, 0.88fr) minmax(470px, 1.12fr);
	}

	body.home .nhe-desk-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.home .nhe-connect-grid {
		grid-template-columns: 82px minmax(230px, 0.7fr) minmax(400px, 1.3fr);
	}
}

@media (max-width: 900px) {
	.nhe-header-main {
		grid-template-columns: 1fr auto;
	}

	.nhe-logo {
		width: 220px;
	}

	.nhe-primary-nav {
		background: var(--nhe-white);
		border-color: var(--nhe-line);
	}

	.nhe-primary-nav a {
		color: var(--nhe-ink);
	}

	.nhe-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.nhe-hero-visual {
		min-height: 450px;
		margin-top: 0;
	}

	body.home #latest .nhe-shell {
		display: block;
	}

	body.home #latest .nhe-section-head {
		margin-bottom: var(--nhe-space-8);
	}

	body.home .nhe-authority-grid,
	body.home .nhe-signal-grid {
		grid-template-columns: 1fr;
	}

	body.home .nhe-authority-copy {
		padding-right: 0;
	}

	body.home .nhe-authority-index {
		border-top: 1px solid var(--nhe-line);
		border-left: 0;
	}

	body.home .nhe-connect-grid {
		grid-template-columns: 90px 1fr;
	}

	body.home .nhe-connect-nodes {
		grid-column: 1 / -1;
	}

	body.home .nhe-faq-list {
		grid-template-columns: 1fr;
	}

	body.home .nhe-faq-list details {
		border-right: 0;
	}
}

@media (max-width: 680px) {
	.nhe-logo {
		width: 190px;
	}

	.nhe-display {
		font-size: clamp(3.1rem, 15vw, 4.2rem);
	}

	.nhe-hero {
		padding-top: var(--nhe-space-10);
	}

	.nhe-hero-visual {
		min-height: 340px;
	}

	.nhe-hero-brand-tile {
		top: 24%;
		width: 54px;
		font-size: 1.45rem;
	}

	.nhe-hero-metric,
	.nhe-hero-guide {
		bottom: 0.5rem;
		width: 124px;
		padding: 0.7rem;
	}

	.nhe-hero-metric {
		left: 0;
	}

	.nhe-hero-guide {
		right: 0;
	}

	.nhe-proof {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nhe-proof div {
		border-right: 1px solid var(--nhe-line);
	}

	.nhe-proof div:nth-child(2n) {
		border-right: 0;
	}

	body.home .nhe-card-grid,
	body.home .nhe-desk-grid {
		grid-template-columns: 1fr;
	}

	body.home .nhe-desk {
		min-height: 185px;
	}

	body.home .nhe-connect-grid {
		grid-template-columns: 1fr;
	}

	body.home .nhe-connect-nodes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.home .nhe-process {
		grid-template-columns: 1fr;
	}

	body.home .nhe-process-item {
		border-right: 0;
		border-bottom: 1px solid var(--nhe-line);
	}

	body.home .nhe-popular-grid {
		grid-template-columns: 1fr;
	}

	.nhe-footer-grid {
		grid-template-columns: 1fr;
	}
}

/* Nhentai UK editorial system */
body.nhe-editorial-site {
	background: var(--nhe-paper);
	color: var(--nhe-text);
	font-size: 16px;
}

.nhe-site-header {
	background: rgba(17, 17, 20, 0.98);
	border-bottom-color: rgba(247, 242, 232, 0.14);
	backdrop-filter: blur(16px);
}

.nhe-utility {
	color: #d4cdc3;
}

.nhe-utility-inner {
	grid-template-columns: 1fr 1fr 1fr;
	font-size: 0.64rem;
	letter-spacing: 0.12em;
}

.nhe-utility-inner span:nth-child(2) {
	text-align: center;
}

.nhe-header-main {
	grid-template-columns: 170px minmax(0, 1fr) auto;
	gap: 1.5rem;
	min-height: 74px;
}

.nhe-logo {
	width: 168px;
}

.nhe-primary-nav {
	gap: clamp(0.7rem, 1.2vw, 1.3rem);
}

.nhe-primary-nav a {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.nhe-primary-nav a::after {
	background: var(--nhe-coral);
}

.nhe-nav-parent {
	position: relative;
}

.nhe-nav-parent > a {
	display: inline-flex;
	gap: 0.35rem;
	align-items: center;
}

.nhe-subnav {
	position: absolute;
	z-index: 30;
	top: calc(100% + 0.8rem);
	left: -1rem;
	display: grid;
	width: 190px;
	padding: 0.55rem;
	visibility: hidden;
	background: var(--nhe-ink-soft);
	border: 1px solid rgba(247, 242, 232, 0.16);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nhe-subnav a {
	padding: 0.65rem 0.75rem;
	border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.nhe-subnav a:last-child {
	border-bottom: 0;
}

.nhe-nav-parent:hover .nhe-subnav,
.nhe-nav-parent:focus-within .nhe-subnav {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.nhe-header-cta {
	padding: 0.62rem 0.86rem;
	color: #fff;
	background: transparent;
	border: 1px solid var(--nhe-coral);
	border-radius: 2px;
	font-size: 0.72rem;
	letter-spacing: 0.03em;
}

.nhe-header-cta:hover,
.nhe-header-cta:focus-visible {
	color: #fff;
	background: var(--nhe-coral);
}

.nhe-hero {
	position: relative;
	overflow: hidden;
	padding: 3.2rem 0 0;
	color: var(--nhe-paper);
	background: var(--nhe-ink);
}

.nhe-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	pointer-events: none;
}

.nhe-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
	gap: 3rem;
	align-items: center;
	min-height: 560px;
}

.nhe-display {
	max-width: 760px;
	margin: 0;
	font-family: var(--nhe-serif);
	font-size: clamp(3.5rem, 5.7vw, 6.7rem);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.91;
}

.nhe-display em {
	color: #d8c8fb;
	font-weight: 400;
}

.nhe-hero-deck {
	max-width: 680px;
	margin: 1.6rem 0 0;
	color: #ded9d1;
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	line-height: 1.65;
}

.nhe-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.8rem;
}

.nhe-hero .nhe-button {
	border-radius: 2px;
}

.nhe-hero .nhe-button:not(.nhe-button-light) {
	color: #fff;
	background: var(--nhe-coral);
}

.nhe-hero .nhe-button-light {
	color: var(--nhe-paper);
	background: transparent;
	border-color: rgba(247, 242, 232, 0.5);
}

.nhe-hero-note {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.8rem;
	max-width: 620px;
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(247, 242, 232, 0.18);
	color: #bab4ac;
	font-size: 0.8rem;
}

.nhe-hero-note strong {
	color: var(--nhe-paper);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.nhe-hero-visual {
	position: relative;
	min-height: 500px;
}

.nhe-hero-visual::before {
	display: none;
}

.nhe-hero-visual img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border: 1px solid rgba(247, 242, 232, 0.16);
	border-radius: 2px;
	filter: saturate(0.9) contrast(1.02);
}

.nhe-hero-stamp {
	position: absolute;
	top: 1rem;
	left: -1.25rem;
	display: grid;
	width: 94px;
	padding: 0.7rem 0.5rem;
	color: var(--nhe-paper);
	background: var(--nhe-ink);
	border: 1px solid var(--nhe-coral);
	text-align: center;
}

.nhe-hero-stamp span {
	font-family: var(--nhe-serif);
	font-size: 2.6rem;
	line-height: 1;
}

.nhe-hero-stamp small {
	margin-top: 0.3rem;
	font-family: var(--nhe-mono);
	font-size: 0.52rem;
	letter-spacing: 0.08em;
}

.nhe-hero-guide {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: grid;
	width: min(270px, calc(100% - 2rem));
	padding: 1rem;
	color: var(--nhe-ink);
	background: var(--nhe-paper);
	border-left: 5px solid var(--nhe-coral);
}

.nhe-hero-guide span,
.nhe-hero-guide small {
	font-family: var(--nhe-mono);
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nhe-hero-guide strong {
	margin-block: 0.2rem;
	font-family: var(--nhe-serif);
	font-size: 1.4rem;
}

.nhe-proof {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 2.5rem;
	color: var(--nhe-ink);
	background: var(--nhe-paper);
	border: 1px solid var(--nhe-line);
}

.nhe-proof div {
	padding: 1rem 1.2rem;
	border-right: 1px solid var(--nhe-line);
}

.nhe-proof div:last-child {
	border-right: 0;
}

.nhe-proof strong {
	font-family: var(--nhe-serif);
	font-size: 1rem;
}

.nhe-proof span {
	margin-top: 0.2rem;
	color: var(--nhe-muted);
	font-size: 0.74rem;
}

body.home .nhe-card-grid-featured {
	grid-template-columns: 1.35fr repeat(2, 1fr);
}

body.home .nhe-card-grid-featured .nhe-card:first-child {
	grid-row: span 2;
}

body.home .nhe-card-grid-featured .nhe-card:first-child .nhe-card-media {
	aspect-ratio: 16 / 10;
}

body.home .nhe-card-grid-featured .nhe-card:first-child h3 {
	font-size: clamp(1.7rem, 2.3vw, 2.6rem);
}

.nhe-card {
	border-radius: 2px;
	box-shadow: none;
}

.nhe-card-media {
	aspect-ratio: 16 / 9;
}

.nhe-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nhe-desk-band {
	padding-block: 2.4rem;
	background: #ebe3d8;
	border-block: 1px solid var(--nhe-line);
}

.nhe-desk-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.2rem;
}

.nhe-desk-heading h2 {
	margin: 0;
	font-family: var(--nhe-serif);
	font-size: clamp(1.8rem, 3vw, 3rem);
}

body.home .nhe-desk-grid {
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--nhe-line);
}

body.home .nhe-desk,
body.home .nhe-desk:nth-child(2n) {
	display: grid;
	min-height: 145px;
	padding: 1rem;
	color: var(--nhe-ink);
	background: var(--nhe-paper);
	border: 0;
	border-right: 1px solid var(--nhe-line);
	border-radius: 0;
	text-decoration: none;
}

body.home .nhe-desk:last-child {
	border-right: 0;
}

body.home .nhe-desk:hover,
body.home .nhe-desk:focus-visible {
	color: #fff;
	background: var(--nhe-coral);
	transform: none;
}

body.home .nhe-desk > span {
	font-family: var(--nhe-mono);
	font-size: 0.65rem;
}

body.home .nhe-desk strong {
	align-self: end;
	font-family: var(--nhe-serif);
	font-size: 1rem;
}

body.home .nhe-desk small {
	font-size: 0.62rem;
	text-transform: uppercase;
}

body.home .nhe-authority-grid {
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
	gap: 4rem;
	align-items: start;
}

body.home .nhe-authority-copy h3 {
	max-width: 900px;
	font-size: clamp(2rem, 3.2vw, 3.4rem);
}

body.home .nhe-authority-copy p {
	max-width: 890px;
	font-size: 1.02rem;
	line-height: 1.78;
}

body.home .nhe-authority-copy blockquote {
	margin: 2rem 0;
	padding: 2rem;
	color: var(--nhe-ink);
	background: #e5dafd;
	border: 0;
	border-left: 6px solid var(--nhe-coral);
	font-family: var(--nhe-serif);
	font-size: clamp(1.7rem, 2.8vw, 2.8rem);
	font-style: italic;
	line-height: 1.18;
}

body.home .nhe-authority-index {
	position: sticky;
	top: 130px;
	padding: 1.5rem;
	background: var(--nhe-white);
	border: 1px solid var(--nhe-line);
}

body.home .nhe-authority-index::before {
	display: none;
	content: none;
}

.nhe-index-item {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 0.8rem;
	padding-block: 1rem;
	border-bottom: 1px solid var(--nhe-line);
}

.nhe-index-item > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	background: var(--nhe-ink);
	border-radius: 50%;
	font-family: var(--nhe-mono);
	font-size: 0.7rem;
}

.nhe-index-item strong {
	font-family: var(--nhe-serif);
}

.nhe-index-item p {
	margin: 0.2rem 0 0;
	color: var(--nhe-muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.nhe-text-link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--nhe-coral);
	font-weight: 800;
}

.nhe-safety-band {
	padding-block: 4rem;
	color: var(--nhe-paper);
	background: var(--nhe-ink);
	border-block: 1px solid rgba(247, 242, 232, 0.15);
}

.nhe-safety-heading {
	display: grid;
	grid-template-columns: 0.5fr 1.5fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2rem;
}

.nhe-safety-heading h2 {
	margin: 0;
	font-family: var(--nhe-serif);
	font-size: clamp(2.2rem, 4vw, 4.4rem);
	line-height: 0.98;
}

.nhe-safety-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid rgba(247, 242, 232, 0.18);
}

.nhe-safety-grid > div {
	padding: 2rem;
	border-right: 1px solid rgba(247, 242, 232, 0.18);
}

.nhe-safety-grid > div:last-child {
	border-right: 0;
}

.nhe-safety-grid span {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	margin-bottom: 1.4rem;
	color: var(--nhe-paper);
	border: 1px solid var(--nhe-coral);
	border-radius: 50%;
	font-family: var(--nhe-serif);
	font-size: 1.35rem;
}

.nhe-safety-grid h3 {
	font-family: var(--nhe-serif);
	font-size: 1.6rem;
}

.nhe-safety-grid p {
	color: #c7c0b7;
}

.nhe-review-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--nhe-line);
}

.nhe-review-grid > div {
	padding: 1.5rem;
	border-right: 1px solid var(--nhe-line);
}

.nhe-review-grid > div:last-child {
	border-right: 0;
}

.nhe-review-grid span {
	color: var(--nhe-coral);
	font-family: var(--nhe-mono);
	font-size: 0.65rem;
}

.nhe-review-grid h3 {
	font-family: var(--nhe-serif);
	font-size: 1.35rem;
}

.nhe-review-grid p {
	color: var(--nhe-muted);
	font-size: 0.86rem;
	line-height: 1.55;
}

.nhe-editor-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.2rem;
	align-items: center;
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: #ebe3d8;
	border: 1px solid var(--nhe-line);
}

.nhe-editor-card h3,
.nhe-editor-card p {
	margin: 0;
}

.nhe-editor-card h3 {
	font-family: var(--nhe-serif);
	font-size: 1.5rem;
}

.nhe-editor-card p {
	color: var(--nhe-muted);
}

.nhe-editor-avatar {
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	color: var(--nhe-paper);
	background: var(--nhe-ink);
	border: 2px solid var(--nhe-coral);
	font-family: var(--nhe-serif);
	font-size: 2.4rem;
}

.nhe-topic-map {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: 1rem;
}

.nhe-topic-pillar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 430px;
	padding: 2.5rem;
	color: var(--nhe-paper);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		var(--nhe-ink-soft);
	background-size: 34px 34px;
	border: 1px solid rgba(247, 242, 232, 0.2);
}

.nhe-topic-pillar > span {
	align-self: flex-start;
	padding: 0.35rem 0.55rem;
	background: var(--nhe-coral);
	font-family: var(--nhe-mono);
	font-size: 0.6rem;
	text-transform: uppercase;
}

.nhe-topic-pillar h3 {
	margin-block: 1.1rem 0.8rem;
	font-family: var(--nhe-serif);
	font-size: clamp(2.1rem, 3.5vw, 4rem);
	line-height: 0.98;
}

.nhe-topic-pillar p {
	color: #c7c0b7;
}

.nhe-topic-pillar a {
	margin-top: 1rem;
	color: #d8c8fb;
	font-weight: 800;
}

.nhe-topic-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}

.nhe-topic-links a {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 0.8rem;
	align-items: center;
	min-height: 78px;
	padding: 0.8rem;
	color: var(--nhe-paper);
	border: 1px solid rgba(247, 242, 232, 0.18);
	text-decoration: none;
}

.nhe-topic-links a:hover,
.nhe-topic-links a:focus-visible {
	background: var(--nhe-ink-soft);
	border-color: var(--nhe-coral);
}

.nhe-topic-links span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	background: var(--nhe-coral);
	font-family: var(--nhe-mono);
	font-size: 0.66rem;
}

.nhe-topic-links strong {
	font-family: var(--nhe-serif);
	font-size: 0.95rem;
	line-height: 1.2;
}

.nhe-faq-section {
	background: #ebe3d8;
}

.nhe-faq-grid {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	gap: 4rem;
	align-items: start;
}

body.home .nhe-faq-list {
	display: block;
	border: 1px solid var(--nhe-line);
}

body.home .nhe-faq-list details {
	background: var(--nhe-paper);
	border-right: 0;
	border-bottom: 1px solid var(--nhe-line);
}

body.home .nhe-faq-list details:last-child {
	border-bottom: 0;
}

body.home .nhe-faq-list summary {
	padding: 1rem 3rem 1rem 1.2rem;
	font-family: var(--nhe-serif);
	font-size: 1.1rem;
}

.nhe-brief {
	padding-block: 2rem;
	color: var(--nhe-paper);
	background: #8062be;
}

.nhe-brief-grid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.4rem;
	align-items: center;
}

.nhe-brief-icon {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid var(--nhe-paper);
	border-radius: 50%;
	font-family: var(--nhe-serif);
	font-size: 2.5rem;
}

.nhe-brief h2,
.nhe-brief p {
	margin: 0;
}

.nhe-brief h2 {
	font-family: var(--nhe-serif);
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.nhe-brief .nhe-button {
	color: #fff;
	background: var(--nhe-ink);
}

.nhe-site-footer {
	padding-top: 3rem;
	background: #0c0c0e;
	border-top: 0;
}

.nhe-footer-grid {
	grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
}

.nhe-footer-brand img {
	width: min(100%, 220px);
}

.nhe-footer-age {
	color: #d8c8fb !important;
	font-family: var(--nhe-mono);
	font-size: 0.66rem !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nhe-article-featured {
	width: min(calc(100% - 2rem), 1120px);
	max-width: none;
	margin-inline: auto;
}

.nhe-article-featured img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.nhe-article-layout {
	grid-template-columns: minmax(0, 760px) 320px;
	justify-content: center;
}

.nhe-article-content .nhe-source-note {
	margin-block: 2rem;
	padding: 1.4rem;
	background: #ebe3d8;
	border-left: 5px solid var(--nhe-violet);
}

.nhe-article-content .nhe-source-note h2 {
	margin-top: 0;
	font-size: 1.5rem;
}

.nhe-article-content .nhe-contents-list {
	column-count: 2;
	column-gap: 2rem;
	padding: 1.2rem 2rem;
	background: #ebe3d8;
	border: 1px solid var(--nhe-line);
}

.nhe-related-inline {
	border-left-color: var(--nhe-coral) !important;
}

.nhe-archive-hero,
.nhe-article-hero {
	background: var(--nhe-ink);
}

.nhe-archive-feature {
	border-radius: 2px;
}

@media (max-width: 1180px) {
	.nhe-header-main {
		grid-template-columns: 190px 1fr;
	}

	.nhe-logo {
		width: 185px;
	}

	.nhe-primary-nav-desktop,
	.nhe-header-cta {
		display: none;
	}

	.nhe-menu-shell {
		display: block;
		justify-self: end;
	}

	.nhe-primary-nav-mobile {
		position: absolute;
		top: 100%;
		right: 1rem;
		display: grid;
		width: min(360px, calc(100vw - 2rem));
		padding: 1rem;
		background: var(--nhe-paper);
		border: 1px solid var(--nhe-line);
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	}

	.nhe-primary-nav-mobile a {
		padding: 0.65rem;
		color: var(--nhe-ink);
		border-bottom: 1px solid var(--nhe-line);
	}

	.nhe-hero-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	}

	body.home .nhe-desk-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	body.home .nhe-desk:nth-child(4n) {
		border-right: 0;
	}

	body.home .nhe-desk:nth-child(-n+4) {
		border-bottom: 1px solid var(--nhe-line);
	}
}

@media (max-width: 900px) {
	.nhe-utility-inner {
		grid-template-columns: 1fr 1fr;
	}

	.nhe-utility-inner span:nth-child(2) {
		text-align: right;
	}

	.nhe-utility-inner span:last-child {
		display: none;
	}

	.nhe-hero-grid,
	body.home .nhe-authority-grid,
	.nhe-safety-heading,
	.nhe-topic-map,
	.nhe-faq-grid {
		grid-template-columns: 1fr;
	}

	.nhe-hero-grid {
		gap: 2rem;
	}

	.nhe-hero-visual {
		min-height: 420px;
	}

	.nhe-hero-visual img {
		height: 420px;
	}

	body.home .nhe-card-grid-featured {
		grid-template-columns: 1fr 1fr;
	}

	body.home .nhe-card-grid-featured .nhe-card:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	body.home .nhe-authority-index {
		position: static;
	}

	.nhe-safety-grid,
	.nhe-review-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nhe-safety-grid > div:nth-child(2),
	.nhe-review-grid > div:nth-child(2) {
		border-right: 0;
	}

	.nhe-safety-grid > div:nth-child(-n+2),
	.nhe-review-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(247, 242, 232, 0.18);
	}

	.nhe-review-grid > div:nth-child(-n+2) {
		border-bottom-color: var(--nhe-line);
	}

	.nhe-editor-card {
		grid-template-columns: auto 1fr;
	}

	.nhe-editor-card .nhe-button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.nhe-article-layout {
		grid-template-columns: 1fr;
	}

	.nhe-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.nhe-header-main {
		grid-template-columns: 160px 1fr;
	}

	.nhe-logo {
		width: 158px;
	}

	.nhe-display {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.nhe-hero {
		padding-top: 2rem;
	}

	.nhe-hero-visual,
	.nhe-hero-visual img {
		height: 310px;
		min-height: 310px;
	}

	.nhe-hero-stamp {
		left: 0.5rem;
	}

	.nhe-proof {
		grid-template-columns: 1fr 1fr;
	}

	.nhe-proof div:nth-child(2n) {
		border-right: 0;
	}

	.nhe-proof div:nth-child(-n+2) {
		border-bottom: 1px solid var(--nhe-line);
	}

	body.home .nhe-card-grid-featured,
	body.home .nhe-desk-grid,
	.nhe-safety-grid,
	.nhe-review-grid,
	.nhe-topic-links {
		grid-template-columns: 1fr;
	}

	body.home .nhe-desk,
	body.home .nhe-desk:nth-child(4n),
	.nhe-safety-grid > div,
	.nhe-review-grid > div {
		border-right: 0;
		border-bottom: 1px solid var(--nhe-line);
	}

	body.home .nhe-desk:last-child,
	.nhe-safety-grid > div:last-child,
	.nhe-review-grid > div:last-child {
		border-bottom: 0;
	}

	.nhe-authority-copy blockquote {
		padding: 1.2rem;
	}

	.nhe-editor-card,
	.nhe-brief-grid {
		grid-template-columns: 1fr;
	}

	.nhe-brief-icon {
		width: 58px;
		height: 58px;
		font-size: 1.8rem;
	}

	.nhe-article-content .nhe-contents-list {
		column-count: 1;
	}
}

/* Live contrast lock for the approved ivory hero and header. */
body.home.nhe-editorial-site .nhe-hero-copy {
	color: var(--nhe-ink) !important;
}

body.home.nhe-editorial-site .nhe-hero-deck {
	color: #37445a !important;
}

body.home.nhe-editorial-site .nhe-hero .nhe-button-light {
	color: var(--nhe-ink) !important;
	border-color: rgba(17, 17, 20, 0.55) !important;
}

body.home.nhe-editorial-site .nhe-hero-note {
	color: #4b5565 !important;
	border-color: var(--nhe-line) !important;
}

body.home.nhe-editorial-site .nhe-hero-note strong {
	color: var(--nhe-ink) !important;
}

/* Dark editorial hero contrast for articles, archives and information pages. */
body.nhe-editorial-site .nhe-article-hero,
body.nhe-editorial-site .nhe-archive-hero {
	color: var(--nhe-paper) !important;
}

body.nhe-editorial-site .nhe-article-title,
body.nhe-editorial-site .nhe-archive-title {
	color: var(--nhe-paper) !important;
}

body.nhe-editorial-site .nhe-article-deck,
body.nhe-editorial-site .nhe-archive-description {
	color: #ded9d1 !important;
}

body.nhe-editorial-site .nhe-article-byline,
body.nhe-editorial-site .nhe-article-hero .nhe-breadcrumbs,
body.nhe-editorial-site .nhe-archive-hero .nhe-breadcrumbs,
body.nhe-editorial-site .nhe-article-hero .nhe-breadcrumbs a,
body.nhe-editorial-site .nhe-archive-hero .nhe-breadcrumbs a {
	color: #bdb7ae !important;
}

body.nhe-editorial-site .nhe-article-hero .nhe-kicker,
body.nhe-editorial-site .nhe-archive-hero .nhe-eyebrow {
	color: #d8c8fb !important;
}

/* Infographic Fidelity v3 — premium UK editorial homepage */
:root {
	--nhe-v3-ink: #101113;
	--nhe-v3-ink-soft: #18191d;
	--nhe-v3-paper: #f4eee4;
	--nhe-v3-card: #fbf8f2;
	--nhe-v3-red: #c92333;
	--nhe-v3-lilac: #9879cf;
	--nhe-v3-line: rgba(16, 17, 19, 0.18);
}

body.nhe-editorial-site {
	overflow-x: hidden;
	background: var(--nhe-v3-paper);
}

body.nhe-editorial-site .nhe-site-header {
	color: #f7f0e7 !important;
	background: rgba(16, 17, 19, 0.985) !important;
	border-bottom: 1px solid rgba(247, 240, 231, 0.15) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

body.nhe-editorial-site .nhe-utility {
	color: #c9c2ba;
	border-bottom-color: rgba(247, 240, 231, 0.12);
}

body.nhe-editorial-site .nhe-utility-inner {
	padding-block: 0.35rem;
	font-size: 0.61rem;
	letter-spacing: 0.14em;
}

body.nhe-editorial-site .nhe-header-main {
	grid-template-columns: 180px minmax(0, 1fr) auto;
	gap: 1.3rem;
	min-height: 70px;
}

body.nhe-editorial-site .nhe-logo {
	width: 174px;
}

body.nhe-editorial-site .nhe-logo img {
	width: 100%;
	max-height: 48px;
	object-fit: contain;
	object-position: left center;
}

body.nhe-editorial-site .nhe-primary-nav {
	gap: clamp(0.75rem, 1.22vw, 1.4rem);
}

body.nhe-editorial-site .nhe-primary-nav a {
	color: #f7f0e7 !important;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0;
}

body.nhe-editorial-site .nhe-header-cta {
	min-height: 38px;
	padding: 0.55rem 0.8rem;
	color: #fff !important;
	background: transparent;
	border: 1px solid var(--nhe-v3-red);
	border-radius: 2px;
	font-size: 0.67rem;
}

body.nhe-editorial-site .nhe-header-cta:hover,
body.nhe-editorial-site .nhe-header-cta:focus-visible {
	background: var(--nhe-v3-red);
}

body.home.nhe-editorial-site .nhe-hero {
	padding: 0;
	color: #f5eee5;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
		var(--nhe-v3-ink) !important;
	background-size: 44px 44px !important;
}

body.home.nhe-editorial-site .nhe-hero::before {
	background:
		radial-gradient(circle at 30% 42%, rgba(152, 121, 207, 0.13), transparent 32%),
		linear-gradient(90deg, rgba(16, 17, 19, 0), rgba(16, 17, 19, 0.05));
}

body.home.nhe-editorial-site .nhe-hero-grid {
	grid-template-columns: minmax(450px, 0.86fr) minmax(560px, 1.14fr);
	gap: 0;
	align-items: stretch;
	min-height: 520px;
}

body.home.nhe-editorial-site .nhe-hero-copy {
	z-index: 2;
	padding: 3.4rem 3.4rem 3.4rem 0;
	color: #f5eee5 !important;
}

body.home.nhe-editorial-site .nhe-hero-copy .nhe-eyebrow {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 1.35rem;
	padding: 0.42rem 0.62rem;
	color: #f5eee5;
	background: rgba(16, 17, 19, 0.74);
	border: 1px solid rgba(247, 240, 231, 0.45);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
}

body.home.nhe-editorial-site .nhe-display {
	max-width: 690px;
	color: #f5eee5 !important;
	font-size: clamp(3.5rem, 5.2vw, 5.55rem);
	font-weight: 400;
	letter-spacing: -0.052em;
	line-height: 0.94;
}

body.home.nhe-editorial-site .nhe-display em {
	color: #f5eee5 !important;
	font-weight: 400;
	font-style: normal;
}

body.home.nhe-editorial-site .nhe-hero-deck {
	max-width: 590px;
	margin-top: 1.25rem;
	color: #ddd6ce !important;
	font-size: 0.98rem;
	line-height: 1.58;
}

body.home.nhe-editorial-site .nhe-hero-actions {
	margin-top: 1.45rem;
}

body.home.nhe-editorial-site .nhe-hero .nhe-button {
	min-height: 44px;
	padding-inline: 1.2rem;
	border-radius: 1px;
	font-size: 0.68rem;
}

body.home.nhe-editorial-site .nhe-hero .nhe-button:not(.nhe-button-light) {
	color: #fff;
	background: var(--nhe-v3-red);
	border-color: var(--nhe-v3-red);
}

body.home.nhe-editorial-site .nhe-hero .nhe-button-light {
	color: #f5eee5 !important;
	background: rgba(16, 17, 19, 0.18);
	border-color: rgba(247, 240, 231, 0.52) !important;
}

body.home.nhe-editorial-site .nhe-hero-note,
body.home.nhe-editorial-site .nhe-proof {
	display: none;
}

body.home.nhe-editorial-site .nhe-hero-visual {
	z-index: 0;
	min-height: 520px;
	overflow: hidden;
	isolation: auto;
}

body.home.nhe-editorial-site .nhe-hero-visual img {
	position: relative !important;
	z-index: 0 !important;
	inset: auto !important;
	width: 100%;
	height: 100%;
	min-height: 520px;
	aspect-ratio: auto !important;
	border: 0;
	border-left: 1px solid rgba(247, 240, 231, 0.12);
	border-radius: 0;
	filter: saturate(0.88) contrast(1.04);
	object-fit: cover;
	object-position: 58% center;
}

body.home.nhe-editorial-site .nhe-hero-stamp {
	z-index: 2;
	top: 1.4rem;
	left: 1.35rem;
	width: 74px;
	padding: 0.55rem 0.4rem;
	background: rgba(16, 17, 19, 0.92);
}

body.home.nhe-editorial-site .nhe-hero-stamp span {
	font-size: 2rem;
}

body.home.nhe-editorial-site .nhe-hero-guide {
	z-index: 2;
	right: 1.3rem;
	bottom: 1.3rem;
	width: min(255px, calc(100% - 2.6rem));
	padding: 0.85rem 1rem;
	background: rgba(244, 238, 228, 0.96);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

body.home.nhe-editorial-site .nhe-section {
	padding-block: clamp(3.5rem, 5.4vw, 5.4rem);
}

body.home.nhe-editorial-site #latest {
	padding-block: 1.6rem 2.4rem;
	background: var(--nhe-v3-paper);
}

body.home.nhe-editorial-site #latest .nhe-shell {
	display: block !important;
}

body.home.nhe-editorial-site .nhe-section-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

body.home.nhe-editorial-site .nhe-section-bar h2 {
	margin: 0;
	font-family: var(--nhe-sans);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.home.nhe-editorial-site .nhe-section-bar > span {
	height: 1px;
	background: var(--nhe-v3-line);
}

body.home.nhe-editorial-site .nhe-section-bar a {
	color: var(--nhe-v3-red);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

body.home.nhe-editorial-site .nhe-card-grid-featured {
	display: grid;
	grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
	gap: 0.7rem;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card,
body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:first-child {
	grid-row: auto;
	min-width: 0;
	background: var(--nhe-v3-card);
	border: 1px solid var(--nhe-v3-line);
	border-radius: 0;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card-media,
body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:first-child .nhe-card-media {
	aspect-ratio: 16 / 10;
	border-bottom: 1px solid var(--nhe-v3-line);
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card-body {
	padding: 0.85rem;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card h3,
body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:first-child h3 {
	margin: 0.35rem 0 0;
	font-size: clamp(0.95rem, 1.15vw, 1.2rem);
	line-height: 1.08;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:first-child h3 {
	font-size: clamp(1.4rem, 1.8vw, 1.9rem);
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card p {
	margin: 0.5rem 0;
	font-size: 0.73rem;
	line-height: 1.42;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:not(:first-child) p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card-meta {
	font-size: 0.56rem;
}

body.home.nhe-editorial-site .nhe-desk-band {
	padding-block: 1rem 1.55rem;
	background: var(--nhe-v3-paper);
}

body.home.nhe-editorial-site .nhe-section-bar-desk {
	margin-bottom: 0.75rem;
}

body.home.nhe-editorial-site .nhe-desk-grid {
	grid-template-columns: repeat(8, minmax(0, 1fr));
	border-color: var(--nhe-v3-line);
}

body.home.nhe-editorial-site .nhe-desk,
body.home.nhe-editorial-site .nhe-desk:nth-child(2n) {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto;
	place-items: center;
	min-height: 112px;
	padding: 0.72rem;
	background: rgba(251, 248, 242, 0.9);
	border-color: var(--nhe-v3-line);
	text-align: center;
}

body.home.nhe-editorial-site .nhe-desk-number {
	position: absolute;
	top: 0.45rem;
	left: 0.55rem;
	color: #827d78;
	font-size: 0.53rem;
}

body.home.nhe-editorial-site .nhe-desk-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-top: 0.25rem;
}

body.home.nhe-editorial-site .nhe-desk-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.home.nhe-editorial-site .nhe-desk strong {
	align-self: end;
	font-family: var(--nhe-sans);
	font-size: 0.75rem;
	font-weight: 750;
}

body.home.nhe-editorial-site #about-nhentai {
	padding-block: 2.4rem;
	background:
		linear-gradient(rgba(244, 238, 228, 0.94), rgba(244, 238, 228, 0.94)),
		repeating-linear-gradient(0deg, rgba(16, 17, 19, 0.03) 0, rgba(16, 17, 19, 0.03) 1px, transparent 1px, transparent 5px);
}

body.home.nhe-editorial-site #about-nhentai .nhe-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
	gap: 2.5rem;
	align-items: end;
	margin-bottom: 1.2rem;
}

body.home.nhe-editorial-site #about-nhentai .nhe-section-title {
	margin-top: 0.25rem;
	font-size: clamp(2.2rem, 3.7vw, 4rem);
	line-height: 0.98;
}

body.home.nhe-editorial-site .nhe-authority-grid {
	grid-template-columns: minmax(0, 1.58fr) minmax(270px, 0.42fr);
	gap: 0;
	padding: 1.6rem;
	background: rgba(251, 248, 242, 0.74);
	border: 1px solid var(--nhe-v3-line);
	box-shadow: 0 16px 45px rgba(16, 17, 19, 0.05);
}

body.home.nhe-editorial-site .nhe-authority-copy {
	padding-right: 1.8rem;
	column-count: 3;
	column-gap: 1.6rem;
	column-rule: 1px solid rgba(16, 17, 19, 0.11);
}

body.home.nhe-editorial-site .nhe-authority-copy h3 {
	max-width: none;
	margin: 0 0 1rem;
	font-size: 1.3rem;
	line-height: 1.18;
	column-span: all;
}

body.home.nhe-editorial-site .nhe-authority-copy p {
	max-width: none;
	margin: 0 0 0.85rem;
	font-family: var(--nhe-serif);
	font-size: 0.86rem;
	line-height: 1.62;
	break-inside: auto;
	orphans: 3;
	widows: 3;
}

body.home.nhe-editorial-site .nhe-authority-copy p:first-of-type::first-letter {
	float: none;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

body.home.nhe-editorial-site .nhe-authority-copy blockquote {
	margin: 1.1rem 0;
	padding: 1.4rem;
	background: rgba(244, 238, 228, 0.75);
	border: 1px solid var(--nhe-v3-line);
	border-left: 4px solid var(--nhe-v3-red);
	font-size: 1.45rem;
	line-height: 1.2;
	break-inside: avoid-column;
}

body.home.nhe-editorial-site .nhe-authority-index {
	position: static;
	top: auto;
	padding: 0 0 0 1.6rem;
	background: transparent;
	border: 0;
	border-left: 1px solid var(--nhe-v3-line);
}

body.home.nhe-editorial-site .nhe-index-item {
	grid-template-columns: 38px 1fr;
	gap: 0.65rem;
	padding-block: 0.75rem;
}

body.home.nhe-editorial-site .nhe-index-item > span {
	width: 34px;
	height: 34px;
	font-size: 0.58rem;
}

body.home.nhe-editorial-site .nhe-safety-band {
	padding-block: 2.35rem;
	background: var(--nhe-v3-ink);
}

body.home.nhe-editorial-site .nhe-safety-heading {
	grid-template-columns: 0.6fr 1.4fr;
	margin-bottom: 1.25rem;
}

body.home.nhe-editorial-site .nhe-safety-heading h2 {
	font-size: clamp(1.75rem, 2.9vw, 3rem);
}

body.home.nhe-editorial-site .nhe-safety-grid > div {
	position: relative;
	min-height: 170px;
	padding: 1.4rem 1.4rem 1.4rem 6.3rem;
}

body.home.nhe-editorial-site .nhe-safety-grid span {
	position: absolute;
	top: 1.45rem;
	left: 1.45rem;
	width: 60px;
	height: 60px;
	margin: 0;
	border-color: #d8c8ba;
	font-size: 1rem;
}

body.home.nhe-editorial-site .nhe-safety-grid h3 {
	margin: 0 0 0.45rem;
	font-size: 1.25rem;
}

body.home.nhe-editorial-site .nhe-safety-grid p {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
}

body.home.nhe-editorial-site .nhe-review-grid {
	background: var(--nhe-v3-card);
}

body.home.nhe-editorial-site .nhe-review-grid > div {
	padding: 1.15rem;
}

body.home.nhe-editorial-site .nhe-review-grid h3 {
	margin: 0.35rem 0;
	font-size: 1.08rem;
}

body.home.nhe-editorial-site .nhe-review-grid p {
	margin: 0;
	font-size: 0.76rem;
}

body.home.nhe-editorial-site .nhe-editor-card {
	margin-top: 0;
	padding: 1.2rem;
	background: #e9e0d5;
	border-top: 0;
}

body.home.nhe-editorial-site .nhe-editor-avatar {
	width: 58px;
	height: 58px;
	font-size: 2rem;
}

body.home.nhe-editorial-site .nhe-section-dark {
	padding-block: 3rem;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		var(--nhe-v3-ink);
	background-size: 42px 42px;
}

body.home.nhe-editorial-site .nhe-section-dark .nhe-section-head {
	margin-bottom: 1.2rem;
}

body.home.nhe-editorial-site .nhe-section-dark .nhe-section-title {
	color: #f4eee4;
	font-size: clamp(2.2rem, 3.4vw, 3.8rem);
}

body.home.nhe-editorial-site .nhe-topic-map {
	grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
}

body.home.nhe-editorial-site .nhe-topic-pillar {
	min-height: 390px;
	background: rgba(24, 25, 29, 0.9);
}

body.home.nhe-editorial-site .nhe-topic-links {
	gap: 0.5rem;
}

body.home.nhe-editorial-site .nhe-topic-links a {
	min-height: 70px;
	background: rgba(24, 25, 29, 0.72);
}

body.home.nhe-editorial-site .nhe-trending-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.8rem;
}

body.home.nhe-editorial-site .nhe-trending-grid .nhe-card {
	min-width: 0;
	background: var(--nhe-v3-card);
	border: 1px solid var(--nhe-v3-line);
	border-radius: 0;
}

body.home.nhe-editorial-site .nhe-trending-grid .nhe-card-body {
	padding: 0.85rem;
}

body.home.nhe-editorial-site .nhe-trending-grid h3 {
	font-size: 1.02rem;
	line-height: 1.14;
}

body.home.nhe-editorial-site .nhe-trending-grid p {
	display: none;
}

body.home.nhe-editorial-site .nhe-faq-section {
	padding-block: 2rem;
	background: #e9e0d5;
}

body.home.nhe-editorial-site .nhe-faq-grid {
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
	gap: 2rem;
}

body.home.nhe-editorial-site .nhe-faq-grid .nhe-section-title {
	font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

body.home.nhe-editorial-site .nhe-faq-list summary {
	padding-block: 0.68rem;
	font-family: var(--nhe-sans);
	font-size: 0.88rem;
	font-weight: 750;
}

body.home.nhe-editorial-site .nhe-brief {
	padding-block: 1.55rem;
	background: linear-gradient(100deg, #7c5db8, #9b7fd4);
}

body.home.nhe-editorial-site .nhe-brief-grid {
	grid-template-columns: 62px 1fr auto;
}

body.home.nhe-editorial-site .nhe-brief-icon {
	width: 58px;
	height: 58px;
	font-size: 1.8rem;
}

body.home.nhe-editorial-site .nhe-brief h2 {
	font-size: 1.7rem;
}

body.nhe-editorial-site .nhe-site-footer {
	padding-top: 2.4rem;
	background:
		radial-gradient(circle at 85% 30%, rgba(201, 35, 51, 0.12), transparent 18%),
		#0d0e10;
}

body.nhe-editorial-site .nhe-footer-grid {
	grid-template-columns: 1.45fr 1fr 0.8fr 0.8fr;
	gap: 2.5rem;
}

body.nhe-editorial-site .nhe-footer-brand img {
	width: min(100%, 188px);
}

body.nhe-editorial-site .nhe-footer-grid > div:not(.nhe-footer-brand) a {
	padding-block: 0.18rem;
	font-size: 0.75rem;
}

body.nhe-editorial-site .nhe-footer-label {
	margin-bottom: 0.55rem;
	color: #f4eee4;
	font-size: 0.65rem;
	letter-spacing: 0.11em;
}

body.nhe-editorial-site .nhe-footer-bottom {
	margin-top: 1.8rem;
	padding-block: 0.85rem;
	font-size: 0.65rem;
}

@media (max-width: 1240px) {
	body.home.nhe-editorial-site .nhe-hero-grid {
		grid-template-columns: minmax(400px, 0.92fr) minmax(470px, 1.08fr);
	}

	body.home.nhe-editorial-site .nhe-display {
		font-size: clamp(3.2rem, 5.1vw, 4.75rem);
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured {
		grid-template-columns: 1.65fr repeat(4, minmax(0, 1fr));
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card p {
		display: none;
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card-body {
		padding: 0.7rem;
	}

	body.home.nhe-editorial-site .nhe-authority-copy {
		column-count: 2;
	}
}

@media (max-width: 980px) {
	body.home.nhe-editorial-site .nhe-hero-grid {
		grid-template-columns: 1fr;
	}

	body.home.nhe-editorial-site .nhe-hero-copy {
		padding: 3rem 0 2.3rem;
	}

	body.home.nhe-editorial-site .nhe-hero-visual,
	body.home.nhe-editorial-site .nhe-hero-visual img {
		min-height: 430px;
		height: 430px;
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured .nhe-card:first-child {
		grid-column: 1 / -1;
	}

	body.home.nhe-editorial-site .nhe-desk-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.home.nhe-editorial-site .nhe-authority-grid {
		grid-template-columns: 1fr;
	}

	body.home.nhe-editorial-site .nhe-authority-index {
		margin-top: 1.4rem;
		padding: 1.2rem 0 0;
		border-top: 1px solid var(--nhe-v3-line);
		border-left: 0;
	}

	body.home.nhe-editorial-site .nhe-trending-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1180px) {
	body.nhe-editorial-site .nhe-primary-nav-mobile a {
		color: var(--nhe-ink) !important;
	}
}

@media (max-width: 720px) {
	body.nhe-editorial-site .nhe-utility-inner {
		grid-template-columns: 1fr auto;
	}

	body.nhe-editorial-site .nhe-header-main {
		grid-template-columns: 160px 1fr;
		min-height: 64px;
	}

	body.nhe-editorial-site .nhe-logo {
		width: 158px;
	}

	body.home.nhe-editorial-site .nhe-display {
		font-size: clamp(2.75rem, 13vw, 4rem);
	}

	body.home.nhe-editorial-site .nhe-hero-visual,
	body.home.nhe-editorial-site .nhe-hero-visual img {
		min-height: 330px;
		height: 330px;
	}

	body.home.nhe-editorial-site .nhe-hero-visual img {
		object-position: 64% center;
	}

	body.home.nhe-editorial-site .nhe-section-bar {
		grid-template-columns: 1fr auto;
	}

	body.home.nhe-editorial-site .nhe-section-bar > span {
		display: none;
	}

	body.home.nhe-editorial-site .nhe-card-grid-featured,
	body.home.nhe-editorial-site .nhe-trending-grid {
		grid-template-columns: 1fr;
	}

	body.home.nhe-editorial-site .nhe-desk-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home.nhe-editorial-site .nhe-desk,
	body.home.nhe-editorial-site .nhe-desk:nth-child(2n) {
		border-right: 1px solid var(--nhe-v3-line);
		border-bottom: 1px solid var(--nhe-v3-line);
	}

	body.home.nhe-editorial-site #about-nhentai .nhe-section-head,
	body.home.nhe-editorial-site .nhe-faq-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	body.home.nhe-editorial-site .nhe-authority-grid {
		padding: 1.1rem;
	}

	body.home.nhe-editorial-site .nhe-authority-copy {
		padding-right: 0;
		column-count: 1;
	}

	body.home.nhe-editorial-site .nhe-safety-heading {
		grid-template-columns: 1fr;
		gap: 0.6rem;
	}

	body.home.nhe-editorial-site .nhe-safety-grid,
	body.home.nhe-editorial-site .nhe-review-grid {
		grid-template-columns: 1fr;
	}

	body.home.nhe-editorial-site .nhe-safety-grid > div {
		min-height: 150px;
		border-right: 0;
		border-bottom: 1px solid rgba(247, 240, 231, 0.18);
	}

	body.home.nhe-editorial-site .nhe-review-grid > div {
		border-right: 0;
		border-bottom: 1px solid var(--nhe-v3-line);
	}

	body.home.nhe-editorial-site .nhe-editor-card,
	body.home.nhe-editorial-site .nhe-brief-grid {
		grid-template-columns: 1fr;
	}

	body.home.nhe-editorial-site .nhe-editor-card .nhe-button {
		grid-column: auto;
	}

	body.nhe-editorial-site .nhe-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.8rem;
	}
}

@media (max-width: 460px) {
	body.home.nhe-editorial-site .nhe-hero-copy {
		padding-top: 2.3rem;
	}

	body.home.nhe-editorial-site .nhe-hero-actions {
		display: grid;
	}

	body.home.nhe-editorial-site .nhe-hero .nhe-button {
		width: 100%;
	}

	body.home.nhe-editorial-site .nhe-section-bar {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	body.home.nhe-editorial-site .nhe-footer-grid {
		grid-template-columns: 1fr;
	}
}
