/**
 * NeonPress HUB public presentation.
 */

.np-hub-switcher {
	position: relative;
	z-index: 101;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #071425;
	color: #fff;
}

.np-hub-switcher__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 42px;
}

.np-hub-switcher__title {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.58);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.np-hub-switcher__track {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.np-hub-switcher__track::-webkit-scrollbar {
	display: none;
}

.np-hub-switcher__item {
	--np-hub-link-color: var(--np-hub-link-light-color);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	min-height: 30px;
	padding: 5px 3px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: color 160ms ease, opacity 160ms ease;
}

.np-hub-switcher__item:hover,
.np-hub-switcher__item:focus-visible {
	background: transparent;
	color: var(--np-hub-link-color);
}

.np-hub-switcher__item.is-active {
	background: transparent;
	color: var(--np-hub-link-color);
}

html[data-theme="dark"] .np-hub-switcher__item {
	--np-hub-link-color: var(--np-hub-link-dark-color);
}

.np-hub-switcher--header-menu {
	z-index: 1;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.np-hub-switcher--header-menu .np-hub-switcher__inner {
	width: 100%;
	padding: 0 14px;
}

.np-active-hub-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 14px;
	color: var(--np-hub-color, var(--np-accent));
	font-family: var(--np-display);
	font-size: clamp(12px, 1.2vw, 16px);
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.np-active-hub-label span {
	color: var(--np-muted);
	font-weight: 400;
}

.np-hub-active .np-archive-hero {
	position: relative;
	overflow: hidden;
}

.np-hub-active .np-archive-hero::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 6px;
	background: var(--np-hub-color);
	content: "";
}

.np-hub-active .np-archive-hero::after {
	position: absolute;
	top: -160px;
	right: -90px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--np-hub-color) 14%, transparent);
	content: "";
	pointer-events: none;
}

.np-hub-active .np-archive-hero__inner {
	position: relative;
	z-index: 1;
}

.np-hub-identity {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	color: var(--np-hub-color);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.np-hub-identity__icon {
	display: inline-grid;
	place-items: center;
	min-width: 29px;
	height: 29px;
	padding-inline: 7px;
	border-radius: 9px;
	background: var(--np-hub-color);
	color: var(--np-hub-contrast);
	letter-spacing: 0;
}

.np-hub-active .np-filter-chips {
	border-bottom-color: color-mix(in srgb, var(--np-hub-color) 32%, var(--np-border));
}

.np-hub-active .np-chip span,
.np-hub-active .np-section-heading__dot {
	background: var(--np-hub-color);
}

.np-hub-active .np-chip.is-active {
	border-color: var(--np-hub-color);
	background: var(--np-hub-color);
	color: var(--np-hub-contrast);
}

.np-hub-active .np-article__header > .np-badge,
.np-hub-active .np-card .np-badge {
	background: var(--np-hub-color) !important;
	color: var(--np-hub-contrast) !important;
}

.np-home-hubs {
	margin: 28px 0 34px;
}

.np-home-hubs__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.np-home-hub-card {
	--np-hub-card-color: var(--np-hub-card-light-color);
	--np-hub-card-contrast: var(--np-hub-card-light-contrast);
	display: grid;
	grid-template-columns: minmax(112px, 35%) 1fr;
	min-height: 210px;
	overflow: hidden;
	border: 1px solid var(--np-border);
	border-top: 4px solid var(--np-hub-card-color);
	border-radius: var(--np-radius-lg);
	background: var(--np-surface-raised);
	box-shadow: var(--np-shadow-sm);
}

html[data-theme="dark"] .np-home-hub-card {
	--np-hub-card-color: var(--np-hub-card-dark-color);
	--np-hub-card-contrast: var(--np-hub-card-dark-contrast);
}

.np-home-hub-card__media {
	display: block;
	min-height: 100%;
	overflow: hidden;
	background: color-mix(in srgb, var(--np-hub-card-color) 18%, var(--np-surface));
}

.np-home-hub-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.np-home-hub-card:hover .np-home-hub-card__media img {
	transform: scale(1.035);
}

.np-home-hub-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 205px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--np-hub-card-color) 84%, #071425), var(--np-hub-card-color));
	color: var(--np-hub-card-contrast);
	font-family: var(--np-display);
	font-size: clamp(34px, 5vw, 68px);
	font-weight: 950;
}

.np-home-hub-card__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
}

.np-home-hub-card__name {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--np-hub-card-color);
	font-family: var(--np-display);
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.np-home-hub-card__content p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--np-muted);
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.np-home-hub-card__latest {
	display: -webkit-box;
	margin-top: auto;
	overflow: hidden;
	color: var(--np-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.np-home-hub-card__latest small {
	display: block;
	margin-bottom: 3px;
	color: var(--np-hub-card-color);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

@supports not (background: color-mix(in srgb, red 20%, transparent)) {
	.np-hub-active .np-archive-hero::after {
		background: transparent;
	}
	.np-home-hub-card__media {
		background: var(--np-surface);
	}
}

@media (max-width: 1040px) {
	.np-home-hubs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.np-hub-switcher__inner {
		gap: 8px;
		padding-right: 0;
	}

	.np-hub-switcher__title {
		display: none;
	}

	.np-hub-switcher__track {
		padding-right: 18px;
	}

	.np-hub-switcher__item {
		font-size: 11px;
	}

	.np-hub-switcher--header-menu {
		border-radius: 11px;
	}

	.np-hub-switcher--header-menu .np-hub-switcher__inner {
		padding-left: 12px;
	}

	.np-active-hub-label {
		max-width: 120px;
		overflow: hidden;
		font-size: 11px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.np-home-hubs__grid {
		grid-template-columns: 1fr;
	}

	.np-home-hub-card {
		grid-template-columns: 122px 1fr;
		min-height: 190px;
	}
}

@media (max-width: 440px) {
	.np-home-hub-card {
		grid-template-columns: 105px 1fr;
	}

	.np-home-hub-card__content {
		padding: 15px;
	}

	.np-home-hub-card__content p {
		display: none;
	}
}

/* Autonomous HUB homepages. */
.np-hub-home {
	--np-hub-home-accent: var(--np-hub-color, var(--np-accent));
	--np-hub-home-contrast: var(--np-hub-contrast, var(--np-ink));
	--np-hub-home-panel: var(--np-surface-raised);
	--np-hub-home-soft: color-mix(in srgb, var(--np-hub-home-accent) 10%, var(--np-surface));
	padding-bottom: clamp(56px, 7vw, 96px);
	background:
		linear-gradient(180deg, color-mix(in srgb, var(--np-hub-home-accent) 3%, var(--np-bg)) 0, var(--np-bg) 720px);
}

.np-hub-home__masthead {
	position: relative;
	display: grid;
	min-height: clamp(360px, 45vw, 540px);
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--np-hub-home-accent) 35%, transparent) 0, transparent 32%),
		linear-gradient(135deg, #061426 0%, #0a2341 58%, color-mix(in srgb, var(--np-hub-home-accent) 58%, #071425) 150%);
	color: #fff;
}

.np-hub-home__masthead::before,
.np-hub-home__masthead::after {
	position: absolute;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.np-hub-home__masthead::before {
	top: -20%;
	right: -5%;
	width: min(52vw, 680px);
	aspect-ratio: 1;
	border: clamp(38px, 6vw, 84px) solid color-mix(in srgb, var(--np-hub-home-accent) 16%, transparent);
	border-radius: 50%;
}

.np-hub-home__masthead::after {
	inset: auto 0 0;
	height: 5px;
	background: var(--np-hub-home-accent);
}

.np-hub-home__masthead-media {
	position: absolute;
	z-index: -3;
	inset: 0;
}

.np-hub-home__masthead-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-hub-home__masthead-shade {
	position: absolute;
	z-index: -2;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 11, 22, 0.96) 0%, rgba(3, 11, 22, 0.79) 47%, rgba(3, 11, 22, 0.28) 100%);
}

.np-hub-home__masthead-inner {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 34px;
	padding-top: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(28px, 4vw, 48px);
}

.np-hub-home__brandline {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.np-hub-home__brandline span {
	color: rgba(255, 255, 255, 0.62);
}

.np-hub-home__brandline i {
	width: 32px;
	height: 2px;
	background: var(--np-hub-home-accent);
}

.np-hub-home__brandline strong {
	color: var(--np-hub-home-accent);
}

.np-hub-home__masthead-copy {
	align-self: center;
	max-width: 920px;
}

.np-hub-home__identity {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 13px;
	color: var(--np-hub-home-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.np-hub-home__identity b {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding-inline: 8px;
	border: 1px solid color-mix(in srgb, var(--np-hub-home-accent) 55%, transparent);
	border-radius: 10px;
	background: color-mix(in srgb, var(--np-hub-home-accent) 14%, transparent);
	font-size: 17px;
	letter-spacing: 0;
}

.np-hub-home__masthead h1 {
	max-width: 1050px;
	margin: 0;
	color: #fff;
	font-family: var(--np-display);
	font-size: clamp(58px, 9vw, 132px);
	font-weight: 950;
	letter-spacing: -0.065em;
	line-height: 0.82;
	text-wrap: balance;
}

.np-hub-home__description {
	max-width: 620px;
	margin-top: clamp(18px, 2.4vw, 27px);
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.55;
}

.np-hub-home__description p {
	margin: 0;
}

.np-hub-home__masthead-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.np-hub-home__masthead-meta span + span::before {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 18px;
	border-radius: 50%;
	background: var(--np-hub-home-accent);
	content: "";
	vertical-align: 2px;
}

.np-hub-local-nav {
	--np-hub-home-accent: var(--np-hub-local-light, var(--np-hub-color, var(--np-accent)));
	--np-hub-home-contrast: var(--np-hub-local-light-contrast, var(--np-hub-contrast, var(--np-ink)));
	--np-hub-home-soft: color-mix(in srgb, var(--np-hub-home-accent) 10%, var(--np-surface));
}

html[data-theme="dark"] .np-hub-local-nav {
	--np-hub-home-accent: var(--np-hub-local-dark, var(--np-hub-color, var(--np-accent)));
	--np-hub-home-contrast: var(--np-hub-local-dark-contrast, var(--np-hub-contrast, var(--np-ink)));
}

.np-hub-home__nav {
	position: sticky;
	z-index: 70;
	top: var(--np-header-height, 142px);
	border-bottom: 1px solid var(--np-border);
	background: color-mix(in srgb, var(--np-surface-raised) 94%, transparent);
	box-shadow: 0 9px 30px rgba(7, 20, 37, 0.05);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.admin-bar .np-hub-home__nav {
	top: calc(var(--np-header-height, 142px) + 32px);
}

.np-header--static ~ .np-hub-home .np-hub-home__nav {
	top: 0;
}

.admin-bar .np-header--static ~ .np-hub-home .np-hub-home__nav {
	top: 32px;
}

.np-header--static ~ .np-main .np-hub-local-nav {
	top: 0;
}

.admin-bar .np-header--static ~ .np-main .np-hub-local-nav {
	top: 32px;
}

.np-hub-local-nav.np-hub-local-nav--static {
	position: relative;
	top: auto !important;
}

.np-hub-home__nav-track {
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 56px;
	overflow-x: auto;
	scrollbar-width: none;
}

.np-hub-home__nav-track::-webkit-scrollbar {
	display: none;
}

.np-hub-local-nav__identity {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	margin-right: 5px;
	color: var(--np-muted);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.np-hub-local-nav__identity b {
	display: grid;
	place-items: center;
	min-width: 25px;
	height: 25px;
	padding: 0 5px;
	border-radius: 7px;
	background: var(--np-hub-home-accent);
	color: var(--np-hub-home-contrast);
	font-size: 9px;
	letter-spacing: 0;
}

.np-hub-local-nav__divider {
	display: block;
	flex: 0 0 auto;
	width: 1px;
	height: 24px;
	margin: 0 4px;
	background: var(--np-border);
}

.np-hub-home__nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 38px;
	padding: 8px 13px;
	border-radius: 999px;
	color: var(--np-ink);
	font-size: 12px;
	font-weight: 850;
	text-decoration: none;
}

.np-hub-home__nav a:hover,
.np-hub-home__nav a:focus-visible {
	background: var(--np-hub-home-soft);
	color: var(--np-hub-home-accent);
}

.np-hub-home__nav a.is-active {
	background: var(--np-hub-home-accent);
	color: var(--np-hub-home-contrast);
}

.np-hub-local-nav a.np-hub-local-nav__link:hover,
.np-hub-local-nav a.np-hub-local-nav__link:focus-visible {
	background: var(--np-hub-home-soft);
	color: var(--np-hub-home-accent);
}

.np-hub-local-nav a.np-hub-local-nav__link.is-active {
	background: var(--np-hub-home-accent);
	color: var(--np-hub-home-contrast);
}

.np-hub-local-nav a.np-hub-local-nav__service {
	color: var(--np-muted);
	font-size: 11px;
}

.np-hub-home__content {
	padding-top: clamp(40px, 6vw, 78px);
}

.np-hub-home__content > section + section,
.np-hub-home__content > .np-hub-crossings + section,
.np-hub-home__content > section + .np-hub-crossings {
	margin-top: clamp(62px, 8vw, 108px);
}

.np-hub-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
	align-items: end;
	gap: 30px;
	margin-bottom: 25px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--np-border);
}

.np-hub-section-heading > div > span {
	display: block;
	margin-bottom: 7px;
	color: var(--np-hub-home-accent);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.np-hub-section-heading h2 {
	margin: 0;
	font-family: var(--np-display);
	font-size: clamp(30px, 4.2vw, 56px);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 0.98;
	text-wrap: balance;
}

.np-hub-section-heading > p {
	margin: 0;
	color: var(--np-muted);
	font-size: 13px;
	line-height: 1.55;
}

.np-hub-newsroom__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.95fr);
	gap: 14px;
}

.np-hub-newsroom__grid--single {
	grid-template-columns: 1fr;
}

.np-hub-newsroom__side {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.np-hub-newsroom__side--2 {
	grid-template-columns: 1fr;
}

.np-hub-newsroom__side.np-hub-newsroom__side--1 {
	grid-template-columns: 1fr;
}

.np-hub-story {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--np-radius-lg);
	background: #071425;
	box-shadow: var(--np-shadow-sm);
}

.np-hub-story__link {
	display: grid;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

.np-hub-story__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.np-hub-story__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.np-hub-story:hover .np-hub-story__image {
	transform: scale(1.035);
}

.np-hub-story__fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, color-mix(in srgb, var(--np-hub-home-accent) 74%, #071425), #071425);
	color: var(--np-hub-home-accent);
	font-family: var(--np-display);
	font-size: clamp(48px, 8vw, 120px);
	font-weight: 950;
}

.np-hub-story__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 10, 19, 0.02) 22%, rgba(3, 10, 19, 0.92) 100%);
}

.np-hub-story__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	align-self: end;
	flex-direction: column;
	padding: clamp(18px, 3vw, 34px);
}

.np-hub-story__labels {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 11px;
}

.np-hub-story__labels > span,
.np-hub-story__labels .np-format-badge {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 4px 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(3, 10, 19, 0.4);
	color: rgba(255, 255, 255, 0.85);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.np-hub-story__labels .np-format-badge {
	border-color: var(--np-format-color);
	background: var(--np-format-color);
	color: var(--np-format-contrast);
}

.np-hub-story h2 {
	margin: 0;
	color: #fff;
	font-family: var(--np-display);
	font-size: clamp(25px, 3vw, 46px);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.np-hub-story p {
	max-width: 680px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	line-height: 1.5;
}

.np-hub-story__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.np-hub-story__meta span::before {
	margin-right: 12px;
	color: var(--np-hub-home-accent);
	content: "•";
}

.np-hub-story--lead {
	min-height: 600px;
}

.np-hub-story--side {
	min-height: 293px;
}

.np-hub-newsroom__side--5 .np-hub-story--side {
	min-height: 190px;
}

.np-hub-story--side h2 {
	display: -webkit-box;
	overflow: hidden;
	font-size: clamp(18px, 1.65vw, 25px);
	line-height: 1.08;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.np-hub-story--side .np-hub-story__content {
	padding: 18px;
}

.np-hub-story--side .np-hub-story__meta span {
	display: none;
}

.np-hub-channels__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.np-hub-channel-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius-lg);
	background: var(--np-hub-home-panel);
	box-shadow: var(--np-shadow-sm);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.np-hub-channel-card:hover {
	border-color: color-mix(in srgb, var(--np-hub-home-accent) 52%, var(--np-border));
	box-shadow: var(--np-shadow-lg);
	transform: translateY(-4px);
}

.np-hub-channel-card__media {
	position: relative;
	display: grid;
	place-items: center;
	height: 210px;
	overflow: hidden;
	background: linear-gradient(145deg, color-mix(in srgb, var(--np-hub-home-accent) 58%, #071425), #071425);
	color: #fff;
	text-decoration: none;
}

.np-hub-channel-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.np-hub-channel-card:hover .np-hub-channel-card__media img {
	transform: scale(1.04);
}

.np-hub-channel-card__media > span {
	font-family: var(--np-display);
	font-size: 82px;
	font-weight: 950;
	opacity: 0.62;
}

.np-hub-channel-card__media i {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 10, 19, 0.02) 25%, rgba(3, 10, 19, 0.83) 100%);
}

.np-hub-channel-card__media strong {
	position: absolute;
	z-index: 1;
	right: 18px;
	bottom: 16px;
	left: 18px;
	font-family: var(--np-display);
	font-size: clamp(24px, 2.3vw, 34px);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1;
}

.np-hub-channel-card__body {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
	padding: 16px 18px 19px;
}

.np-hub-channel-card__body > span {
	color: var(--np-hub-home-accent);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.np-hub-channel-card__body a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--np-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.42;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.np-hub-dossiers__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.np-hub-dossier {
	--np-dossier-color: var(--np-dossier-light);
	--np-dossier-contrast: var(--np-dossier-light-contrast);
	display: grid;
	grid-template-rows: 210px 1fr;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius-lg);
	background: var(--np-hub-home-panel);
	box-shadow: var(--np-shadow-sm);
}

html[data-theme="dark"] .np-hub-dossier {
	--np-dossier-color: var(--np-dossier-dark);
	--np-dossier-contrast: var(--np-dossier-dark-contrast);
}

.np-hub-dossier__media {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, color-mix(in srgb, var(--np-dossier-color) 78%, #071425), #071425);
	color: #fff;
	text-decoration: none;
}

.np-hub-dossier__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.np-hub-dossier:hover .np-hub-dossier__media img {
	transform: scale(1.035);
}

.np-hub-dossier__media > span {
	font-family: var(--np-display);
	font-size: 54px;
	font-weight: 950;
	letter-spacing: -0.06em;
	opacity: 0.8;
}

.np-hub-dossier__media i {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(3, 10, 19, 0.72));
}

.np-hub-dossier__media b {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--np-dossier-color);
	color: var(--np-dossier-contrast);
	font-size: 9px;
	font-weight: 950;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
}

.np-hub-dossier__body {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 20px;
	border-top: 4px solid var(--np-dossier-color);
}

.np-hub-dossier__body > span {
	color: var(--np-dossier-color);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.np-hub-dossier h3 {
	margin: 8px 0 0;
	font-family: var(--np-display);
	font-size: clamp(21px, 2vw, 29px);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.np-hub-dossier h3 a {
	color: var(--np-ink);
	text-decoration: none;
}

.np-hub-dossier__body p {
	margin: 12px 0 0;
	color: var(--np-muted);
	font-size: 12px;
	line-height: 1.48;
}

.np-hub-dossier__body small {
	margin-top: auto;
	padding-top: 18px;
	color: var(--np-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.np-hub-formats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 13px;
}

.np-hub-format-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	background: var(--np-hub-home-panel);
	box-shadow: var(--np-shadow-sm);
}

.np-hub-format-card > a {
	display: grid;
	height: 100%;
	color: var(--np-ink);
	text-decoration: none;
}

.np-hub-format-card__media {
	display: grid;
	place-items: center;
	height: 150px;
	overflow: hidden;
	background: var(--np-hub-home-soft);
	color: var(--np-hub-home-accent);
}

.np-hub-format-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.np-hub-format-card:hover .np-hub-format-card__media img {
	transform: scale(1.045);
}

.np-hub-format-card__media span {
	font-family: var(--np-display);
	font-size: 30px;
	font-weight: 950;
}

.np-hub-format-card__body {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 16px;
}

.np-hub-format-card__body > span {
	margin-bottom: 8px;
	color: var(--np-hub-home-accent);
	font-size: 9px;
	font-weight: 950;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.np-hub-format-card h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.np-hub-format-card time {
	margin-top: 14px;
	color: var(--np-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.np-hub-home .np-hub-crossings {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid color-mix(in srgb, var(--np-hub-home-accent) 30%, var(--np-border));
	border-radius: var(--np-radius-lg);
	background: linear-gradient(135deg, var(--np-hub-home-soft), var(--np-hub-home-panel));
}

.np-hub-latest .np-archive-grid {
	margin-top: 0;
}

.np-hub-home--paged .np-hub-home__masthead {
	min-height: 300px;
}

.np-hub-home--paged .np-hub-home__masthead h1 {
	font-size: clamp(48px, 8vw, 104px);
}

/* Six visual identities selectable for every vertical. */
.np-hub-home--immersive .np-hub-home__masthead,
.np-hub-home--broadcast .np-hub-home__masthead,
.np-hub-home--neon .np-hub-home__masthead {
	min-height: clamp(430px, 56vw, 680px);
}

.np-hub-home--immersive .np-hub-home__masthead-copy {
	align-self: end;
}

.np-hub-home--immersive .np-hub-home__masthead h1 {
	max-width: 1120px;
	text-shadow: 0 9px 50px rgba(0, 0, 0, 0.36);
}

.np-hub-home--neon {
	--np-hub-home-panel: #0c1522;
	--np-bg: #07101c;
	--np-surface: #0a121d;
	--np-surface-raised: #0c1522;
	--np-border: rgba(255, 255, 255, 0.12);
	--np-ink: #f2f7ff;
	--np-muted: #9eacbd;
	background: #07101c;
	color: #f2f7ff;
}

.np-hub-home--neon .np-hub-home__masthead {
	background:
		linear-gradient(rgba(7, 16, 28, 0.78), rgba(7, 16, 28, 0.93)),
		repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.035) 79px 80px),
		#07101c;
}

.np-hub-home--neon .np-hub-home__masthead::before {
	border-radius: 18%;
	box-shadow: 0 0 90px color-mix(in srgb, var(--np-hub-home-accent) 35%, transparent), inset 0 0 90px color-mix(in srgb, var(--np-hub-home-accent) 18%, transparent);
	transform: rotate(18deg);
}

.np-hub-home--neon .np-hub-home__masthead h1,
.np-hub-home--neon .np-hub-section-heading h2,
.np-hub-home--neon .np-hub-channel-card__body a,
.np-hub-home--neon .np-hub-dossier h3 a,
.np-hub-home--neon .np-hub-format-card > a {
	color: #f2f7ff;
}

.np-hub-home--neon .np-hub-home__nav {
	border-bottom-color: rgba(255, 255, 255, 0.12);
	background: rgba(7, 16, 28, 0.94);
}

.np-hub-home--neon .np-hub-home__nav a {
	color: #f2f7ff;
}

.np-hub-home--neon .np-hub-section-heading,
.np-hub-home--neon .np-hub-channel-card,
.np-hub-home--neon .np-hub-dossier,
.np-hub-home--neon .np-hub-format-card {
	border-color: rgba(255, 255, 255, 0.12);
}

.np-hub-home--paper {
	--np-hub-home-panel: #fffdf5;
	--np-hub-home-soft: #f1ead9;
	--np-bg: #f8f3e8;
	--np-surface: #f1ead9;
	--np-surface-raised: #fffdf5;
	--np-border: #dcd1bc;
	--np-ink: #211e19;
	--np-muted: #6c6456;
	background: #f8f3e8;
	color: #211e19;
}

.np-hub-home--paper .np-hub-home__masthead {
	min-height: clamp(350px, 41vw, 500px);
	background: #f0e8d8;
	color: #211e19;
}

.np-hub-home--paper .np-hub-home__masthead-shade {
	background: linear-gradient(90deg, rgba(248, 243, 232, 0.98), rgba(248, 243, 232, 0.72) 64%, rgba(248, 243, 232, 0.2));
}

.np-hub-home--paper .np-hub-home__masthead h1,
.np-hub-home--paper .np-hub-home__brandline strong {
	color: #211e19;
}

.np-hub-home--paper .np-hub-home__brandline span,
.np-hub-home--paper .np-hub-home__description,
.np-hub-home--paper .np-hub-home__masthead-meta {
	color: #6c6456;
}

.np-hub-home--paper .np-hub-home__masthead h1,
.np-hub-home--paper .np-hub-section-heading h2,
.np-hub-home--paper .np-hub-story h2,
.np-hub-home--paper .np-hub-channel-card__media strong,
.np-hub-home--paper .np-hub-dossier h3 {
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: -0.045em;
}

.np-hub-home--paper .np-hub-home__nav {
	background: rgba(248, 243, 232, 0.95);
}

.np-hub-home--paper .np-hub-home__nav a,
.np-hub-home--paper .np-hub-channel-card__body a,
.np-hub-home--paper .np-hub-dossier h3 a,
.np-hub-home--paper .np-hub-format-card > a {
	color: #211e19;
}

.np-hub-home--paper .np-hub-section-heading,
.np-hub-home--paper .np-hub-channel-card,
.np-hub-home--paper .np-hub-dossier,
.np-hub-home--paper .np-hub-format-card {
	border-color: #dcd1bc;
}

html[data-theme="dark"] .np-hub-home--paper {
	--np-hub-home-panel: #1c1812;
	--np-hub-home-soft: #2a241b;
	--np-bg: #17140f;
	--np-surface: #211c15;
	--np-surface-raised: #1c1812;
	--np-border: #3c3428;
	--np-ink: #f5efe1;
	--np-muted: #b8aa92;
	background: #17140f;
	color: #f5efe1;
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-home__masthead {
	background: #201b14;
	color: #f5efe1;
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-home__masthead-shade {
	background: linear-gradient(90deg, rgba(23, 20, 15, 0.98), rgba(23, 20, 15, 0.76) 64%, rgba(23, 20, 15, 0.25));
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-home__masthead h1,
html[data-theme="dark"] .np-hub-home--paper .np-hub-home__brandline strong,
html[data-theme="dark"] .np-hub-home--paper .np-hub-home__nav a,
html[data-theme="dark"] .np-hub-home--paper .np-hub-channel-card__body a,
html[data-theme="dark"] .np-hub-home--paper .np-hub-dossier h3 a,
html[data-theme="dark"] .np-hub-home--paper .np-hub-format-card > a {
	color: #f5efe1;
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-home__brandline span,
html[data-theme="dark"] .np-hub-home--paper .np-hub-home__description,
html[data-theme="dark"] .np-hub-home--paper .np-hub-home__masthead-meta {
	color: #b8aa92;
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-home__nav {
	background: rgba(23, 20, 15, 0.95);
}

html[data-theme="dark"] .np-hub-home--paper .np-hub-section-heading,
html[data-theme="dark"] .np-hub-home--paper .np-hub-channel-card,
html[data-theme="dark"] .np-hub-home--paper .np-hub-dossier,
html[data-theme="dark"] .np-hub-home--paper .np-hub-format-card {
	border-color: #3c3428;
}

.np-hub-home--broadcast .np-hub-home__masthead {
	background: #080c12;
}

.np-hub-home--broadcast .np-hub-home__masthead-shade {
	background: linear-gradient(90deg, rgba(5, 8, 13, 0.98) 0%, rgba(5, 8, 13, 0.83) 52%, rgba(5, 8, 13, 0.34));
}

.np-hub-home--broadcast .np-hub-home__masthead::before {
	top: -45%;
	right: -12%;
	width: 65vw;
	border-width: 1px;
	border-radius: 0;
	background: repeating-linear-gradient(90deg, transparent 0 30px, color-mix(in srgb, var(--np-hub-home-accent) 18%, transparent) 31px 32px);
	transform: rotate(-12deg);
}

.np-hub-home--broadcast .np-hub-home__identity,
.np-hub-home--broadcast .np-hub-section-heading > div > span {
	padding: 5px 8px;
	background: var(--np-hub-home-accent);
	color: var(--np-hub-home-contrast);
	letter-spacing: 0.12em;
}

.np-hub-home--broadcast .np-hub-home__identity b {
	display: none;
}

.np-hub-home--broadcast .np-hub-home__masthead h1 {
	text-transform: uppercase;
}

.np-hub-home--minimal {
	background: var(--np-bg);
}

.np-hub-home--minimal .np-hub-home__masthead {
	min-height: clamp(330px, 39vw, 470px);
	border-bottom: 1px solid var(--np-border);
	background: var(--np-bg);
	color: var(--np-ink);
}

.np-hub-home--minimal .np-hub-home__masthead-media,
.np-hub-home--minimal .np-hub-home__masthead-shade,
.np-hub-home--minimal .np-hub-home__masthead::before {
	display: none;
}

.np-hub-home--minimal .np-hub-home__masthead h1 {
	color: var(--np-ink);
}

.np-hub-home--minimal .np-hub-home__brandline span,
.np-hub-home--minimal .np-hub-home__description,
.np-hub-home--minimal .np-hub-home__masthead-meta {
	color: var(--np-muted);
}

.np-hub-home--minimal .np-hub-home__identity b {
	background: transparent;
}

.np-hub-home--minimal .np-hub-story,
.np-hub-home--minimal .np-hub-channel-card,
.np-hub-home--minimal .np-hub-dossier,
.np-hub-home--minimal .np-hub-format-card {
	border-radius: 0;
	box-shadow: none;
}

@supports not (background: color-mix(in srgb, red 20%, transparent)) {
	.np-hub-home {
		--np-hub-home-soft: var(--np-surface);
		background: var(--np-bg);
	}

	.np-hub-home__masthead {
		background: #071425;
	}

	.np-hub-home__nav {
		background: var(--np-surface-raised);
	}

	.np-hub-local-nav {
		--np-hub-home-soft: var(--np-surface);
	}

	.np-hub-home__masthead::before {
		display: none;
	}
}

@media (max-width: 1100px) {
	.np-hub-newsroom__grid {
		grid-template-columns: 1fr;
	}

	.np-hub-newsroom__side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.np-hub-newsroom__side--1 {
		grid-template-columns: 1fr;
	}

	.np-hub-story--lead {
		min-height: 520px;
	}

	.np-hub-story--side {
		min-height: 293px;
	}

	.np-hub-formats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.admin-bar .np-hub-home__nav {
		top: calc(var(--np-header-height, 142px) + 46px);
	}

	.admin-bar .np-header--static ~ .np-hub-home .np-hub-home__nav {
		top: 46px;
	}

	.admin-bar .np-header--static ~ .np-main .np-hub-local-nav {
		top: 46px;
	}

	.np-hub-home__masthead {
		min-height: 390px;
	}

	.np-hub-home__masthead-inner {
		gap: 25px;
	}

	.np-hub-home__masthead h1 {
		font-size: clamp(52px, 11vw, 80px);
	}

	.np-hub-section-heading {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.np-hub-section-heading > p {
		max-width: 560px;
	}

	.np-hub-newsroom__grid {
		grid-template-columns: 1fr;
	}

	.np-hub-newsroom__side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.np-hub-story--lead {
		min-height: 520px;
	}

	.np-hub-story--side {
		min-height: 300px;
	}

	.np-hub-channels__grid,
	.np-hub-dossiers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.np-hub-home__masthead {
		min-height: 390px;
	}

	.np-hub-home__masthead-shade {
		background: linear-gradient(180deg, rgba(3, 11, 22, 0.76), rgba(3, 11, 22, 0.96));
	}

	.np-hub-home__masthead-inner {
		padding-top: 24px;
		padding-bottom: 26px;
	}

	.np-hub-home__brandline {
		font-size: 9px;
	}

	.np-hub-home__masthead h1 {
		font-size: clamp(46px, 12vw, 66px);
		line-height: 0.88;
	}

	.np-hub-home__description {
		margin-top: 18px;
		font-size: 15px;
	}

	.np-hub-home__masthead-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.np-hub-home__masthead-meta span + span::before {
		display: none;
	}

	.np-hub-home__nav {
		position: relative;
		top: auto;
	}

	.admin-bar .np-hub-home__nav,
	.admin-bar .np-header--static ~ .np-main .np-hub-local-nav {
		top: auto;
	}

	.np-hub-home__nav-track {
		min-height: 52px;
		padding-right: 18px;
	}

	.np-hub-local-nav__identity {
		display: none;
	}

	.np-hub-home__content {
		padding-top: 36px;
	}

	.np-hub-home__content > section + section,
	.np-hub-home__content > .np-hub-crossings + section,
	.np-hub-home__content > section + .np-hub-crossings {
		margin-top: 58px;
	}

	.np-hub-section-heading {
		margin-bottom: 18px;
	}

	.np-hub-section-heading h2 {
		font-size: 34px;
	}

	.np-hub-newsroom__side,
	.np-hub-channels__grid,
	.np-hub-dossiers__grid,
	.np-hub-formats__grid {
		grid-template-columns: 1fr;
	}

	.np-hub-story--lead {
		min-height: 470px;
	}

	.np-hub-story--side {
		min-height: 320px;
	}

	.np-hub-story h2 {
		font-size: 30px;
	}

	.np-hub-story--side h2 {
		font-size: 24px;
	}

	.np-hub-story p {
		display: none;
	}

	.np-hub-story__meta span {
		display: none;
	}

	.np-hub-channel-card__media,
	.np-hub-dossier {
		min-height: 0;
	}

	.np-hub-home .np-hub-crossings {
		padding: 20px;
	}
}
