/*
Theme Name: Newsabler
Theme URI: https://newsabler.com/
Author: Nuvex Media
Author URI: https://nuvexmedia.com/
Description: A clean aggregator-first WordPress theme for Newsabler and the wider Nuvex Media publishing network.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: newsabler
*/

:root {
	--bg: #ffffff;
	--surface: #ffffff;
	--surface-soft: #f3f1eb;
	--ink: #0a0a0a;
	--muted: #5a5a5a;
	--line: #ddd8cf;
	--line-strong: #b2aba0;
	--accent: #c93a1b;
	--shell: min(73.125rem, calc(100vw - 2rem));
	--brand-aistify: #b6168f;
	--brand-aistify-gradient: linear-gradient(39deg, #f90e5b 25%, #7164e9 66%, #aa29d4 90%);
	--brand-coinscreamer: #008793;
	--brand-coinscreamer-gradient: linear-gradient(39deg, #004d7a 23%, #008793 45%, #00bf72 70%, #6adf3b 85%, #a8eb12 95%);
	--brand-fluxgamer: #6e47ff;
	--brand-fluxgamer-gradient: linear-gradient(39deg, #ffbb98 25%, #9e84ff 66%, #6e47ff 90%);
	--brand-marketspeaker: #d72638;
	--brand-marketspeaker-gradient: linear-gradient(39deg, #d72638 0%, #f44336 20%, #ff7043 35%, #81c784 65%, #4caf50 80%, #2e7d32 100%);
	--brand-robotsbeat: #5d6ee2;
	--brand-robotsbeat-gradient: linear-gradient(90deg, #a95bd4 0%, #736ae0 28%, #5d6ee2 43%, #2f8bf5 62%, #00b3ff 76%, #00d7c2 90%, #14e18e 100%);
	--brand-travelcapybara: #0e9ff9;
	--brand-travelcapybara-gradient: linear-gradient(39deg, #0e9ff9 25%, #64e9e3 66%, #9ffac7 90%);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: "Oxygen", sans-serif;
	line-height: 1.5;
}

/* AIstify-aligned homepage system. */
body.is-newsabler-front {
	background: linear-gradient(180deg, #f7f8fb 0, #ffffff 46rem);
	color: #101828;
	font-family: "Oxygen", sans-serif;
	font-size: 15px;
	font-weight: 400;
}

body.is-newsabler-front h1,
body.is-newsabler-front h2,
body.is-newsabler-front h3,
body.is-newsabler-front h4,
.site-header,
.primary-navigation,
.site-footer {
	font-family: "Figtree", sans-serif;
}

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

.site-header {
	box-shadow: none;
}

.site-header__inner {
	min-height: 60px;
	padding: 0.55rem 0;
}

.header-topics {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.9rem, 1.7vw, 1.55rem);
	margin-left: auto;
	font-size: 0.91rem;
	font-weight: 700;
}

.header-topics a {
	position: relative;
	color: #ffffff;
	white-space: nowrap;
}

.header-topics a::after {
	position: absolute;
	right: 0;
	bottom: -0.45rem;
	left: 0;
	height: 2px;
	background: var(--topic-accent, #ffffff);
	content: "";
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 180ms ease, transform 180ms ease;
}

.header-topics a:hover::after,
.header-topics a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.menu-toggle {
	margin-left: clamp(1rem, 2vw, 1.8rem);
}

.menu-toggle__bars {
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 0;
}

.menu-toggle__label {
	display: none;
}

.network-strip {
	border-top: 1px solid #24242a;
	background: #121217;
	color: #ffffff;
	overflow: hidden;
}

.network-strip__inner {
	display: flex;
	align-items: center;
	gap: 1.65rem;
	min-height: 48px;
	overflow-x: auto;
	scrollbar-width: none;
	white-space: nowrap;
}

.network-strip__inner::-webkit-scrollbar {
	display: none;
}

.network-strip__label,
.network-strip a {
	font-family: "Figtree", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
}

.network-strip__label {
	color: #d43b2a;
}

.network-strip a {
	position: relative;
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: filter 180ms ease;
}

.network-strip a:hover,
.network-strip a:focus-visible {
	filter: brightness(1.18) saturate(1.15);
}

.network-strip a::before {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: var(--brand-gradient);
	content: "";
}

body.is-newsabler-front .site-main {
	padding-bottom: 3.5rem;
}

body.is-newsabler-front .homepage-top-row {
	display: grid;
	grid-template-columns: 370px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
	padding-top: 40px;
}

.aistify-section-title {
	width: 100%;
	margin: 0 0 30px;
	padding: 0 0 15px;
	border-bottom: 1px solid #e1e5ea;
	color: #8f9698;
	font-family: "Figtree", sans-serif;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 24px;
	text-transform: uppercase;
}

body.is-newsabler-front .briefs-column {
	padding: 16px;
	border: 1px solid #e4e9ef;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 8px 26px rgba(16, 24, 40, 0.035);
}

body.is-newsabler-front .briefs-column .aistify-section-title {
	margin-bottom: 4px;
}

body.is-newsabler-front .briefs-column__items {
	display: block;
	margin: 0;
}

body.is-newsabler-front .briefs-column__item {
	padding: 16px 0 17px;
	border: 0;
	border-bottom: 1px solid #e4e9ef;
}

body.is-newsabler-front .briefs-column__item:last-child {
	border-bottom: 0;
}

.briefs-column__date,
.briefs-column__source {
	margin: 0;
	font-family: "Figtree", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
}

.briefs-column__date {
	color: #8f9698;
}

.briefs-column__source {
	margin-top: 5px;
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.is-newsabler-front .briefs-column__item h3 {
	margin: 3px 0 0;
	font-family: "Figtree", sans-serif;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 24px;
}

body.is-newsabler-front .top-stories-column__grid {
	display: grid;
	grid-template-columns: minmax(0, 470px) minmax(0, 270px);
	gap: 30px;
	align-items: start;
}

body.is-newsabler-front .top-stories-column__stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

body.is-newsabler-front .remote-card {
	display: block;
	border: 0;
	background: transparent;
	box-shadow: none;
}

body.is-newsabler-front .remote-card__media {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #e9edf2;
}

body.is-newsabler-front .remote-card__media::before,
body.is-newsabler-front .news-preview-card__media::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 3px;
	background: var(--brand-gradient);
	content: "";
}

body.is-newsabler-front .remote-card--lead .remote-card__media,
body.is-newsabler-front .remote-card--stack .remote-card__media {
	aspect-ratio: 16 / 10;
}

body.is-newsabler-front .remote-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 350ms ease, transform 350ms ease;
}

body.is-newsabler-front .remote-card:hover .remote-card__media img {
	filter: brightness(78%) saturate(94%);
	transform: scale(1.018);
}

body.is-newsabler-front .remote-card__body,
body.is-newsabler-front .remote-card--lead .remote-card__body {
	padding: 16px 0 0;
}

body.is-newsabler-front .remote-card--stack .remote-card__body {
	padding-top: 13px;
}

body.is-newsabler-front .remote-card__eyebrow {
	margin-bottom: 7px;
}

body.is-newsabler-front .remote-card__tag {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--topic-accent);
	font-family: "Figtree", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

body.is-newsabler-front .remote-card__meta {
	gap: 7px;
	margin: 0 0 7px;
	color: #8f9698;
	font-family: "Figtree", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

body.is-newsabler-front .brand-chip {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	font-family: "Figtree", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.is-newsabler-front .remote-card__title,
body.is-newsabler-front .remote-card--lead .remote-card__title {
	margin: 0 0 6px;
	font-family: "Figtree", sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 32px;
}

body.is-newsabler-front .remote-card--stack .remote-card__title {
	display: -webkit-box;
	margin: 0 0 5px;
	overflow: hidden;
	font-size: 16px;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.is-newsabler-front .remote-card__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #566171;
	font-family: "Oxygen", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.is-newsabler-front .remote-card__cta,
body.is-newsabler-front .remote-card--stack .remote-card__excerpt {
	display: none;
}

body.is-newsabler-front .news-index-layout {
	display: grid;
	grid-template-columns: minmax(0, 770px) minmax(0, 370px);
	gap: 30px;
	align-items: start;
	padding-top: 46px;
}

body.is-newsabler-front .news-index-list {
	display: block;
}

body.is-newsabler-front .news-preview-card {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
	padding: 25px 0;
	border: 0;
	border-bottom: 1px solid #e4e9ef;
}

body.is-newsabler-front .news-preview-card:first-child {
	padding-top: 0;
}

.news-preview-card__side,
.news-preview-card__body {
	min-width: 0;
}

body.is-newsabler-front .news-preview-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 8px;
	background: #e9edf2;
}

body.is-newsabler-front .news-preview-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 350ms ease, transform 350ms ease;
}

body.is-newsabler-front .news-preview-card:hover .news-preview-card__media img {
	filter: brightness(78%) saturate(94%);
	transform: scale(1.018);
}

.news-preview-card__byline {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	margin: 11px 0 0;
	color: #8f9698;
	font-family: "Figtree", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
}

.news-preview-card__category {
	margin: 0 0 8px !important;
	color: var(--topic-accent);
	font-family: "Figtree", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 16px;
	text-transform: uppercase;
}

body.is-newsabler-front .news-preview-card h3 {
	margin: 0 0 10px;
	font-family: "Figtree", sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 32px;
}

body.is-newsabler-front .news-preview-card__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #566171;
	font-family: "Oxygen", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.is-newsabler-front .news-index-layout__aside {
	position: static;
}

body.is-newsabler-front .sidebar-panel {
	padding: 16px;
	border: 1px solid #e4e9ef;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 8px 26px rgba(16, 24, 40, 0.035);
}

body.is-newsabler-front .sidebar-panel + .sidebar-panel {
	margin-top: 24px;
}

body.is-newsabler-front .sidebar-panel .aistify-section-title {
	margin-bottom: 4px;
}

body.is-newsabler-front .sidebar-panel__topics,
body.is-newsabler-front .sidebar-panel__list {
	display: block;
	margin: 0;
}

body.is-newsabler-front .sidebar-topic,
body.is-newsabler-front .sidebar-panel__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid #e4e9ef;
	color: #101828;
	font-family: "Figtree", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

body.is-newsabler-front .sidebar-topic:last-child,
body.is-newsabler-front .sidebar-panel__list a:last-child {
	border-bottom: 0;
}

body.is-newsabler-front .sidebar-topic span::before,
body.is-newsabler-front .sidebar-panel__list a span::before {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 9px;
	border-radius: 50%;
	background: var(--topic-accent, var(--brand-gradient));
	content: "";
}

body.is-newsabler-front .sidebar-panel__list a span {
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.is-newsabler-front [data-brand] .remote-card__title a:hover,
body.is-newsabler-front [data-brand] .remote-card__title a:focus-visible,
body.is-newsabler-front [data-brand].news-preview-card h3 a:hover,
body.is-newsabler-front [data-brand].news-preview-card h3 a:focus-visible,
body.is-newsabler-front [data-brand].briefs-column__item h3 a:hover,
body.is-newsabler-front [data-brand].briefs-column__item h3 a:focus-visible {
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.is-newsabler-front .sidebar-topic strong,
body.is-newsabler-front .sidebar-panel__list strong {
	color: #8f9698;
	font-size: 12px;
}

body.is-newsabler-front .site-footer {
	margin-top: 0;
}

@media (max-width: 74rem) {
	.header-topics {
		gap: 0.9rem;
	}

	body.is-newsabler-front .homepage-top-row,
	body.is-newsabler-front .news-index-layout {
		grid-template-columns: 320px minmax(0, 1fr);
	}

	body.is-newsabler-front .top-stories-column__grid {
		grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.9fr);
		gap: 20px;
	}
}

@media (max-width: 62rem) {
	.admin-bar .site-header {
		top: 32px;
	}

	.header-topics {
		display: none;
	}

	.menu-toggle {
		margin-left: auto;
	}

	body.is-newsabler-front .homepage-top-row,
	body.is-newsabler-front .news-index-layout {
		grid-template-columns: 1fr;
	}

	body.is-newsabler-front .briefs-column {
		order: 2;
	}

	body.is-newsabler-front .top-stories-column {
		order: 1;
	}

	body.is-newsabler-front .news-index-layout__aside {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	body.is-newsabler-front .sidebar-panel + .sidebar-panel {
		margin-top: 0;
	}
}

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

	body.is-newsabler-front .homepage-top-row {
		gap: 30px;
		padding-top: 28px;
	}

	body.is-newsabler-front .top-stories-column__grid,
	body.is-newsabler-front .top-stories-column__stack,
	body.is-newsabler-front .news-index-layout__aside {
		grid-template-columns: 1fr;
	}

	body.is-newsabler-front .remote-card--stack {
		display: grid;
		grid-template-columns: minmax(130px, 42%) minmax(0, 1fr);
		gap: 16px;
	}

	body.is-newsabler-front .remote-card--stack .remote-card__body {
		padding: 0;
	}

	body.is-newsabler-front .news-preview-card {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 18px;
	}

	body.is-newsabler-front .news-preview-card h3 {
		font-size: 19px;
		line-height: 26px;
	}

	body.is-newsabler-front .news-preview-card__excerpt {
		display: none;
	}
}

@media (max-width: 36rem) {
	:root {
		--shell: calc(100vw - 1.5rem);
	}

	.network-strip__inner {
		gap: 1.15rem;
	}

	.aistify-section-title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	body.is-newsabler-front .news-preview-card {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 0;
	}

	.news-preview-card__byline {
		margin-top: 7px;
	}

	body.is-newsabler-front .news-preview-card h3 {
		font-size: 16px;
		line-height: 22px;
	}

	.news-preview-card__category {
		margin-bottom: 5px !important;
		font-size: 9px;
	}

	body.is-newsabler-front .briefs-column,
	body.is-newsabler-front .sidebar-panel {
		border-radius: 8px;
	}
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.screen-reader-shortcut {
	position: absolute;
	left: -9999px;
	top: auto;
}

.screen-reader-shortcut:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: #000000;
	color: #ffffff;
	border-radius: 999px;
}

[data-brand] {
	--brand-accent: #111111;
	--brand-gradient: linear-gradient(90deg, #111111, #555555);
}

[data-brand="aistify"] {
	--brand-accent: var(--brand-aistify);
	--brand-gradient: var(--brand-aistify-gradient);
}

[data-brand="coinscreamer"] {
	--brand-accent: var(--brand-coinscreamer);
	--brand-gradient: var(--brand-coinscreamer-gradient);
}

[data-brand="fluxgamer"] {
	--brand-accent: var(--brand-fluxgamer);
	--brand-gradient: var(--brand-fluxgamer-gradient);
}

[data-brand="marketspeaker"] {
	--brand-accent: var(--brand-marketspeaker);
	--brand-gradient: var(--brand-marketspeaker-gradient);
}

[data-brand="robotsbeat"] {
	--brand-accent: var(--brand-robotsbeat);
	--brand-gradient: var(--brand-robotsbeat-gradient);
}

[data-brand="travelcapybara"] {
	--brand-accent: var(--brand-travelcapybara);
	--brand-gradient: var(--brand-travelcapybara-gradient);
}

[data-topic] {
	--topic-accent: var(--accent);
	--topic-soft: #f4ede8;
}

[data-topic*="robot"] {
	--topic-accent: #1d4ed8;
	--topic-soft: #e8f0ff;
}

[data-topic*="ai"],
[data-topic*="artificial-intelligence"],
[data-topic*="machine-learning"] {
	--topic-accent: #7c3aed;
	--topic-soft: #f1e8ff;
}

[data-topic*="travel"],
[data-topic*="aviation"],
[data-topic*="airline"] {
	--topic-accent: #0f766e;
	--topic-soft: #e8f7f4;
}

[data-topic*="market"],
[data-topic*="finance"],
[data-topic*="econom"],
[data-topic*="stock"] {
	--topic-accent: #047857;
	--topic-soft: #e7f7ef;
}

[data-topic*="crypto"],
[data-topic*="bitcoin"],
[data-topic*="blockchain"] {
	--topic-accent: #b45309;
	--topic-soft: #fff3df;
}

[data-topic*="game"],
[data-topic*="esports"] {
	--topic-accent: #be185d;
	--topic-soft: #ffe6f0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #000000;
	border-bottom: 1px solid #1f1f1f;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.site-branding {
	min-width: 0;
}

.site-wordmark {
	display: inline-flex;
	align-items: center;
}

.site-wordmark {
	flex-direction: column;
	align-items: start;
	gap: 0.05rem;
}

.site-wordmark__eyebrow {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #ffffff;
}

.site-wordmark__title {
	font-size: 1.9rem;
	line-height: 0.95;
	font-weight: 800;
	color: #ffffff;
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	border: 0;
	background: transparent;
	padding: 0;
	color: #ffffff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.menu-toggle__bars {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.28rem;
	width: 3rem;
	height: 3rem;
	border: 1px solid #464646;
	border-radius: 999px;
}

.menu-toggle__bars span {
	width: 1rem;
	height: 2px;
	background: #ffffff;
}

.primary-navigation {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(28rem, calc(100vw - 1.5rem));
	z-index: 130;
	opacity: 0;
	pointer-events: none;
	transform: translateX(100%);
	transition: transform 220ms ease, opacity 180ms ease;
}

.primary-navigation.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.primary-navigation__panel {
	height: 100%;
	padding: 1.25rem 1.1rem 1.5rem;
	background: #111111;
	border-left: 1px solid #2d2d2d;
	overflow-y: auto;
}

.primary-navigation__header,
.primary-navigation__section,
.primary-navigation__footer {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #2a2a2a;
}

.primary-navigation__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.primary-navigation__eyebrow,
.primary-navigation__label,
.menu-list a,
.footer-menu a,
.eyebrow,
.section-kicker,
.remote-card__meta,
.source-story__meta,
.entry-article__meta,
.post-card__meta,
.briefs-rail__meta,
.latest-story__meta {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.topic-pill,
.brand-chip {
	display: inline-flex;
	align-items: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 800;
	text-transform: uppercase;
}

.topic-pill-wrap {
	margin: 0 0 0.55rem;
}

.topic-pill {
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: var(--topic-soft);
	color: var(--topic-accent);
	font-size: 0.72rem;
	letter-spacing: 0.11em;
}

.brand-chip {
	padding: 0.22rem 0.48rem;
	border-radius: 999px;
	border: 1px solid var(--brand-accent);
	background: #ffffff;
	color: var(--brand-accent);
	font-size: 0.64rem;
	letter-spacing: 0.1em;
}

.primary-navigation__eyebrow,
.primary-navigation__label {
	margin: 0;
	color: #ffffff;
}

.primary-navigation__close {
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid #434343;
	background: transparent;
	border-radius: 999px;
}

.primary-navigation__close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1rem;
	height: 2px;
	background: #ffffff;
}

.primary-navigation__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.primary-navigation__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-list,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation .menu-list {
	display: grid;
	gap: 0.8rem;
	margin-top: 0.85rem;
}

.primary-navigation .menu-list a,
.primary-navigation__brands a {
	color: #ffffff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.primary-navigation__brands {
	display: grid;
	gap: 0.8rem;
	margin-top: 0.85rem;
}

.primary-navigation__brands a[data-brand] {
	position: relative;
	padding-left: 1rem;
	background: var(--brand-gradient);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.primary-navigation__brands a[data-brand]::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brand-gradient);
	content: "";
	transform: translateY(-50%);
}

.primary-navigation__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.95rem 1rem;
	border-radius: 999px;
	background: #ffffff;
	color: #000000;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-scrim {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: rgba(0, 0, 0, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

body.menu-is-open .menu-scrim {
	opacity: 1;
	pointer-events: auto;
}

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

.site-main {
	padding-bottom: 4rem;
}

.home-intro,
.homepage-top-row,
.news-index-layout,
.publication-columns,
.archive-hero,
.content-shell {
	padding-top: 2rem;
}

.eyebrow,
.section-kicker {
	color: var(--accent);
}

.home-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	gap: 1.5rem 2rem;
	padding-bottom: 1.4rem;
	border-bottom: 3px solid #000000;
}

.home-intro__main {
	display: grid;
	gap: 0.35rem;
}

.home-intro__aside {
	display: grid;
	gap: 0.9rem;
	align-self: end;
}

.home-intro h1,
.section-heading h2,
.remote-card__title,
.briefs-column__item h3,
.news-preview-card h3,
.publication-column h3,
.publication-column h4,
.archive-hero h1,
.entry-article h1,
.post-card__title {
	margin: 0;
	line-height: 1.03;
	letter-spacing: -0.03em;
	font-family: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 800;
}

.home-intro h1 {
	font-size: clamp(2.5rem, 5vw, 4.4rem);
	max-width: 11ch;
	margin-top: 0.35rem;
}

.home-intro__dek,
.home-intro__update,
.section-heading p,
.remote-card__excerpt,
.news-preview-card p,
.publication-column__empty,
.archive-hero__intro,
.entry-content,
.site-footer__copy {
	color: var(--muted);
}

.home-intro__dek,
.home-intro__update {
	max-width: 34rem;
	margin: 0;
	font-size: 0.82rem;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-intro__brands {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0;
}

.home-intro__brand {
	display: inline-flex;
	align-items: center;
	padding: 0.52rem 0.78rem;
	border: 1px solid var(--line);
	border-top: 3px solid var(--brand-accent);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.homepage-top-row {
	display: grid;
	grid-template-columns: minmax(16rem, 19rem) minmax(0, 1fr);
	gap: 1.6rem;
	align-items: start;
}

.briefs-column {
	padding: 0;
	border-top: 3px solid #000000;
	background: #ffffff;
}

.briefs-column__head h2 {
	font-size: 1.6rem;
	margin-top: 0.2rem;
}

.briefs-column__items {
	display: grid;
	gap: 0;
	margin-top: 1rem;
}

.briefs-column__item {
	padding: 0.9rem 0 0.95rem 0.85rem;
	border-top: 1px solid var(--line);
	border-left: 3px solid var(--brand-accent);
}

.briefs-column__item:first-child {
	border-top: 0;
	padding-top: 0.1rem;
}

.briefs-column__meta,
.remote-card__meta,
.news-preview-card__meta,
.publication-column__meta,
.entry-article__meta,
.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	color: var(--muted);
	align-items: center;
}

.briefs-column__meta,
.news-preview-card__meta,
.publication-column__meta {
	margin: 0 0 0.35rem;
}

.briefs-column__item h3 {
	font-size: 1.15rem;
}

.top-stories-column__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.9fr);
	gap: 1rem;
	align-items: start;
}

.top-stories-column__stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin-bottom: 1rem;
	padding-bottom: 0.7rem;
	border-bottom: 3px solid #000000;
}

.section-heading--top {
	margin-bottom: 1rem;
}

.section-heading h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	margin-top: 0.2rem;
}

.news-index-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(16rem, 18rem);
	gap: 1.75rem;
	align-items: start;
}

.news-index-list,
.publication-columns__grid,
.post-grid {
	display: grid;
	gap: 1rem;
}

.news-preview-card {
	display: grid;
	grid-template-columns: minmax(13rem, 15.5rem) minmax(0, 1fr);
	gap: 1rem;
	padding: 1.15rem 0;
	border-top: 1px solid var(--line);
}

.news-preview-card:first-child {
	padding-top: 0;
	border-top: 0;
}

.news-preview-card__media {
	aspect-ratio: 16 / 10;
	background: var(--surface-soft);
	overflow: hidden;
}

.news-preview-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-preview-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ececec 0%, #f8f8f8 100%);
}

.news-preview-card h3 {
	font-size: 1.42rem;
}

.news-preview-card p:last-child {
	margin: 0.55rem 0 0;
}

.news-index-layout__aside {
	position: sticky;
	top: 6rem;
}

.sidebar-panel {
	padding-top: 0.9rem;
	border-top: 3px solid #000000;
}

.sidebar-panel + .sidebar-panel {
	margin-top: 1.5rem;
}

.sidebar-panel__head h3 {
	margin: 0.2rem 0 0;
	font-size: 1.6rem;
	line-height: 1.05;
}

.sidebar-panel__list {
	display: grid;
	gap: 0.65rem;
	margin-top: 1rem;
}

.sidebar-panel__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 0 0.8rem 0.8rem;
	border-top: 1px solid var(--line);
	border-left: 3px solid var(--brand-accent);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sidebar-panel__list a:first-child {
	border-top: 0;
}

.sidebar-panel__list strong {
	font-size: 1rem;
}

.sidebar-panel__topics {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
}

.sidebar-topic {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
	border-top: 1px solid var(--line);
}

.sidebar-topic:first-child {
	border-top: 0;
}

.sidebar-topic strong {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--muted);
}

.remote-card,
.publication-column,
.archive-hero,
.entry-article,
.post-card,
.empty-state {
	background: #ffffff;
	border: 1px solid var(--line);
}

.remote-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border-top: 3px solid var(--brand-accent);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.remote-card__media,
.post-card__media,
.entry-article__media {
	background: var(--surface-soft);
	overflow: hidden;
}

.remote-card__media {
	aspect-ratio: 16 / 10;
}

.remote-card__media img,
.post-card__media img,
.entry-article__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.remote-card__placeholder,
.post-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ececec 0%, #f8f8f8 100%);
}

.remote-card__body,
.post-card__body {
	padding: 1.05rem;
}

.remote-card__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
}

.remote-card__tag,
.remote-card__network {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.remote-card__tag {
	padding: 0.44rem 0.82rem;
	background: var(--topic-soft);
	color: var(--topic-accent);
	font-size: 0.72rem;
	letter-spacing: 0.11em;
}

.remote-card__meta {
	margin: 0.7rem 0 0;
}

.remote-card__title {
	font-size: 1.45rem;
	margin-top: 0.55rem;
}

.remote-card__title a,
.news-preview-card h3 a,
.briefs-column__item h3 a,
.publication-column__story h4 a {
	transition: color 180ms ease;
}

.remote-card__title a:hover,
.news-preview-card h3 a:hover,
.briefs-column__item h3 a:hover,
.publication-column__story h4 a:hover {
	color: var(--brand-accent);
}

.remote-card__excerpt {
	margin: 0.65rem 0 0.85rem;
	font-size: 0.96rem;
}

.remote-card__cta,
.brand-desk__header a,
.entry-content a {
	color: var(--brand-accent);
}

.remote-card__cta {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.remote-card--lead .remote-card__media {
	aspect-ratio: 16 / 9;
}

.remote-card--lead .remote-card__body {
	padding: 1.25rem;
}

.remote-card--lead .remote-card__title {
	font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.remote-card--lead .remote-card__excerpt {
	font-size: 1rem;
	line-height: 1.55;
}

.remote-card--stack .remote-card__title {
	font-size: 1.18rem;
}

.remote-card--stack .remote-card__excerpt,
.remote-card--stack .remote-card__cta {
	display: none;
}

.publication-columns__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.publication-column {
	padding: 1rem;
	border-top: 3px solid var(--brand-accent);
	background: #ffffff;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.publication-column__header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.8rem;
	margin-bottom: 0.9rem;
	border-bottom: 1px solid var(--line);
}

.publication-column__header h3 {
	font-size: 1.2rem;
}

.publication-column__header a {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.publication-column__stories {
	display: grid;
	gap: 0.9rem;
}

.publication-column__story {
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
}

.publication-column__story:first-child {
	padding-top: 0;
	border-top: 0;
}

.publication-column__story h4 {
	font-size: 1.06rem;
	margin: 0.25rem 0 0;
}

.publication-column__story .topic-pill {
	font-size: 0.64rem;
	padding: 0.3rem 0.55rem;
}

.publication-column__empty {
	margin: 0;
}

.archive-hero,
.entry-article {
	padding: 1.5rem;
}

.archive-hero h1,
.entry-article h1 {
	font-size: clamp(2.2rem, 4vw, 3.9rem);
	margin: 0.45rem 0 0.75rem;
}

.post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1rem;
}

.post-card__media {
	aspect-ratio: 16 / 10;
}

.post-card__title {
	font-size: 1.3rem;
	margin-top: 0.55rem;
}

.content-shell {
	max-width: 54rem;
}

.entry-article__header {
	margin-bottom: 1.25rem;
}

.entry-article__media {
	margin-bottom: 1.35rem;
}

.entry-content > * + * {
	margin-top: 1rem;
}

.entry-content a {
	text-decoration: underline;
}

.pagination-wrap {
	grid-column: 1 / -1;
}

.pagination .nav-links,
.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--line-strong);
	background: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
}

.page-numbers.current {
	background: #000000;
	border-color: #000000;
	color: #ffffff;
}

.empty-state {
	padding: 1.5rem;
	text-align: center;
}

.site-footer {
	margin-top: 3rem;
	padding: 2rem 0 2.5rem;
	background: #000000;
	color: #ffffff;
}

.site-footer__inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-footer__title {
	margin: 0 0 0.35rem;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer__copy,
.site-footer__meta p {
	margin: 0;
	max-width: 34rem;
	color: rgba(255, 255, 255, 0.76);
}

.site-footer__meta {
	text-align: right;
}

.footer-menu a {
	color: #ffffff;
}

@media (max-width: 78rem) {
	.publication-columns__grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 70rem) {
	.home-intro,
	.homepage-top-row,
	.news-index-layout {
		grid-template-columns: 1fr;
	}

	.home-intro__brands {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.top-stories-column__grid,
	.top-stories-column__stack,
	.publication-columns__grid,
	.post-grid,
	.site-footer__inner,
	.section-heading {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 56rem) {
	.news-preview-card {
		grid-template-columns: 1fr;
	}

	.menu-toggle__label {
		display: none;
	}

	.site-footer__meta {
		text-align: left;
	}
}

@media (max-width: 40rem) {
	:root {
		--shell: calc(100vw - 1rem);
	}

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

	.home-intro__brand {
		width: 100%;
		justify-content: space-between;
	}

	.home-intro h1,
	.remote-card--lead .remote-card__title,
	.archive-hero h1,
	.entry-article h1 {
		max-width: none;
	}

	.remote-card__body,
	.post-card__body,
	.publication-column,
	.archive-hero,
	.entry-article,
	.empty-state {
		padding: 1rem;
	}
}

/* Keep the compact AIstify-style masthead ahead of legacy theme rules. */
.site-header .site-header__inner {
	min-height: 60px;
	padding: 0.55rem 0;
}

.site-header .menu-toggle {
	margin-left: clamp(1rem, 2vw, 1.8rem);
	gap: 0;
}

.site-header .menu-toggle__bars {
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 0;
}

.site-header .menu-toggle__label {
	display: none;
}

@media (max-width: 62rem) {
	.site-header .menu-toggle {
		margin-left: auto;
	}
}

/* Scalable Newsabler identity: inline SVG mark plus the site's Figtree wordmark. */
.site-logo {
	display: inline-grid;
	grid-template-columns: 48px auto;
	gap: 10px;
	align-items: center;
	color: #ffffff;
}

.site-logo__mark {
	display: block;
	width: 48px;
	height: 48px;
	overflow: visible;
}

.site-logo__mark-link {
	display: block;
	color: inherit;
}

.site-logo__dot {
	fill: currentColor;
}

.site-logo__dot--accent {
	fill: #d43b2a;
}

.site-logo__dot--muted {
	opacity: 0.58;
}

.site-logo__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.site-logo__name {
	color: #ffffff;
	font-family: "Figtree", sans-serif;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.site-logo__company {
	margin-top: 6px;
	color: #b9bbc1;
	font-family: "Figtree", sans-serif;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-logo__company--link {
	transition: color 160ms ease;
}

.site-logo__company--link:hover,
.site-logo__company--link:focus-visible {
	color: #ffffff;
}

.site-footer__brand .site-logo {
	grid-template-columns: 44px auto;
}

.site-footer__brand .site-logo__mark {
	width: 44px;
	height: 44px;
}

.site-footer__brand .site-logo__name {
	font-size: 25px;
}

@media (max-width: 36rem) {
	.site-logo {
		grid-template-columns: 40px auto;
		gap: 8px;
	}

	.site-logo__mark {
		width: 40px;
		height: 40px;
	}

	.site-logo__name {
		font-size: 23px;
	}

	.site-logo__company {
		margin-top: 5px;
		font-size: 6.5px;
		letter-spacing: 0.17em;
	}
}
