:root {
	--bg: #f5f1eb;
	--surface: #ffffff;
	--surface-2: #f8f5f1;
	--ink: #111111;
	--muted: #6c6861;
	--line: #e5ddd2;
	--accent: #f22b2b;
	--accent-dark: #be1313;
	--accent-soft: #fff1f1;
	--shadow: 0 20px 52px rgba(17, 17, 17, 0.07);
	--shadow-soft: 0 10px 24px rgba(17, 17, 17, 0.04);
	--radius: 28px;
	--radius-sm: 18px;
	--radius-xs: 14px;
	--container: 1320px;
}

:root[data-theme="dark"] {
	--bg: #0d0d0d;
	--surface: #141414;
	--surface-2: #1b1b1b;
	--ink: #f5f2ed;
	--muted: #b9b2aa;
	--line: #282828;
	--accent-soft: #231313;
	--shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
	--shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Instrument Sans", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(242, 43, 43, 0.08), transparent 28%),
		radial-gradient(circle at top right, rgba(17, 17, 17, 0.05), transparent 24%),
		var(--bg);
	color: var(--ink);
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

button,
input {
	font: inherit;
}

h1, h2, h3, h4, h5 {
	font-family: "Space Grotesk", sans-serif;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.container {
	width: min(var(--container), calc(100% - 32px));
	margin: 0 auto;
}

.topline {
	background: #060606;
	color: #fff;
	font-size: 13px;
}

.topline-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 10px 0;
	overflow: hidden;
}

.topline-label {
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
	flex-shrink: 0;
}

.topline-marquee {
	display: flex;
	gap: 18px;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.88);
	flex: 1;
	overflow: hidden;
}

.topline-marquee span::after {
	content: "|";
	margin-left: 18px;
	color: rgba(255, 255, 255, 0.35);
}

.social-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.social-row a {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

.masthead {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: rgba(245, 241, 235, 0.9);
	border-bottom: 1px solid var(--line);
}

:root[data-theme="dark"] .masthead {
	background: rgba(13, 13, 13, 0.88);
}

.masthead-inner {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) 260px;
	align-items: center;
	gap: 20px;
	padding: 22px 0 18px;
}

.brand-mark {
	display: inline-flex;
	align-items: flex-start;
	max-width: 100%;
}

.brand-lockup {
	display: grid;
	gap: 10px;
	max-width: min(100%, 390px);
}

.brand-row {
	display: inline-flex;
	align-items: flex-end;
	position: relative;
	line-height: 0.88;
	padding-right: 40px;
}

.brand-word {
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(56px, 4vw, 68px);
	font-weight: 700;
	letter-spacing: -0.08em;
}

.brand-word + .brand-word {
	margin-left: -0.06em;
}

.brand-word-dark {
	color: #050505;
}

.brand-word-accent,
.brand-bubble {
	color: var(--accent);
}

.brand-bubble {
	position: absolute;
	top: -18px;
	right: -2px;
	display: inline-flex;
	width: clamp(44px, 3vw, 58px);
	height: clamp(48px, 3.2vw, 64px);
	margin-left: 0;
	transform: none;
	flex-shrink: 0;
}

.brand-bubble svg {
	width: 100%;
	height: 100%;
	display: block;
}

.brand-underline {
	width: 92px;
	height: 4px;
	border-radius: 999px;
	background: var(--accent);
	margin-left: 38%;
}

.brand-tagline {
	font-size: clamp(10px, 0.9vw, 16px);
	font-weight: 800;
	letter-spacing: 0.34em;
	color: #111;
	white-space: nowrap;
}

.footer-brand-mark .brand-lockup {
	max-width: min(100%, 320px);
}

.footer-brand-mark .brand-word-dark,
.footer-brand-mark .brand-tagline {
	color: #fff;
}

.masthead-ad {
	display: flex;
	justify-content: center;
}

.ad-slot {
	background: linear-gradient(180deg, #f4f4f4, #eaeaea);
	border: 1px solid var(--line);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #555;
	padding: 14px;
	box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .ad-slot {
	background: linear-gradient(180deg, #1a1a1a, #121212);
	color: #d0cbc6;
}

.ad-slot-leaderboard {
	width: min(100%, 640px);
	min-height: 90px;
}

.ad-slot-half {
	min-height: 360px;
}

.ad-slot-rectangle {
	min-height: 250px;
}

.ad-slot-billboard {
	min-height: 180px;
}

.ad-slot-mobile,
.ad-slot-mobile-large,
.ad-slot-mobile-medium {
	min-height: 100px;
}

.masthead-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.theme-toggle,
.search-toggle,
.menu-toggle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.menu-toggle {
	display: none;
}

.subscribe-btn,
.primary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 12px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.04em;
	border: 0;
	cursor: pointer;
}

.subscribe-btn:hover,
.primary-cta:hover {
	background: var(--accent-dark);
}

.primary-cta.full-width {
	width: 100%;
}

.nav-shell {
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.nav-shell-inner {
	display: flex;
	align-items: center;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	overflow-x: auto;
	padding: 14px 0;
	scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
	display: none;
}

.nav-link {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.nav-link.active,
.nav-link:hover,
.trending-link {
	color: var(--accent);
	border-color: var(--accent);
}

.admin-indicator {
	padding-inline: 10px;
	border: 1px dashed var(--accent);
	border-radius: 999px;
}

.main-content {
	padding: 24px 0 72px;
}

.homepage-shell,
.category-shell,
.article-shell,
.page-layout {
	display: grid;
	gap: 28px;
}

.mobile-trending-strip {
	display: none;
}

.hero-grid,
.category-feed-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr) 340px;
	gap: 28px;
	align-items: start;
}

.dual-news-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1.05fr) 320px;
	gap: 28px;
	align-items: start;
}

.lower-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
	gap: 28px;
	align-items: start;
}

.hero-story,
.panel-card,
.rail-widget,
.newsletter-callout,
.story-list-stack,
.prose-card,
.single-article,
.related-card,
.dont-miss-card,
.mini-story-card,
.list-story-card {
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	min-width: 0;
}

.hero-story,
.panel-card,
.story-list-stack,
.single-article,
.prose-card {
	border-radius: var(--radius);
}

.panel-card,
.social-widget {
	padding: 24px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--surface);
}

.panel-card,
.rail-widget,
.newsletter-callout,
.story-list-stack,
.single-article,
.prose-card,
.related-card,
.dont-miss-card,
.mini-story-card,
.list-story-card,
.content-band,
.billboard-wrap,
.newsletter-banner,
.video-panel,
.spotlight-panel {
	overflow: hidden;
	box-shadow:
		var(--shadow),
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

:root[data-theme="dark"] .panel-card,
:root[data-theme="dark"] .rail-widget,
:root[data-theme="dark"] .newsletter-callout,
:root[data-theme="dark"] .story-list-stack,
:root[data-theme="dark"] .single-article,
:root[data-theme="dark"] .prose-card,
:root[data-theme="dark"] .related-card,
:root[data-theme="dark"] .dont-miss-card,
:root[data-theme="dark"] .mini-story-card,
:root[data-theme="dark"] .list-story-card,
:root[data-theme="dark"] .content-band,
:root[data-theme="dark"] .billboard-wrap,
:root[data-theme="dark"] .newsletter-banner,
:root[data-theme="dark"] .video-panel,
:root[data-theme="dark"] .spotlight-panel {
	box-shadow:
		var(--shadow),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-story {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	display: flex;
	align-items: end;
	grid-column: 1;
	background: #101010;
}

.compact-hero {
	min-height: 430px;
}

.hero-media,
.stack-media,
.story-tile-media,
.mini-story-media,
.latest-feature-media,
.ott-card,
.list-story-media,
.video-thumb,
.dont-miss-media,
.article-featured-image {
	position: relative;
	overflow: hidden;
	border-radius: inherit;
}

.latest-feature-media,
.mini-story-media,
.dont-miss-media,
.list-story-media,
.story-tile-media,
.video-thumb,
.stack-media {
	border-radius: calc(var(--radius-sm) + 2px);
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero-media img,
.stack-media img,
.story-tile-media img,
.mini-story-media img,
.latest-feature-media img,
.ott-card img,
.list-story-media img,
.video-thumb img,
.dont-miss-media img,
.article-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-media,
.story-tile-media,
.ott-card {
	height: 100%;
}

.hero-media > img {
	position: absolute;
	inset: 0;
}

.hero-overlay,
.ott-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.82));
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 36px;
	color: #fff;
	max-width: 70%;
	border-radius: 24px;
}

.hero-content h1,
.hero-content h2 {
	font-size: clamp(32px, 3.1vw, 50px);
	margin-bottom: 16px;
	line-height: 1.02;
	text-wrap: balance;
}

.hero-content p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 16px;
}

.story-badge {
	display: inline-flex;
	width: max-content;
	justify-self: start;
	padding: 7px 12px;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 12px;
}

.hero-story > .story-badge {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
	margin-bottom: 0;
}

.story-badge.small {
	position: static;
	display: inline-flex;
	margin-bottom: 10px;
	padding: 6px 10px;
	font-size: 11px;
}

.story-meta,
.story-meta.compact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	font-size: 13px;
	color: var(--muted);
}

.hero-content .story-meta {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.hero-side-stack,
.category-card-grid {
	display: grid;
	gap: 16px;
}

.hero-side-stack {
	grid-column: 2;
}

.stack-card,
.story-tile {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 14px;
	padding: 14px;
	background: #090909;
	color: #fff;
	border-radius: var(--radius-sm);
	overflow: hidden;
	min-width: 0;
	box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .stack-card,
:root[data-theme="dark"] .story-tile {
	background: var(--surface);
}

.stack-media,
.story-tile-media {
	height: 124px;
	border-radius: 14px;
}

.stack-content h3,
.story-tile-copy h3 {
	font-size: 21px;
	margin-bottom: 8px;
	line-height: 1.08;
	overflow-wrap: normal;
	word-break: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.right-rail,
.panel-aside,
.article-sidebar {
	display: grid;
	gap: 20px;
}

.rail-ad {
	border-radius: var(--radius);
	overflow: hidden;
}

.rail-widget,
.newsletter-callout {
	border-radius: var(--radius);
	padding: 22px;
}

.widget-head,
.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	column-gap: 16px;
	row-gap: 8px;
	min-height: 52px;
	padding-bottom: 14px;
	margin-bottom: 18px;
	border-bottom: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
}

.widget-head h3,
.section-heading h2 {
	min-width: 0;
	font-size: clamp(22px, 2.2vw, 28px);
	line-height: 1.02;
	overflow-wrap: anywhere;
	align-self: start;
}

.widget-head a,
.section-heading a {
	color: var(--accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	align-self: start;
	padding-top: 4px;
	justify-self: end;
}

.ranking-list,
.related-stack {
	display: grid;
	gap: 12px;
}

.ranking-item,
.related-card,
.story-list-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) 72px;
	align-items: center;
	gap: 12px;
}

.related-card {
	grid-template-columns: 88px minmax(0, 1fr);
	padding: 10px;
	border-radius: 18px;
}

.ranking-item img,
.related-card img,
.story-list-item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 14px;
}

.related-card img {
	width: 88px;
	height: 88px;
}

.rank-no {
	font-family: "Space Grotesk", sans-serif;
	font-size: 28px;
	font-weight: 700;
}

.ranking-copy h4,
.related-card h4,
.story-list-item h4 {
	font-size: 18px;
	margin-bottom: 4px;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.ranking-copy span,
.related-card span,
.story-list-item span,
.mini-story-card span,
.dont-miss-card span,
.list-story-copy span {
	color: var(--muted);
	font-size: 13px;
}

.content-band,
.billboard-wrap,
.newsletter-banner {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}

.top-stories-grid,
.dont-miss-row,
.video-row,
.spotlight-row,
.social-cards {
	display: grid;
	gap: 16px;
}

.top-stories-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dont-miss-row {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mini-story-card,
.dont-miss-card {
	display: flex;
	flex-direction: column;
	padding: 12px;
	border-radius: 22px;
	min-width: 0;
}

.mini-story-media,
.dont-miss-media {
	height: 164px;
	margin-bottom: 12px;
	border-radius: 18px;
}

.story-counter,
.play-button,
.video-duration {
	position: absolute;
}

.story-counter {
	left: 10px;
	bottom: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
}

.play-button {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.video-duration {
	right: 10px;
	bottom: 10px;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.76);
	color: #fff;
	font-size: 12px;
}

.mini-story-card h3,
.dont-miss-card h4,
.video-card h4,
.spotlight-chip span {
	font-size: 19px;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.mini-story-card h3,
.dont-miss-card h4,
.video-card h4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.mini-story-card h3 {
	margin-bottom: 8px;
}

.video-card,
.spotlight-chip {
	min-width: 0;
}

.video-card {
	display: grid;
	align-content: start;
	gap: 10px;
}

.latest-feature {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.latest-feature-media {
	height: 220px;
}

.latest-feature-copy h3 {
	font-size: clamp(24px, 2vw, 30px);
	margin-bottom: 10px;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.story-list {
	display: grid;
	gap: 12px;
}

.ott-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.ott-card {
	height: 180px;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.ott-card:first-child {
	height: 220px;
}

.ott-card-overlay {
	display: flex;
	align-items: end;
	padding: 20px;
}

.ott-card-overlay h3 {
	color: #fff;
	font-size: clamp(22px, 1.9vw, 26px);
	position: relative;
	z-index: 1;
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.social-widget,
.newsletter-callout {
	background: var(--surface);
}

.panel-card > .section-heading,
.social-widget > .section-heading {
	margin: -24px -24px 22px;
	padding: 22px 24px 14px;
}

.social-card {
	min-height: 92px;
	border-radius: 22px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.instagram { background: linear-gradient(135deg, #fc4a6a, #ffcc33); }
.facebook { background: linear-gradient(135deg, #1877f2, #1e4eb6); }
.twitter { background: linear-gradient(135deg, #0f0f0f, #3a3a3a); }
.youtube { background: linear-gradient(135deg, #ff2626, #b90000); }

.newsletter-callout form,
.newsletter-banner-form,
.newsletter-sidebar-form,
.substack-newsletter-box form {
	display: grid;
	gap: 12px;
}

.newsletter-callout input,
.newsletter-banner-form input,
.substack-newsletter-box input,
.newsletter-sidebar-input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--surface-2);
	color: var(--ink);
}

.billboard-wrap {
	padding: 18px;
}

.video-panel,
.spotlight-panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}

.spotlight-row {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spotlight-chip {
	display: grid;
	justify-items: center;
	gap: 10px;
	text-align: center;
	align-content: start;
}

.spotlight-avatar {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--surface-2);
	border: 2px solid var(--surface);
	box-shadow: 0 0 0 1px var(--line);
}

.spotlight-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spotlight-chip span {
	font-size: 14px;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-width: 100px;
}

.newsletter-banner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(9, 9, 20, 0.98), rgba(35, 13, 42, 0.88)),
		var(--surface);
	color: #fff;
}

.newsletter-banner-copy h2 {
	font-size: clamp(34px, 4vw, 50px);
	margin-bottom: 8px;
}

.newsletter-banner-form {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.newsletter-banner-form .newsletter-message {
	grid-column: 1 / -1;
}

.category-hero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(135deg, #030303, #14141c);
	color: #fff;
	min-height: 250px;
}

.category-hero-copy {
	padding: 34px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 14px;
	color: var(--muted);
}

.category-hero .breadcrumbs {
	color: rgba(255, 255, 255, 0.72);
}

.category-hero h1 {
	font-size: clamp(44px, 5vw, 76px);
	margin-bottom: 12px;
}

.category-hero p {
	font-size: 22px;
	color: rgba(255, 255, 255, 0.86);
}

.category-hero-art {
	height: 100%;
}

.category-hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-tabbar {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	padding: 6px 4px 12px;
	scrollbar-width: none;
}

.category-tabbar::-webkit-scrollbar {
	display: none;
}

.category-tabbar a {
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
}

.category-tabbar a.active {
	color: var(--accent);
	border-color: var(--accent);
}

.category-main-grid {
	grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr) 340px;
}

.category-card-grid {
	grid-template-columns: 1fr;
}

.story-tile {
	grid-template-columns: 1fr;
	padding: 0;
}

.story-tile-media {
	height: 196px;
	border-radius: 0;
}

.story-tile-copy {
	padding: 18px;
}

.story-list-stack {
	padding: 22px;
	display: grid;
	gap: 18px;
	grid-column: 1 / span 2;
}

.list-story-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 20px;
	padding: 18px;
	border-radius: 22px;
}

.list-story-media {
	height: 190px;
	border-radius: 18px;
}

.list-story-copy h3 {
	font-size: clamp(24px, 2.2vw, 30px);
	margin-bottom: 10px;
	line-height: 1.06;
	overflow-wrap: anywhere;
}

.list-story-copy p {
	font-size: 17px;
	color: var(--muted);
	margin-bottom: 14px;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) 340px;
	gap: 28px;
}

.single-article {
	padding: 28px;
}

.article-header {
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
}

.article-title {
	font-size: clamp(44px, 5vw, 74px);
}

.article-standfirst {
	font-size: 24px;
	color: var(--muted);
	max-width: 900px;
}

.article-author-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-soft);
	color: var(--accent);
	font-weight: 800;
}

.author-avatar.large {
	width: 72px;
	height: 72px;
	font-size: 24px;
}

.share-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.share-row a {
	min-width: 40px;
	height: 40px;
	padding-inline: 12px;
	border-radius: 10px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.article-featured-image {
	margin-bottom: 20px;
	border-radius: 26px;
	overflow: hidden;
}

.article-featured-image img {
	aspect-ratio: 16 / 9;
}

.article-featured-image figcaption {
	padding: 12px 4px 0;
	font-size: 13px;
	color: var(--muted);
}

.article-body {
	font-size: 19px;
}

.article-body > * + * {
	margin-top: 18px;
}

.article-body p,
.page-body p {
	margin-bottom: 18px;
	color: color-mix(in srgb, var(--ink) 88%, transparent);
}

.article-body h2,
.article-body h3,
.page-body h2,
.page-body h3 {
	font-size: 34px;
	margin: 34px 0 14px;
}

.article-body ul,
.article-body ol,
.page-body ul,
.page-body ol {
	padding-left: 22px;
	margin-bottom: 18px;
}

.article-body img,
.page-body img {
	border-radius: 18px;
}

.author-bio-box,
.substack-newsletter-box {
	margin-top: 24px;
	padding: 24px;
	border-radius: 22px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.author-bio-box {
	display: flex;
	align-items: center;
	gap: 18px;
}

.substack-newsletter-box h3 {
	font-size: 30px;
	margin-bottom: 8px;
}

.form-input-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.form-input-group button,
.newsletter-sidebar-btn {
	padding: 14px 18px;
	border: 0;
	border-radius: 16px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.ad-embed,
.footer-ad-wrap,
.mobile-ad-stack,
.mobile-article-ad {
	display: grid;
	gap: 16px;
}

.mobile-article-ad {
	display: none;
}

.prose-page {
	padding-top: 10px;
}

.prose-card {
	padding: 28px;
}

.page-title {
	font-size: clamp(38px, 4vw, 56px);
	margin-bottom: 18px;
}

.site-footer {
	background: #090909;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(4, 1fr);
	gap: 28px;
	padding: 54px 0 34px;
}

.footer-column,
.footer-brand {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.footer-column h4 {
	font-size: 20px;
	margin-bottom: 8px;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-cloud span,
.app-badge {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
}

.app-badges {
	display: grid;
	gap: 12px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.image-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #231313, #101010);
	color: #fff;
	font-weight: 700;
	padding: 18px;
	text-align: center;
}

.hero-media .image-fallback {
	position: absolute;
	inset: 0;
}

.newsletter-message.success {
	color: #0d7a3f;
}

.newsletter-message.error {
	color: #cf1f1f;
}

.newsletter-message.info {
	color: var(--muted);
}

html[data-theme="light"] .sun-icon,
html[data-theme="dark"] .moon-icon {
	display: none;
}

@media (max-width: 1180px) {
	.masthead-inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.masthead-actions {
		width: 100%;
		justify-content: center;
	}

	.hero-grid,
	.dual-news-grid,
	.category-feed-grid,
	.lower-grid,
	.article-layout,
	.category-main-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-side-stack,
	.story-list-stack {
		grid-column: auto;
	}

	.top-stories-grid,
	.dont-miss-row,
	.video-row,
	.spotlight-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.ott-card:first-child {
		grid-column: 1 / -1;
	}

	.article-title,
	.hero-content h1,
	.hero-content h2 {
		font-size: clamp(36px, 6vw, 56px);
	}
}

@media (max-width: 1500px) and (min-width: 1181px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.95fr) 300px;
		gap: 20px;
	}

	.hero-content {
		max-width: 74%;
		padding: 28px;
	}

	.hero-content h1,
	.hero-content h2 {
		font-size: clamp(30px, 2.7vw, 44px);
	}

	.stack-card {
		grid-template-columns: 132px minmax(0, 1fr);
	}

	.stack-media {
		height: 118px;
	}

	.stack-content h3 {
		font-size: 19px;
		-webkit-line-clamp: 5;
	}
}

@media (max-width: 1040px) {
	.masthead-inner {
		grid-template-columns: 220px minmax(0, 1fr) 220px;
	}

	.top-stories-grid,
	.dont-miss-row,
	.video-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.hero-grid,
	.dual-news-grid,
	.lower-grid {
		gap: 22px;
	}

	.mini-story-media,
	.dont-miss-media {
		height: 220px;
	}
}

@media (max-width: 820px) {
	.container {
		width: min(var(--container), calc(100% - 20px));
	}

	.topline {
		display: none;
	}

	.masthead {
		position: static;
	}

	.masthead-inner {
		grid-template-columns: auto 1fr auto;
		justify-items: stretch;
		padding: 16px 0;
	}

	.brand-mark {
		align-self: center;
	}

	.brand-lockup {
		gap: 8px;
		max-width: 280px;
	}

	.brand-word {
		font-size: 52px;
	}

	.brand-row {
		padding-right: 34px;
	}

	.brand-bubble {
		width: 42px;
		height: 46px;
		top: -14px;
		right: -1px;
	}

	.brand-tagline {
		font-size: 10px;
		letter-spacing: 0.24em;
	}

	.masthead-ad,
	.search-toggle,
	.masthead-actions > .subscribe-btn {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		order: -1;
	}

	.main-nav {
		position: fixed;
		inset: 80px 10px auto 10px;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: 20px;
		padding: 18px;
		box-shadow: var(--shadow);
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.main-nav.show {
		display: flex;
	}

	.nav-shell {
		border-top: 0;
		background: transparent;
	}

	.nav-shell-inner {
		display: block;
	}

	.mobile-trending-strip {
		display: grid;
		gap: 14px;
		padding: 8px 0;
	}

	.mobile-pill-row {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
		overflow-x: auto;
	}

	.mobile-trend-pill {
		min-width: 110px;
		display: grid;
		justify-items: center;
		gap: 8px;
		text-align: center;
	}

	.mobile-pill-avatar {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		overflow: hidden;
		background: var(--surface);
		border: 1px solid var(--line);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-pill-avatar img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.mobile-trend-pill span {
		font-size: 13px;
		line-height: 1.35;
	}

	.hero-story,
	.compact-hero {
		min-height: 440px;
	}

	.hero-content {
		max-width: 100%;
		padding: 24px;
	}

	.hero-content h1,
	.hero-content h2,
	.article-title,
	.category-hero h1 {
		font-size: 42px;
	}

	.hero-content p,
	.article-standfirst,
	.category-hero p {
		font-size: 18px;
	}

	.stack-card,
	.list-story-card,
	.latest-feature,
	.newsletter-banner,
	.category-hero {
		grid-template-columns: 1fr;
	}

	.top-stories-grid,
	.dont-miss-row,
	.video-row,
	.spotlight-row,
	.social-cards,
	.ott-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mini-story-media,
	.dont-miss-media {
		height: 180px;
	}

	.story-list-item,
	.ranking-item {
		grid-template-columns: auto minmax(0, 1fr) 56px;
	}

	.ranking-item img,
	.story-list-item img {
		width: 56px;
		height: 56px;
	}

	.mobile-ad-stack,
	.mobile-article-ad {
		display: grid;
	}

	.article-sidebar .rail-ad {
		display: none;
	}
}

@media (max-width: 560px) {
	.brand-mark {
		max-width: 100%;
	}

	.brand-lockup {
		max-width: 220px;
		gap: 6px;
	}

	.brand-word {
		font-size: 40px;
	}

	.brand-row {
		padding-right: 28px;
	}

	.brand-bubble {
		width: 34px;
		height: 38px;
		top: -10px;
		right: 0;
	}

	.brand-underline {
		width: 62px;
		height: 3px;
	}

	.brand-tagline {
		font-size: 8px;
		letter-spacing: 0.18em;
	}

	.theme-toggle,
	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.top-stories-grid,
	.dont-miss-row,
	.video-row,
	.spotlight-row,
	.social-cards,
	.ott-grid,
	.mobile-pill-row {
		grid-template-columns: 1fr 1fr;
	}

	.ott-card:first-child {
		height: 180px;
	}

	.hero-content h1,
	.hero-content h2,
	.article-title,
	.category-hero h1 {
		font-size: 30px;
	}

	.section-heading h2,
	.widget-head h3,
	.latest-feature-copy h3,
	.list-story-copy h3 {
		font-size: 24px;
	}

	.mini-story-media,
	.dont-miss-media,
	.video-thumb {
		height: 220px;
	}

	.hero-content {
		padding: 20px;
	}

	.article-body {
		font-size: 17px;
	}

	.single-article,
	.prose-card,
	.content-band,
	.video-panel,
	.spotlight-panel,
	.newsletter-banner {
		padding: 18px;
	}

	.author-bio-box {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-input-group,
	.newsletter-banner-form {
		grid-template-columns: 1fr;
	}
}
