:root {
	--ink: #000;
	--text: #1a1a1a;
	--paper: #fff;
	--muted: #6e6e6e;
	--rule: #e6e6e6;
	--rule-dark: #2b2b2b;
	--blue: #2d5be3;
	--red: #e6162d;
	--up: #0a8240;
	--down: #d61f2c;
	--up-bright: #35d07f;
	--down-bright: #ff5a4e;
	--opinion-bg: #eef2fa;
	--display: "Manrope", "Inter", sans-serif;
	--body: "Inter", sans-serif;
	--maxw: 1320px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
	font-family: var(--body);
	color: var(--text);
	background: var(--paper);
	font-size: 15px;
	line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.lead-title a:hover,
.second-title a:hover,
.mini-title a:hover,
.latest-title a:hover,
.card-title a:hover,
.opinion-title a:hover,
.row-title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.stocks-marquee {
	background: #0a0a0a;
	border-bottom: 1px solid var(--rule-dark);
	height: 34px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.marquee-label {
	background: #fff;
	color: #000;
	font-family: var(--display);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 0.1em;
	padding: 0 12px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	z-index: 1;
}
.marquee-label:hover { background: #e2e2e2; }
.marquee-window { display: flex; overflow: hidden; flex: 1; min-width: 0; }
.marquee-track {
	display: flex;
	flex-shrink: 0;
	min-width: 100%;
	animation: marqueeMove 420s linear infinite;
}
.stocks-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeMove {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
	.marquee-track { animation: none; }
	.marquee-window { overflow-x: auto; }
}
.mq {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	color: #d9d9d9;
	border-right: 1px solid #222;
	height: 34px;
}
.mq:hover { background: #1c1c1c; }
.mq-code { font-weight: 700; color: #fff; }
.mq-price { color: #c4c4c4; }
.mq-delta { font-weight: 600; }
.mq.up .mq-delta { color: var(--up-bright); }
.mq.down .mq-delta { color: var(--down-bright); }
.mq.flat .mq-delta { color: #8a8a8a; }

.breaking-bar {
	background: #000;
	border-bottom: 1px solid var(--rule-dark);
	height: 38px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 max(20px, calc((100% - var(--maxw)) / 2));
	overflow: hidden;
}
.breaking-label {
	background: var(--red);
	color: #fff;
	font-family: var(--display);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 3px 9px;
	flex-shrink: 0;
}
.breaking-items { position: relative; flex: 1; height: 100%; min-width: 0; }
.breaking-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	color: #e8e8e8;
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}
.breaking-item.is-active { opacity: 1; pointer-events: auto; }
.breaking-item:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breaking-time {
	color: #8a8a8a;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}

.masthead { background: #000; color: #fff; }
.masthead-top {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.brand {
	font-family: var(--display);
	font-weight: 800;
	font-size: 34px;
	letter-spacing: -0.045em;
	color: #fff;
	line-height: 1;
}
.masthead-actions { display: flex; align-items: center; gap: 18px; }
.masthead-search { display: flex; align-items: center; border-bottom: 1px solid #3d3d3d; padding-bottom: 2px; }
.masthead-search:focus-within { border-color: #fff; }
.masthead-search input {
	background: transparent;
	border: 0;
	color: #fff;
	font-family: var(--body);
	font-size: 13.5px;
	padding: 6px 2px;
	width: 170px;
	outline: none;
}
.masthead-search input::placeholder { color: #8a8a8a; }
.masthead-search button {
	background: transparent;
	border: 0;
	color: #c9c9c9;
	cursor: pointer;
	display: flex;
	padding: 4px;
}
.masthead-search button:hover { color: #fff; }
.btn-subscribe {
	background: #fff;
	color: #000;
	font-family: var(--display);
	font-weight: 700;
	font-size: 13.5px;
	padding: 9px 18px;
	border-radius: 2px;
	white-space: nowrap;
}
.btn-subscribe:hover { background: #e2e2e2; }

.masthead-nav {
	border-top: 1px solid var(--rule-dark);
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 46px;
}
.nav-list {
	list-style: none;
	display: flex;
	gap: 26px;
	overflow-x: auto;
	scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
	color: #d6d6d6;
	font-size: 14.5px;
	font-weight: 500;
	white-space: nowrap;
	display: inline-block;
	padding: 12px 0;
}
.nav-list a:hover { color: #fff; }
.nav-list .current-menu-item a, .nav-list .current-cat a {
	color: #fff;
	box-shadow: inset 0 -2px 0 #fff;
}
.nav-edition { color: #8a8a8a; font-size: 12.5px; white-space: nowrap; }

.securities {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid var(--rule);
}
.securities-label {
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	flex-shrink: 0;
}
.securities-track {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	min-width: 0;
}
.securities-track::-webkit-scrollbar { display: none; }
.pill {
	background: #111;
	color: #fff;
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 12.5px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}
.pill-name { font-weight: 600; }
.pill-price { color: #d9d9d9; }
.pill-delta { font-weight: 600; }
.pill.up .pill-delta { color: var(--up-bright); }
.pill.down .pill-delta { color: var(--down-bright); }
.pill.flat .pill-delta { color: #9a9a9a; }
.securities-arrows { display: flex; gap: 6px; flex-shrink: 0; }
.sec-arrow {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #cfcfcf;
	background: #fff;
	color: #000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec-arrow:hover { border-color: #000; }

.site-main { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 72px; }

.kicker {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
	display: inline-block;
	margin-bottom: 8px;
}
a.kicker:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.byline { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.byline a { color: var(--blue); font-weight: 500; }
.byline a:hover { text-decoration: underline; }
.byline-sep { margin: 0 6px; }

.home-top {
	display: grid;
	grid-template-columns: 5fr 4fr 3.2fr;
}
.home-top > * { min-width: 0; }
.home-lead { padding-right: 28px; border-right: 1px solid var(--rule); }
.home-second { padding: 0 28px; border-right: 1px solid var(--rule); }
.home-rail { padding-left: 28px; }

.lead-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin-bottom: 18px;
}
.lead-media { display: block; margin-bottom: 14px; }
.lead-media img, .second-media img, .card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.lead-dek { font-size: 15px; color: #3c3c3c; line-height: 1.55; }

.second-story { padding-bottom: 20px; border-bottom: 1px solid var(--rule); margin-bottom: 20px; }
.second-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 25px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin-bottom: 14px;
}
.second-media { display: block; margin-bottom: 12px; }
.second-dek { font-size: 14px; color: #3c3c3c; }

.mini-story { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.mini-story:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-story .kicker { margin-bottom: 4px; }
.mini-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16.5px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.rail-markets { border: 1px solid var(--rule); border-radius: 8px; padding: 14px 16px 10px; }
.rail-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.rail-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 19px;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.rail-title.is-red { color: var(--red); }
.rail-badge {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--up);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.rail-badge::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--up);
	animation: pulse 2s ease infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
	.rail-badge::before { animation: none; }
	.breaking-item { transition: none; }
}
.mkt-row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 10px;
	align-items: baseline;
	padding: 8px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}
.mkt-row:last-of-type { border-bottom: 0; }
.mkt-name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mkt-price { color: #3c3c3c; }
.mkt-delta { font-weight: 700; min-width: 56px; text-align: right; }
.mkt-row.up .mkt-delta { color: var(--up); }
.mkt-row.down .mkt-delta { color: var(--down); }
.mkt-row.flat .mkt-delta { color: var(--muted); }
.mkt-stamp {
	font-size: 11px;
	color: var(--muted);
	padding-top: 8px;
	border-top: 1px solid var(--rule);
}

.rail-global { margin-top: 18px; }
.rail-latest { margin-top: 26px; }
.rail-latest .rail-title { margin-bottom: 4px; }
.latest-item { padding: 11px 0; border-bottom: 1px solid var(--rule); }
.latest-item:last-child { border-bottom: 0; }
.latest-time {
	color: var(--red);
	font-size: 11.5px;
	font-weight: 600;
	display: block;
	margin-bottom: 3px;
	font-variant-numeric: tabular-nums;
}
.latest-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.opinion-band {
	background: var(--opinion-bg);
	margin: 34px -20px 0;
	padding: 22px 20px;
}
.opinion-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.opinion-item { display: flex; gap: 14px; align-items: flex-start; }
.opinion-avatar { border-radius: 50%; flex-shrink: 0; }
.opinion-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16.5px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin-bottom: 5px;
}
.opinion-author { color: var(--blue); font-size: 12.5px; font-weight: 500; }
.opinion-author:hover { text-decoration: underline; }

.band { margin-top: 34px; border-top: 1px solid var(--ink); padding-top: 14px; }
.band-head {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 18px;
}
.band-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.band-title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.opinion-band .band-head { margin-bottom: 16px; }
.band-subnav { display: flex; gap: 18px; flex-wrap: wrap; min-width: 0; }
.band-subnav a { font-size: 13.5px; color: #4a4a4a; font-weight: 500; white-space: nowrap; }
.band-subnav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.band-more {
	margin-left: auto;
	font-size: 13px;
	font-weight: 600;
	border: 1px solid #c4c4c4;
	border-radius: 999px;
	padding: 6px 15px;
	white-space: nowrap;
}
.band-more:hover { border-color: var(--ink); }

.band-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.band-grid > * { min-width: 0; padding: 0 22px; border-right: 1px solid var(--rule); }
.band-grid > *:first-child { padding-left: 0; }
.band-grid > *:last-child { border-right: 0; padding-right: 0; }

.card-media { display: block; margin-bottom: 12px; }
.card-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16.5px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.card-meta { font-size: 12px; color: var(--muted); margin-top: 8px; }
.card-excerpt { font-size: 13.5px; color: #4a4a4a; margin-top: 7px; }
.card-story .eyebrow { margin-bottom: 6px; }

.eyebrow {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
	display: inline-block;
	margin-bottom: 6px;
}
a.eyebrow:hover { color: var(--ink); text-decoration: underline; }
.story-meta { font-size: 12px; color: var(--muted); margin-top: 8px; }
.story-meta a { color: var(--blue); }
.story-meta a:hover { text-decoration: underline; }

.crumbs { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs .separator { margin: 0 4px; }

.section-head { border-bottom: 1px solid var(--ink); padding-bottom: 18px; margin-bottom: 0; }
.section-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(30px, 3.4vw, 44px);
	letter-spacing: -0.03em;
	line-height: 1.02;
	color: var(--ink);
}
.section-desc { font-size: 14.5px; color: var(--muted); margin-top: 10px; max-width: 620px; }
.section-head-row { display: flex; align-items: baseline; gap: 26px; flex-wrap: wrap; }
.section-gap { margin-top: 44px; }

.cat-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	padding-top: 26px;
}
.cat-grid > * { min-width: 0; }
.cat-lead { padding-right: 30px; border-right: 1px solid var(--rule); }
.cat-rest { padding-left: 30px; }
.cat-lead .lead-title { font-size: clamp(26px, 2.6vw, 36px); }

.row-story {
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--rule);
}
.row-story:first-child { padding-top: 0; }
.row-body { min-width: 0; }
.row-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 17.5px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.row-excerpt { font-size: 13.5px; color: #4a4a4a; margin-top: 6px; }
.row-media { flex: 0 0 132px; }
.row-media img { width: 132px; aspect-ratio: 3 / 2; object-fit: cover; }

.archive-list { max-width: 780px; padding-top: 26px; }
.more-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.more-grid > * { min-width: 0; padding: 0 22px; border-right: 1px solid var(--rule); }
.more-grid > *:first-child { padding-left: 0; }
.more-grid > *:last-child { border-right: 0; padding-right: 0; }

.pagination { margin-top: 30px; font-size: 13.5px; }
.pagination .page-numbers {
	display: inline-block;
	padding: 7px 14px;
	border: 1px solid #c4c4c4;
	border-radius: 999px;
	margin-right: 8px;
	font-weight: 600;
}
.pagination .page-numbers:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .dots { border: 0; }
.empty-note { color: var(--muted); padding: 30px 0; max-width: 620px; }

.author-head { border-bottom-color: var(--rule); }
.author-card { display: flex; gap: 22px; align-items: flex-start; }
.author-avatar { border-radius: 50%; flex-shrink: 0; }
.author-bio { font-size: 14.5px; color: #3c3c3c; margin-top: 8px; max-width: 560px; }
.author-head .story-meta { margin-top: 10px; }

.inline-search { display: flex; margin-top: 18px; max-width: 480px; border: 1px solid var(--ink); border-radius: 2px; overflow: hidden; }
.inline-search input {
	flex: 1;
	border: 0;
	font-family: var(--body);
	font-size: 14px;
	padding: 11px 14px;
	outline: none;
	min-width: 0;
}
.inline-search button {
	background: var(--ink);
	color: #fff;
	border: 0;
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	padding: 0 20px;
	cursor: pointer;
}
.inline-search button:hover { background: #2b2b2b; }

.page-404 { max-width: 620px; margin: 30px auto 0; text-align: center; }
.page-404 .inline-search { margin: 22px auto 0; }
.page-404 .section-desc { margin: 12px auto 0; }
.code-404 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(90px, 14vw, 150px);
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.code-404::after { content: "."; color: var(--red); }

.single-article { max-width: 720px; margin: 10px auto 0; }
.single-head .kicker, .single-head .eyebrow { color: var(--ink); font-weight: 700; }
.single-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin: 8px 0 14px;
}
.single-dek { font-size: 18.5px; color: #4a4a4a; line-height: 1.45; margin-bottom: 12px; }
.single-byline { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--rule); }
.byline-avatar { border-radius: 50%; }
.byline-name { font-weight: 600; font-size: 13.5px; color: var(--blue); display: block; }
.byline-name:hover { text-decoration: underline; }
.byline-time { font-size: 12px; color: var(--muted); }
.single-media { margin: 22px 0; }
.single-media figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; }
.single-body { font-size: 17px; line-height: 1.72; }
.single-body p { margin-bottom: 1.25em; }
.single-body h2, .single-body h3 {
	font-family: var(--display);
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 1.5em 0 0.55em;
	color: var(--ink);
}
.single-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.single-body blockquote {
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--rule);
	padding: 18px 0;
	margin: 1.6em 0;
	font-family: var(--display);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.35;
	letter-spacing: -0.01em;
}
.single-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
	font-size: 12.5px;
	font-weight: 600;
	border: 1px solid #c4c4c4;
	border-radius: 999px;
	padding: 6px 14px;
}
.tag-chip:hover { border-color: var(--ink); }
.author-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--rule);
	padding: 20px 0;
	margin-top: 34px;
}
.author-box .eyebrow { margin-bottom: 2px; }
.author-box-name {
	font-family: var(--display);
	font-weight: 700;
	font-size: 17px;
	display: block;
	color: var(--ink);
}
.author-box-name:hover { text-decoration: underline; }
.related { max-width: 1080px; margin: 52px auto 0; }
.related .section-label {
	font-family: var(--display);
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.02em;
	border-top: 1px solid var(--ink);
	padding-top: 14px;
	margin-bottom: 18px;
}
.section-label {
	font-family: var(--display);
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.02em;
	border-top: 1px solid var(--ink);
	padding-top: 14px;
	margin-bottom: 18px;
	color: var(--ink);
}

.quote-page { max-width: var(--maxw); }
.quote-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 20px;
	flex-wrap: wrap;
}
.quote-name {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(26px, 3vw, 40px);
	letter-spacing: -0.025em;
	line-height: 1.05;
	color: var(--ink);
}
.quote-code { color: var(--muted); font-weight: 600; font-size: 0.6em; letter-spacing: 0; }
.quote-facts { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.quote-priceblock { text-align: right; }
.quote-price {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(30px, 3vw, 42px);
	letter-spacing: -0.02em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: var(--ink);
}
.quote-curr { font-size: 0.55em; font-weight: 700; color: var(--muted); }
.quote-delta { font-weight: 700; font-size: 17px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.quote-priceblock.up .quote-delta { color: var(--up); }
.quote-priceblock.down .quote-delta { color: var(--down); }
.quote-priceblock.flat .quote-delta { color: var(--muted); }
.quote-stamp { font-size: 12px; color: var(--muted); margin-top: 6px; }

.quote-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 34px;
	padding-top: 24px;
}
.quote-grid > * { min-width: 0; }
.chart-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.chart-tab {
	border: 1px solid #c4c4c4;
	background: #fff;
	border-radius: 999px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 12.5px;
	padding: 6px 15px;
	cursor: pointer;
	color: var(--text);
}
.chart-tab:hover { border-color: var(--ink); }
.chart-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chart-wrap { position: relative; }
.chart-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 13.5px;
}
.chart-empty[hidden] { display: none; }

.quote-stats .rail-title { margin-bottom: 8px; }
.quote-stats .rail-title + .stat-list { margin-bottom: 22px; }
.stat-list div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 7px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 13px;
}
.stat-list dt { color: var(--muted); }
.stat-list dd { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.up-text { color: var(--up); }
.down-text { color: var(--down); }
.flat-text { color: var(--muted); }

.quote-history, .quote-news { margin-top: 40px; }
.table-scroll { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; font-variant-numeric: tabular-nums; }
.data-table th {
	font-family: var(--display);
	font-weight: 700;
	font-size: 12px;
	text-align: left;
	border-bottom: 1px solid var(--ink);
	padding: 9px 14px 9px 0;
	white-space: nowrap;
}
.data-table td { border-bottom: 1px solid var(--rule); padding: 10px 14px 10px 0; white-space: nowrap; }
.data-table .num, .data-table td.num { text-align: right; }
.data-table th.num { text-align: right; }
.stocks-table td strong { font-family: var(--display); font-weight: 700; }
.stock-link:hover strong { text-decoration: underline; text-underline-offset: 3px; }
.stock-code { color: var(--muted); font-size: 11.5px; margin-left: 6px; }
.stock-sector { color: var(--muted); }

.ad-unit {
	width: 100%;
	max-width: var(--ad-w);
	height: var(--ad-h);
	background: #f4f4f4;
	border: 1px dashed #cfcfcf;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0 auto;
}
.ad-tag {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #9a9a9a;
}
.ad-dims { font-size: 12px; color: #b5b5b5; font-variant-numeric: tabular-nums; }
.ad-band { margin: 34px 0 0; }
.home-rail .ad-unit { margin: 24px auto 0; }
.side-sticky { position: sticky; top: 20px; margin-top: 24px; }
.roi-link { display: block; text-align: center; margin-top: 14px; margin-left: 0; }

.roi-page {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 36px;
}
.roi-page > * { min-width: 0; }
.roi-main { padding-right: 30px; border-right: 1px solid var(--rule); }
.roi-row .latest-time { margin-bottom: 4px; }
.roi-side .rail-markets { margin-top: 24px; }

.bands-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 34px;
}
.bands-wrap > * { min-width: 0; }
.bands-side .side-sticky { margin-top: 24px; }
.bands-side .top-funds { margin-top: 34px; }
.fund-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--rule);
}
.fund-row:last-of-type { border-bottom: 0; }
.fund-row-body { min-width: 0; }
.fund-row-name {
	font-family: var(--display);
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.25;
	display: block;
	color: var(--ink);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.fund-row:hover .fund-row-name { text-decoration: underline; text-underline-offset: 2px; }
.fund-row-company {
	font-size: 10.5px;
	color: var(--muted);
	display: block;
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fund-row-ytd { font-weight: 700; font-size: 13px; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.top-funds .mkt-stamp a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.top-funds .mkt-stamp a:hover { color: var(--ink); }

.band-feature {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 0;
}
.band-feature > * { min-width: 0; }
.feature-main { padding-right: 26px; border-right: 1px solid var(--rule); }
.feature-side { padding-left: 26px; }
.feature-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 23px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 12px 0 8px;
}
.feature-title a:hover, .text-title a:hover, .duo-title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}
.feature-item {
	display: flex;
	gap: 14px;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--rule);
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: 0; }
.feature-item-body { min-width: 0; }
.feature-thumb { flex: 0 0 84px; }
.feature-thumb img { width: 84px; height: 62px; object-fit: cover; }

.band-text {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.band-text > * { min-width: 0; padding: 0 24px; border-right: 1px solid var(--rule); }
.band-text > *:first-child { padding-left: 0; }
.band-text > *:last-child { border-right: 0; padding-right: 0; }
.text-story .latest-time { margin-bottom: 6px; }
.text-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 18.5px;
	line-height: 1.22;
	letter-spacing: -0.015em;
	color: var(--ink);
	margin-bottom: 7px;
}

.band-duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 26px;
}
.band-duo > * { min-width: 0; }
.duo-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: 20px;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 12px 0 4px;
}
.duo-mini { margin-top: 14px; border-top: 1px solid var(--rule); border-bottom: 0; padding: 14px 0 0; }
.duo-mini .card-meta { margin-top: 4px; }

.funds-toolbar {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 0 6px;
}
.funds-toolbar input[type="search"] {
	flex: 1;
	min-width: 220px;
	max-width: 380px;
	border: 1px solid var(--ink);
	border-radius: 2px;
	font-family: var(--body);
	font-size: 13.5px;
	padding: 9px 12px;
	outline: none;
}
.funds-toolbar select {
	border: 1px solid #c4c4c4;
	border-radius: 999px;
	background: #fff;
	font-family: var(--display);
	font-weight: 600;
	font-size: 12.5px;
	padding: 8px 14px;
	max-width: 280px;
	cursor: pointer;
}
.funds-toolbar select:hover { border-color: var(--ink); }
.funds-count { margin-left: auto; font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.funds-table th[data-sort] { cursor: pointer; user-select: none; }
.funds-table th[data-sort]:hover { text-decoration: underline; text-underline-offset: 3px; }
.funds-table th.sorted-asc::after { content: " ↑"; }
.funds-table th.sorted-desc::after { content: " ↓"; }
.funds-table td { white-space: normal; }
.fund-name { font-family: var(--display); font-weight: 700; display: block; line-height: 1.25; }
.fund-link:hover .fund-name { text-decoration: underline; text-underline-offset: 3px; }
.fund-title { font-size: clamp(22px, 2.4vw, 32px); max-width: 720px; }
.fund-page .quote-stats .rail-title { margin-top: 4px; }
.fund-company { font-size: 11.5px; color: var(--muted); display: block; margin-top: 2px; }
.fund-cat { color: var(--muted); font-size: 12px; max-width: 180px; }
.funds-note { font-size: 12px; color: var(--muted); margin-top: 14px; max-width: 640px; }
.funds-table thead th { position: sticky; top: 0; background: #fff; }

.site-footer { background: #000; color: #b5b5b5; margin-top: 60px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 46px 20px 36px; }
.footer-brand {
	font-family: var(--display);
	font-weight: 800;
	font-size: 30px;
	letter-spacing: -0.045em;
	color: #fff;
	display: inline-block;
	margin-bottom: 30px;
}
.footer-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 26px 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--rule-dark);
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}
.footer-col-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-link { font-size: 12.5px; color: #9a9a9a; }
.footer-link:hover { color: #fff; }
.footer-note { font-size: 12px; color: #8a8a8a; max-width: 640px; margin-top: 24px; }
.footer-copy { font-size: 12px; color: #6e6e6e; margin-top: 10px; }

@media (max-width: 1120px) {
	.home-top { grid-template-columns: 1.4fr 1fr; }
	.home-rail {
		grid-column: 1 / -1;
		border-top: 1px solid var(--rule);
		margin-top: 24px;
		padding: 24px 0 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.home-second { border-right: 0; padding-right: 0; }
	.rail-latest { margin-top: 0; }
	.band-grid, .more-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
	.band-grid > *:nth-child(2n), .more-grid > *:nth-child(2n) { border-right: 0; padding-right: 0; }
	.band-grid > *:nth-child(2n+1), .more-grid > *:nth-child(2n+1) { padding-left: 0; }
	.opinion-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 900px) {
	.quote-grid { grid-template-columns: 1fr; }
	.roi-page { grid-template-columns: 1fr; }
	.roi-main { border-right: 0; padding-right: 0; }
	.bands-wrap { grid-template-columns: 1fr; }
	.bands-side .side-sticky { position: static; }
	.band-feature { grid-template-columns: 1fr; }
	.feature-main { border-right: 0; padding-right: 0; padding-bottom: 16px; }
	.feature-side { padding-left: 0; border-top: 1px solid var(--rule); padding-top: 4px; }
	.band-text { grid-template-columns: 1fr; row-gap: 18px; }
	.band-text > * { padding: 0; border-right: 0; }
	.band-duo { grid-template-columns: 1fr; row-gap: 20px; }
	.quote-head { align-items: flex-start; }
	.quote-priceblock { text-align: left; }
}

@media (max-width: 720px) {
	.breaking-time { display: none; }
	.masthead-top { height: 62px; }
	.brand { font-size: 27px; }
	.masthead-search input { width: 110px; }
	.nav-edition { display: none; }
	.securities-arrows { display: none; }
	.home-top { grid-template-columns: 1fr; }
	.home-lead { border-right: 0; padding-right: 0; }
	.home-second { padding: 22px 0 0; margin-top: 22px; border-top: 1px solid var(--rule); }
	.home-rail { grid-template-columns: 1fr; gap: 26px; }
	.band-grid, .more-grid { grid-template-columns: 1fr; }
	.band-grid > *, .more-grid > * { padding: 0; border-right: 0; }
	.band-head { flex-wrap: wrap; gap: 10px 16px; }
	.band-subnav { display: none; }
	.opinion-band { margin: 30px -20px 0; }
	.row-media { flex-basis: 104px; }
	.row-media img { width: 104px; }
	.cat-grid { grid-template-columns: 1fr; }
	.cat-lead { border-right: 0; padding-right: 0; }
	.cat-rest { padding: 20px 0 0; margin-top: 4px; }
	.masthead-actions .btn-subscribe { display: none; }
}
