@charset "UTF-8";
/*
 * RawNews — wire service, not newspaper.
 *
 * Every colour is a custom property so the theme switches by swapping values
 * rather than forking rules. Hard edges only: no radius, no shadow, no
 * gradient. Separation is 1px rules and column borders.
 */

/* ---------------------------------------------------------------- fonts -- */

@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-latin.woff2") format("woff2-variations");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2-variations");
	font-weight: 400 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------- tokens -- */

:root {
	--paper: #ffffff;
	--ink: #111214;
	--ink-soft: #34383d;
	--mute: #6b7078;
	--mute-soft: #8b9098;
	--rule: #d8dadf;
	--rule-dim: #e8eaed;
	--rule-strong: #111214;
	--wash: #f3f4f6;
	--accent: #c8102e;

	/* Inverted fills: buttons, hover states, active nav. */
	--inverse: #111214;
	--inverse-ink: #ffffff;

	/* The related-work block, which must separate in both themes. */
	--panel: #111214;
	--panel-ink: #ffffff;
	--panel-rule: #3d4046;

	--font-display: "Archivo", "Inter Tight", ui-sans-serif, system-ui, sans-serif;
	--font-body: "Archivo", ui-sans-serif, system-ui, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--nav-h: 52px;
	--measure: 600px;
	--wrap: 1360px;
	--gutter: 12px;
}

@media (min-width: 768px) {
	:root {
		--nav-h: 46px;
		--gutter: 16px;
	}
}

/* Dark keeps the density and the hard edges. Rules go dark grey, nothing
   glows, nothing softens. */
:root[data-theme="dark"] {
	--paper: #0c0d0f;
	--ink: #e8e6e1;
	--ink-soft: #c9c6bf;
	--mute: #8a8e95;
	--mute-soft: #6e727a;
	--rule: #2a2c30;
	--rule-dim: #1e2023;
	--rule-strong: #2a2c30;
	--wash: #15171a;
	--accent: #ff3b4e;
	--inverse: #e8e6e1;
	--inverse-ink: #0c0d0f;
	--panel: #1a1c20;
	--panel-ink: #e8e6e1;
	--panel-rule: #35383d;
	color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--paper: #0c0d0f;
		--ink: #e8e6e1;
		--ink-soft: #c9c6bf;
		--mute: #8a8e95;
		--mute-soft: #6e727a;
		--rule: #2a2c30;
		--rule-dim: #1e2023;
		--rule-strong: #2a2c30;
		--wash: #15171a;
		--accent: #ff3b4e;
		--inverse: #e8e6e1;
		--inverse-ink: #0c0d0f;
		--panel: #1a1c20;
		--panel-ink: #e8e6e1;
		--panel-rule: #35383d;
		color-scheme: dark;
	}
}

/* ---------------------------------------------------------------- reset -- */

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

html {
	-webkit-text-size-adjust: 100%;
	scrollbar-gutter: stable;
	/* Anything scrolled to by anchor clears the sticky nav instead of landing
	   underneath it. */
	scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.35;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.015em;
	margin: 0;
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

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

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

/* Keyboard focus is visible on every interactive element, in both themes. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

::selection {
	background: var(--ink);
	color: var(--paper);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--inverse);
	color: var(--inverse-ink);
	padding: 8px 12px;
	font-family: var(--font-mono);
	font-size: 12px;
}

.skip-link:focus {
	left: 0;
}

/* --------------------------------------------------------------- layout -- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.site-main {
	flex: 1 0 auto;
	width: 100%;
}

/* ------------------------------------------------------- shared elements -- */

/* Every headline in every feed renders through this class. Links and articles
   are indistinguishable by design — do not fork it. */
.headline {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.01em;
	text-wrap: pretty;
	transition: color 120ms linear;
	display: block;
}

.headline:hover,
.headline:focus-visible {
	color: var(--accent);
}

.meta {
	font-family: var(--font-mono);
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--mute);
	font-variant-numeric: tabular-nums;
	text-transform: uppercase;
	margin: 0;
}

.meta--plain {
	text-transform: none;
}

/* Only breaking and developing may use the accent. */
/*
 * Bold, not just red. At the same weight as the headline behind it the colour
 * was doing all the work, which leaves nothing for a reader who cannot separate
 * red from black.
 */
.flag {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent);
	margin-right: 6px;
}

.control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding-inline: 16px;
	white-space: nowrap;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--ink);
}

@media (min-width: 768px) {
	.control {
		min-height: 38px;
	}
}

.control:hover,
.control:focus-visible {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.control--filled {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.control--filled:hover,
.control--filled:focus-visible {
	opacity: 0.8;
	background: var(--inverse);
	color: var(--inverse-ink);
}

.control--outline {
	border: 1px solid var(--rule);
}

/* ------------------------------------------------------------- masthead -- */

.masthead {
	border-bottom: 1px solid var(--rule-strong);
}

.masthead__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding-block: 8px;
}

@media (min-width: 768px) {
	.masthead__inner {
		padding-block: 12px;
	}
}

.masthead__wordmark {
	display: block;
	height: 30px;
	width: auto;
}

@media (min-width: 640px) {
	.masthead__wordmark {
		height: 34px;
	}
}

@media (min-width: 1024px) {
	.masthead__wordmark {
		height: 38px;
	}
}

.masthead__standfirst {
	display: block;
	margin-top: 6px;
}

.masthead__clock {
	display: none;
	text-align: right;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.masthead__clock {
		display: block;
	}
}

.clock {
	display: block;
	min-width: 27ch;
	text-align: right;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ nav -- */

.nav {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--paper);
	border-bottom: 1px solid var(--rule-strong);
}

.nav__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	height: var(--nav-h);
}

.nav__sections,
.nav__utils {
	display: none;
	align-items: stretch;
}

/*
 * The section list comes back at tablet width; the utilities wait for 1024.
 *
 * Bringing both back at 768 put roughly a hundred pixels more in the nav row
 * than the viewport had, and the whole page scrolled sideways at exactly iPad
 * portrait width. The utilities are already hidden on phones and reachable from
 * the newsletter bar, so holding them back one breakpoint costs nothing.
 */
@media (min-width: 768px) {
	.nav__sections {
		display: flex;
	}
}

@media (min-width: 1024px) {
	.nav__utils {
		display: flex;
	}
}

.nav__sections > li {
	border-right: 1px solid var(--rule);
}

.nav__sections > li:first-child {
	border-left: 1px solid var(--rule);
}

.nav__utils > li {
	border-left: 1px solid var(--rule);
}

.nav__utils > li:last-child {
	border-right: 1px solid var(--rule);
}

/* Sections are content: headline face, sentence case, 16px. */
.nav__section-link {
	height: 100%;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.005em;
}

/* Utilities are tools: mono, uppercase, smaller. The gap is the hierarchy. */
.nav__util-link {
	height: 100%;
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.nav__section-link[aria-current="page"],
.nav__util-link[aria-current="page"] {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.nav__toggle,
.nav__mobile-utils {
	display: flex;
}

@media (min-width: 768px) {
	.nav__toggle,
	.nav__mobile-utils {
		display: none;
	}
}

.nav__burger {
	display: inline-flex;
	flex-direction: column;
	gap: 3px;
}

.nav__burger span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--ink);
}

.nav__mobile {
	border-top: 1px solid var(--rule);
}

.nav__mobile li {
	border-bottom: 1px solid var(--rule-dim);
}

.nav__mobile a {
	width: 100%;
	justify-content: flex-start;
}

/* --------------------------------------------------------------- ticker -- */

.ticker {
	background: var(--accent);
	border-bottom: 1px solid var(--rule-strong);
	/* The mask below paints against this, so the bar owns its own layer. */
	isolation: isolate;
}

.ticker__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	overflow: hidden;
}

.ticker__label {
	flex-shrink: 0;
	padding: 7px 12px 7px 0;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
}

/*
 * Items fade in and out at the edges rather than hard-clipping. The track also
 * starts past the left fade, so the first word is never cut mid-letter as it
 * enters.
 */
/*
 * The bar shows one story at a time and cross-fades between them.
 *
 * It used to be a horizontal marquee, and a marquee always has text sitting
 * half-hidden at the edges — a fade mask makes that deliberate rather than
 * broken, but it still reads as clipped, which is what it kept being reported
 * as. Nothing scrolls here, so nothing is ever cut off: each headline is either
 * fully visible or entirely absent, and a headline too long for the bar is
 * truncated with an ellipsis, which is legible in a way a half-faded word is
 * not.
 */
.ticker__window {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	padding-block: 7px;
	/* Reserve one line so the bar cannot change height as stories rotate. */
	min-height: 30px;
}

.ticker__track {
	position: relative;
	display: block;
	min-height: 16px;
	color: #fff;
}

.ticker__item {
	position: absolute;
	inset-inline: 0;
	top: 0;
	display: block;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	opacity: 0;
	animation: ticker-cycle var(--ticker-cycle, 18s) linear infinite;
	animation-delay: var(--ticker-delay, 0s);
}

/* The first one is painted opaque so the bar is never briefly empty on load. */
.ticker__item:first-child {
	opacity: 1;
}

.ticker__track a {
	color: #fff;
	text-decoration: none;
}

.ticker__track a:hover {
	text-decoration: underline;
}

/* Slots overlap slightly so the bar is never momentarily blank between two. */
@keyframes ticker-cycle {
	0% {
		opacity: 0;
	}
	2% {
		opacity: 1;
	}
	32% {
		opacity: 1;
	}
	35% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/*
 * With motion suppressed the rotation stops entirely and the stories stack, so
 * every one of them stays readable rather than one being frozen on screen.
 */
@media (prefers-reduced-motion: reduce) {
	.ticker__item {
		position: static;
		opacity: 1;
		animation: none;
		white-space: normal;
	}

	.ticker__item + .ticker__item {
		margin-top: 4px;
	}

	.ticker__window {
		min-height: 0;
	}
}


/* ------------------------------------------------------------ ad slots -- */

/*
 * Every slot reserves its height in CSS before any creative exists. A real ad
 * cannot push content down. This is not negotiable — layout shift is a ranking
 * factor and the revenue depends on it.
 */
.ad-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wash);
	border: 1px solid var(--rule);
	flex: none;
	overflow: hidden;
	max-width: 100%;
}

.ad-slot__label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mute-soft);
	text-align: center;
}

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

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

.ad-slot--skyscraper {
	width: 300px;
	height: 600px;
	min-height: 600px;
}

.ad-slot--mobile-sticky {
	width: 320px;
	height: 50px;
	min-height: 50px;
}

.ad-rail {
	display: none;
}

@media (min-width: 1024px) {
	.ad-rail {
		display: grid;
		grid-template-rows: 1fr 1fr;
	}
}

.ad-rail__sticky {
	position: sticky;
	top: calc(var(--nav-h) + 12px);
}

.ad-mobile-sticky {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 51px;
	background: var(--paper);
	border-top: 1px solid var(--rule-strong);
}

.ad-mobile-sticky__spacer {
	height: 51px;
}

@media (min-width: 768px) {
	.ad-mobile-sticky,
	.ad-mobile-sticky__spacer {
		display: none;
	}
}

.ad-band {
	display: flex;
	justify-content: center;
	/* Matches the spacing between blocks; it was carrying noticeably more
	   padding than anything else on the page. */
	margin-block: 10px;
}

/* ----------------------------------------------------------- feed items -- */

/*
 * Timestamp is a fixed-width mono gutter rather than its own line: it costs no
 * vertical space and gives the eye a chronological rail to scan down.
 */
.item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: baseline;
	column-gap: 8px;
}

/* A thumbnail row is taller than a line of text, so the stamp aligns to the
   top of the row rather than sitting on a baseline halfway down it. */
.item--image {
	align-items: start;
}

.item--image .item__time {
	padding-top: 2px;
}

.item__time {
	font-family: var(--font-mono);
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--mute);
	font-variant-numeric: tabular-nums;
	text-transform: uppercase;
}

.item__title {
	margin: 0;
	font-weight: 400;
}

.item__link {
	font-size: 15px;
	line-height: 1.3;
}

@media (min-width: 640px) {
	.item__link {
		font-size: 16px;
	}
}

.item--md .item__link {
	font-size: 18px;
	line-height: 1.24;
	letter-spacing: -0.018em;
}

@media (min-width: 640px) {
	.item--md .item__link {
		font-size: 20px;
	}
}

/* ----------------------------------------------------------- lead story -- */

.lead {
	border-bottom: 1px solid var(--rule-strong);
	padding-bottom: 14px;
	padding-top: 12px;
}

.lead__grid {
	display: grid;
	gap: 12px;
}

@media (min-width: 768px) {
	.lead__grid {
		/*
		 * The image column is the narrower one. At 16:9 a wider column makes the
		 * picture tall enough to push the headline grid off screen, and the text
		 * was leaving dead space beside the metadata line anyway.
		 */
		/*
		 * 40/60 rather than 45/55. At 45% the column is wide enough that a true
		 * 16:9 box exceeds the 300px ceiling, and the ceiling then crops the
		 * ratio back to about 2:1 — the two rules were fighting. Narrowing the
		 * column lets both hold at once.
		 */
		grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
		gap: 20px;
		align-items: stretch;
	}
}

/*
 * A fixed 16:9. The old 220px height cap cropped ordinary news photographs to a
 * 3:1 letterbox strip — heads sliced off, no subject left. Height follows from
 * the column width, and the column is narrow enough that the headline grid
 * still clears the fold.
 */
/*
 * The ratio belongs to the frame, not the photograph.
 *
 * Putting aspect-ratio on the <img> left the source file's own proportions in
 * play, and a portrait news photo rendered 900px tall and pushed the headline
 * grid clean off the first screen. A wrapper with a fixed ratio cannot be
 * argued with by its contents: the box is 16:9, the picture crops into it, and
 * max-height is a second floor under that in case the ratio itself is ever
 * overridden. On an aggregator the grid is the product and it has to be visible
 * without scrolling.
 */
.lead__frame {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 300px;
	overflow: hidden;
	border: 1px solid var(--rule);
	background: var(--wash);
}

.lead__image {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

/*
 * No picture, no empty frame. Roughly half of what the wire carries has no
 * image at all, and a placeholder box at lead size reads as a broken page — so
 * the headline takes the full width instead.
 */
.lead--textonly .lead__grid {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
	.lead--textonly .lead__grid {
		grid-template-columns: minmax(0, 1fr);
	}

}

.lead__text {
	min-width: 0;
	width: 100%;
}

/*
 * Other outlets on the same story. Deliberately dense: these are headlines,
 * not paragraphs, and they should read as a continuation of the feed rather
 * than as a card. No thumbnails, no rounding, no shadow.
 */
.lead__also {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--rule);
}

.lead__also-label {
	margin: 0 0 8px;
	color: var(--mute);
}

.lead__also-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lead__also-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1px 10px;
	padding-block: 4px;
}

@media (min-width: 560px) {
	.lead__also-row {
		/* Fixed source column so the headlines line up down a single edge. */
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 10px;
		align-items: baseline;
	}
}

.lead__also-row + .lead__also-row {
	border-top: 1px solid var(--rule-soft, var(--rule));
}

.lead__also-source {
	color: var(--mute);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lead__also-link {
	font-size: 14px;
	line-height: 1.25;
}

.lead__title {
	margin: 0;
	width: 100%;
}

/*
 * The metadata line spans the text column rather than hugging the headline's
 * last word, which is what left the dead region beside it.
 */
.lead__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	width: 100%;
}

.lead__headline {
	font-size: 26px;
	line-height: 1.05;
	letter-spacing: -0.028em;
	font-weight: 500;
}

@media (min-width: 768px) {
	.lead__headline {
		font-size: 32px;
	}
}

@media (min-width: 1280px) {
	.lead__headline {
		font-size: 36px;
	}
}


.lead__meta {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	align-items: center;
}

.lead__source {
	color: var(--ink);
}

.lead__sep {
	color: var(--rule);
}

/* The section lead is the same block, one step down in scale. */
.lead--section .lead__headline {
	font-size: 22px;
}

@media (min-width: 768px) {
	.lead--section .lead__headline {
		font-size: 27px;
	}
}

/* Section leads use the same ratio; only the global ceiling applies. */

/* ------------------------------------------------------ front page grid -- */

.grid {
	border-top: 2px solid var(--rule-strong);
	padding-top: 12px;
}

/*
 * The rules dividing the columns live here as full-height pseudo-elements
 * rather than as borders on the columns. A border ends where its content ends,
 * which is why the rules kept breaking at the ad rows.
 */
.grid__stack {
	position: relative;
}

@media (min-width: 768px) {
	.grid__stack::before,
	.grid__stack::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 1px;
		background: var(--rule);
		pointer-events: none;
	}

	/* Two rules for two gutters, sitting in the middle of each 16px gap. */
	.grid__stack::before {
		left: calc(50% - 8px);
	}

	.grid__stack::after {
		content: none;
	}
}

@media (min-width: 1280px) {
	.grid__stack::before {
		left: calc(33.3333% - 5px);
	}

	.grid__stack::after {
		content: "";
		left: calc(66.6667% - 3px);
	}
}

.grid__tier,
.grid__adrow {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 16px;
}

@media (min-width: 768px) {
	.grid__tier,
	.grid__adrow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.grid__tier > .grid__col:nth-child(3),
	.grid__adrow > .grid__adcell:nth-child(3) {
		grid-column: span 2;
	}
}

@media (min-width: 1280px) {
	.grid__tier,
	.grid__adrow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grid__tier > .grid__col:nth-child(3),
	.grid__adrow > .grid__adcell:nth-child(3) {
		grid-column: span 1;
	}
}

.grid__label {
	margin-bottom: 12px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--rule-strong);
	color: var(--ink);
}

.grid__items > * + * {
	margin-top: 12px;
}

/*
 * The ad row sits in the flow on the same rhythm as an item — no extra air —
 * and every cell fills its column edge to edge.
 */
.grid__adrow {
	margin-top: 12px;
	padding-block: 12px;
	border-block: 1px solid var(--rule);
}

.grid__adcell {
	display: flex;
}

.grid__adcell .ad-slot {
	width: 100%;
	max-width: none;
}

/* The tier after an ad row picks the rhythm straight back up. */
.grid__adrow + .grid__tier {
	margin-top: 12px;
}

/* ---------------------------------------------------------- feed lists -- */

.feed-list {
	columns: 1;
	column-gap: 24px;
}

@media (min-width: 768px) {
	.feed-list {
		columns: 2;
	}
}

.feed-list__entry {
	break-inside: avoid;
}

.feed-list__entry > .item {
	padding-block: 12px;
	border-bottom: 1px solid var(--rule-dim);
}

.feed-list__ad {
	break-inside: avoid;
	margin-block: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rule-dim);
	display: flex;
	justify-content: center;
}

/* ------------------------------------------------------- newsletter bar -- */

.newsletter {
	margin-top: 24px;
	/* A full border on all four sides: top and bottom alone read as an
	   unfinished rule rather than a container. */
	border: 1px solid var(--rule-strong);
	background: var(--wash);
}

.newsletter__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding-block: 18px;
}

@media (min-width: 768px) {
	.newsletter__inner {
		flex-direction: row;
		/* Both blocks share one centre line. */
		align-items: center;
		justify-content: space-between;
	}
}

.newsletter__text {
	min-width: 0;
}

.newsletter__eyebrow {
	display: block;
	color: var(--ink);
}

.newsletter__heading {
	margin-top: 6px;
	font-size: 19px;
	line-height: 1.15;
	letter-spacing: -0.015em;
}

@media (min-width: 768px) {
	.newsletter__heading {
		font-size: 22px;
	}
}

.newsletter__cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding-inline: 28px;
	background: var(--inverse);
	color: var(--inverse-ink);
	border: 1px solid var(--inverse);
	cursor: pointer;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.newsletter__cta:hover,
.newsletter__cta:focus-visible {
	opacity: 0.85;
}

/* --------------------------------------------------------------- footer -- */

.site-footer {
	margin-top: 32px;
	border-top: 2px solid var(--rule-strong);
	flex-shrink: 0;
}

.site-footer__grid {
	display: grid;
	gap: 24px;
	padding-block: 20px;
	border-bottom: 1px solid var(--rule);
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.site-footer__heading {
	margin-bottom: 8px;
	color: var(--ink);
}

.site-footer__list li + li {
	margin-top: 4px;
}

.site-footer__list a {
	font-size: 14px;
}

.site-footer__about {
	max-width: 42ch;
	font-size: 14px;
	line-height: 1.5;
	color: var(--mute);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: space-between;
	padding-block: 16px;
}

/* --------------------------------------------------------- article page -- */

.article-layout {
	display: grid;
	gap: 32px;
	padding-top: 20px;
}

@media (min-width: 1024px) {
	.article-layout {
		grid-template-columns: minmax(0, 700px) 300px;
		justify-content: center;
		gap: 48px;
	}
}

.article__header {
	border-bottom: 1px solid var(--rule);
	padding-bottom: 16px;
}

.article__kicker {
	color: var(--ink);
}

.article__kicker:hover {
	color: var(--accent);
}

.article__title {
	margin-top: 8px;
	font-size: 30px;
	line-height: 1.04;
	letter-spacing: -0.03em;
}

@media (min-width: 640px) {
	.article__title {
		font-size: 38px;
	}
}

@media (min-width: 768px) {
	.article__title {
		font-size: 42px;
	}
}

.article__dek {
	margin-top: 12px;
	max-width: var(--measure);
	font-size: 19px;
	line-height: 1.4;
	color: var(--mute);
}

@media (min-width: 768px) {
	.article__dek {
		font-size: 21px;
	}
}

.article__byline {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
}

.article__byline a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.article__byline a:hover {
	color: var(--accent);
}

.article__figure {
	margin: 16px 0 0;
}

.article__caption {
	margin-top: 6px;
	max-width: var(--measure);
	text-transform: none;
}

.article__body {
	margin-top: 24px;
}

.article__body > p,
.article__body > ul,
.article__body > ol,
.article__body > blockquote {
	max-width: var(--measure);
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 1.35rem;
	color: var(--ink-soft);
	text-wrap: pretty;
}

.article__body > p:first-of-type {
	color: var(--ink);
}

.article__body a {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--rule);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.article__body a:hover {
	text-decoration-color: var(--ink);
}

.article__body h2,
.article__body h3 {
	max-width: var(--measure);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-size: 22px;
	line-height: 1.2;
}

.article__body img {
	max-width: 100%;
	height: auto;
}

.article__inline-ad {
	display: flex;
	justify-content: center;
	max-width: var(--measure);
	margin-block: 28px;
	padding-block: 20px;
	border-block: 1px solid var(--rule-dim);
}

.article__endmark {
	margin-block: 32px;
}

.article__share {
	margin-top: 20px;
	padding-top: 12px;
	border-top: 1px solid var(--rule);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.article__share .control {
	min-height: 34px;
	padding-inline: 12px;
	border: 1px solid var(--rule);
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.article__tags {
	margin-top: 24px;
	padding-top: 12px;
	border-top: 1px solid var(--rule);
}

.tag-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.tag-chips a {
	display: block;
	border: 1px solid var(--rule);
	padding: 4px 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tag-chips a:hover {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.article__author-note {
	margin-top: 20px;
	padding-top: 12px;
	border-top: 1px solid var(--rule);
	max-width: 60ch;
	font-size: 15px;
	line-height: 1.55;
	color: var(--mute);
}

/* 2px accent, fixed to the very top edge. */
.reading-progress {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 45;
	height: 2px;
	background: transparent;
}

.reading-progress__bar {
	height: 100%;
	width: 0;
	background: var(--accent);
}

/* ------------------------------------------------------- related block -- */

/*
 * The most important element on the article page. Our own articles only,
 * never links. In dark mode the panel lightens so it still separates.
 */
.related {
	margin-top: 40px;
	border-top: 2px solid var(--rule-strong);
}

.related__inner {
	background: var(--panel);
	padding: 16px;
}

@media (min-width: 768px) {
	.related__inner {
		padding: 20px;
	}
}

.related__heading {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: var(--panel-ink);
}

.related__list {
	margin-top: 16px;
	display: grid;
	gap: 20px 24px;
}

@media (min-width: 640px) {
	.related__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.related__item {
	border-top: 1px solid var(--panel-rule);
	padding-top: 8px;
}

.related__index {
	margin-bottom: 4px;
	color: var(--panel-ink);
	opacity: 0.55;
}

.related__link {
	font-size: 18px;
	line-height: 1.16;
	color: var(--panel-ink);
}

@media (min-width: 768px) {
	.related__link {
		font-size: 20px;
	}
}

.related__link:hover {
	color: var(--accent);
}

.related__time {
	margin-top: 6px;
	display: block;
	color: var(--panel-ink);
	opacity: 0.55;
}

/* -------------------------------------------------------- page headers -- */

.page-header {
	border-bottom: 2px solid var(--rule-strong);
	padding-block: 12px 8px;
}

.page-header__title {
	font-family: var(--font-mono);
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

@media (min-width: 768px) {
	.page-header__title {
		font-size: 26px;
	}
}

.page-header__blurb {
	margin-top: 4px;
	text-transform: none;
}

/* -------------------------------------------------------------- archive -- */

.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-block: 12px;
	border-bottom: 1px solid var(--rule);
}

.filter-chips a {
	display: block;
	border: 1px solid var(--rule);
	padding: 6px 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.filter-chips a:hover,
.filter-chips a[aria-current="true"] {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.ledger__month {
	margin-top: 28px;
	border-top: 2px solid var(--rule-strong);
}

.ledger__month-label {
	position: sticky;
	top: var(--nav-h);
	z-index: 10;
	background: var(--paper);
	padding-block: 6px;
	border-bottom: 1px solid var(--rule);
	color: var(--ink);
}

.ledger__row {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	align-items: baseline;
	column-gap: 12px;
	padding-block: 7px;
	border-bottom: 1px solid var(--rule-dim);
}

/* Very subtle alternating shading — 2–3%, not a stripe. */
.ledger__row:nth-child(even) {
	background: color-mix(in srgb, var(--ink) 2.5%, transparent);
}

.ledger__row:hover {
	background: color-mix(in srgb, var(--ink) 6%, transparent);
}

@media (min-width: 768px) {
	.ledger__row {
		grid-template-columns: 90px minmax(0, 1fr) 150px 150px;
	}
}

.ledger__date {
	text-align: right;
}

.ledger__title {
	font-size: 15px;
	line-height: 1.25;
}

.ledger__section,
.ledger__author {
	grid-column: 2;
	color: var(--mute);
}

.ledger__section:hover,
.ledger__author:hover {
	color: var(--accent);
}

@media (min-width: 768px) {
	.ledger__section {
		grid-column: 3;
	}

	.ledger__author {
		grid-column: 4;
	}
}

/* --------------------------------------------------------------- search -- */

.search-form {
	display: flex;
	align-items: stretch;
	margin-top: 12px;
}

.search-form__input {
	width: 100%;
	min-height: 44px;
	padding: 8px 16px;
	background: var(--paper);
	border: 1px solid var(--rule-strong);
	font-family: var(--font-mono);
	font-size: 14px;
}

.search-form__submit {
	flex-shrink: 0;
	border: 1px solid var(--rule-strong);
	border-left: 0;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.search-count {
	margin-top: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--rule-strong);
}

/* ---------------------------------------------------------- pagination -- */

.pagination {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--rule-strong);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding-inline: 14px;
	border: 1px solid var(--rule);
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--inverse);
	color: var(--inverse-ink);
}

/* ------------------------------------------------------------ 404 / 410 -- */

.status-page {
	border-block: 2px solid var(--rule-strong);
	padding-block: 32px;
	margin-top: 24px;
}

.status-page__code {
	color: var(--mute);
}

.status-page__title {
	margin-top: 8px;
	font-size: 30px;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

@media (min-width: 768px) {
	.status-page__title {
		font-size: 40px;
	}
}

.status-page__body {
	margin-top: 8px;
	max-width: 56ch;
	font-size: 16px;
	line-height: 1.5;
	color: var(--mute);
}

/* ------------------------------------------------------ reduced motion -- */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

}


/* ----------------------------------------------------- feed thumbnails -- */

/*
 * A small inline thumbnail beside the headline, not a column-width picture: a
 * full-bleed image costs about eight headlines of vertical space, and the
 * density is the product. The timestamp column is untouched, so the mono rail
 * runs unbroken down the whole feed.
 */
.item__body {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}

.item__thumb {
	flex: 0 0 auto;
	display: block;
	width: 64px;
	height: 48px;
	overflow: hidden;
	background: var(--wash);
}

.item__thumb img {
	width: 100%;
	height: 100%;
	/* Sources arrive at every ratio; crop rather than distort. */
	object-fit: cover;
	display: block;
}

/*
 * The headline is held to about two thirds of the column so it wraps beside
 * the picture and fills the row, instead of running one short line and leaving
 * a void to the right.
 */
.item--image .item__title {
	flex: 0 1 auto;
	max-width: 65%;
}

/* Everything in a thumbnail row starts at the top. Nothing is centred. */
.item--image {
	align-items: start;
}

.item--image .item__time,
.item--image .item__body,
.item--image .item__title {
	align-self: start;
}

/* --------------------------------------------------------- day dividers -- */

.day-divider {
	margin-block: 14px 12px;
	padding-top: 6px;
	border-top: 1px solid var(--rule-strong);
}

.day-divider .meta {
	color: var(--ink);
}

/* ------------------------------------------------------------ feed ads -- */

.feed__ad {
	display: flex;
	justify-content: flex-start;
	padding-block: 12px;
	border-block: 1px solid var(--rule);
}

.feed__ad .ad-slot {
	width: 100%;
	max-width: 300px;
}

/* ------------------------------------------------------------ load more -- */

.load-more {
	display: block;
	width: 100%;
	min-height: 46px;
	margin-top: 18px;
	padding: 12px;
	background: none;
	color: var(--ink);
	border: 1px solid var(--rule-strong);
	cursor: pointer;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.load-more:hover:not(:disabled) {
	background: var(--inverse);
	color: var(--inverse-ink);
}

.load-more:disabled {
	cursor: default;
	color: var(--mute);
}

/* --------------------------------------------------------- section lead -- */

.section-lead {
	border-bottom: 1px solid var(--rule-strong);
	padding-bottom: 14px;
	margin-bottom: 14px;
}

.section-lead__grid {
	display: grid;
	gap: 12px;
}

@media (min-width: 768px) {
	.section-lead__grid {
		grid-template-columns: 5fr 7fr;
		gap: 16px;
		align-items: center;
	}
}

.section-lead__headline {
	font-size: 24px;
	line-height: 1.06;
	letter-spacing: -0.025em;
	font-weight: 500;
}

@media (min-width: 768px) {
	.section-lead__headline {
		font-size: 30px;
	}
}

/*
 * Section feeds run at exactly the front page's density. Somebody who clicked
 * into Politics wants more politics, not the same list with more air.
 */
.feed-columns {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 16px;
	row-gap: 12px;
}

@media (min-width: 768px) {
	.feed-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feed-columns__col {
		position: relative;
	}

	.feed-columns__col:nth-child(2)::before {
		content: ;
		position: absolute;
		left: -8px;
		top: 0;
		bottom: 0;
		width: 1px;
		background: var(--rule);
	}
}

.feed-columns__col > * + * {
	margin-top: 12px;
}


/* ------------------------------------------------------------ home icon -- */

.nav__home {
	/* Square hit area matching the section links, with its own divider. */
	position: relative;
	padding-inline: 0;
	width: var(--nav-h);
	height: 100%;
	color: var(--ink);
}

.nav__home-item {
	border-right: 1px solid var(--rule);
}

.nav__home-icon {
	display: block;
	width: 19px;
	height: 19px;
}

.nav__home-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/*
 * Outline in every state. The icon never fills and never takes a background:
 * a solid block here sits directly under the wordmark's own solid block and
 * reads as a duplicated mark rather than a second control.
 */
.nav__home:hover,
.nav__home:focus-visible {
	background: none;
	color: var(--accent);
}

/*
 * The section tabs mark the current page with a filled tab, which is the one
 * treatment home cannot borrow. So home takes a rule beneath instead, in the
 * same ink the filled tab uses.
 */
.nav__home[aria-current="page"] {
	background: none;
	color: var(--ink);
}

.nav__home[aria-current="page"]::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--ink);
}

/* -------------------------------------------------------- section colour -- */

/*
 * One colour per section, used in exactly three places: the ticker bar on that
 * section's page, the rule under its H1, and its active nav tab.
 *
 * Red is not among them. Red means urgency — BREAKING and DEVELOPING — and it
 * keeps that meaning inside a section-coloured bar. A colour that says "you are
 * in Politics" must never be mistaken for one that says "this is happening now",
 * so the two vocabularies stay separate.
 *
 * Money is deliberately not green: in a financial context green reads as "up",
 * and red and green both need to stay free for directional data.
 */
:root {
	--section: var(--ink);
}

.section-politics { --section: #2c3170; }
.section-money    { --section: #2e3c4a; }
.section-health   { --section: #1d5b57; }
.section-crime    { --section: #232326; }
.section-sports   { --section: #8a4b1e; }
.section-records  { --section: #141414; }

/* Lightened to hold against #0c0d0f, still desaturated. */
:root[data-theme="dark"] .section-politics,
:root[data-theme="dark"] .section-politics * { --section: #5b62b4; }
:root[data-theme="dark"] .section-money,
:root[data-theme="dark"] .section-money *    { --section: #6d8095; }
:root[data-theme="dark"] .section-health,
:root[data-theme="dark"] .section-health *   { --section: #3e9c94; }
:root[data-theme="dark"] .section-crime,
:root[data-theme="dark"] .section-crime *    { --section: #74747c; }
:root[data-theme="dark"] .section-sports,
:root[data-theme="dark"] .section-sports *   { --section: #c4813f; }
:root[data-theme="dark"] .section-records,
:root[data-theme="dark"] .section-records *  { --section: #6f6f6f; }

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .section-politics { --section: #5b62b4; }
	:root:not([data-theme="light"]) .section-money    { --section: #6d8095; }
	:root:not([data-theme="light"]) .section-health   { --section: #3e9c94; }
	:root:not([data-theme="light"]) .section-crime    { --section: #74747c; }
	:root:not([data-theme="light"]) .section-sports   { --section: #c4813f; }
	:root:not([data-theme="light"]) .section-records  { --section: #6f6f6f; }
}

/* 1. The ticker bar on a section page. */
.ticker--section {
	background: var(--section);
}

/* 2. The rule beneath the section H1. */
body[class*="section-"] .page-header {
	border-bottom-color: var(--section);
}

/* 3. That section's active nav tab. */
body[class*="section-"] .nav__section-link[aria-current="page"] {
	background: var(--section);
	color: #fff;
}

/*
 * Urgency stays red inside a section-coloured bar. Brightened just enough to
 * hold against indigo, teal and ochre without becoming a different colour.
 */
.ticker__flag {
	color: #ff4d5e;
	font-weight: 700;
}

/* ------------------------------------------------- pinned originals -- */

/*
 * The label is what separates our own pieces from the wire. Without it the
 * two run together and a column opens with a June article above something
 * filed twenty minutes ago.
 */
.pinned-head {
	margin-top: 16px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--rule-strong);
}

.pinned-head__label {
	margin: 0;
	color: var(--ink);
}

.feed-columns--pinned {
	padding-top: 12px;
}

/* Closes the pinned block; the chronological feed starts below it. */
.feed-divider {
	margin-top: 14px;
	border-top: 2px solid var(--rule-strong);
}

/* ---------------------------------------------------------- social -- */

.site-footer__heading--follow {
	margin-top: 16px;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__social a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__social a:hover {
	color: var(--accent);
}

/* ------------------------------------------- legal and about pages -- */

.page-doc {
	max-width: var(--measure);
	margin-inline: auto;
	padding-top: 20px;
}

.page-doc__title {
	margin-top: 0;
}

.page-doc__stamp {
	margin-top: 10px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--rule);
	color: var(--mute);
}

.page-doc__body h2 {
	margin-top: 28px;
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.page-doc__body ul,
.page-doc__body ol {
	margin-top: 12px;
	padding-left: 20px;
}

.page-doc__body li + li {
	margin-top: 6px;
}

/* ------------------------------------------------- interstitial /go/ page -- */

.go {
	max-width: var(--measure);
	margin-inline: auto;
	padding-top: 20px;
}

.go__source {
	color: var(--mute);
}

.go__headline {
	margin-top: 10px;
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 600;
}

@media (min-width: 768px) {
	.go__headline {
		font-size: 34px;
	}
}

/*
 * The primary action, and it looks like one. Full width, hard edges, inverse
 * fill: a reader arriving here clicked a headline and wants the article, so the
 * way onward has to be the loudest thing on the page.
 */
.go__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
	padding: 18px 20px;
	background: var(--inverse);
	color: var(--inverse-ink);
	border: 1px solid var(--inverse);
	font-family: var(--font-mono);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.go__button:hover,
.go__button:focus-visible {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.go__button-arrow {
	font-size: 18px;
}

.go__destination {
	margin-top: 8px;
	color: var(--mute);
}

.go__ad {
	margin-top: 22px;
}

.go__block {
	margin-top: 26px;
	padding-top: 12px;
	border-top: 1px solid var(--rule-strong);
}

.go__block-title {
	margin: 0 0 10px;
	color: var(--ink);
}

.go__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.go__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2px;
	padding-block: 8px;
}

.go__row + .go__row {
	border-top: 1px solid var(--rule);
}

@media (min-width: 560px) {
	.go__row {
		grid-template-columns: 116px minmax(0, 1fr);
		gap: 12px;
		align-items: baseline;
	}

	.go__row--ours {
		grid-template-columns: minmax(0, 1fr);
	}
}

.go__row-source {
	color: var(--mute);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.go__row-link {
	font-size: 15px;
	line-height: 1.3;
}
