/* ==========================================================================
   Hornbill v2: light, spacious news publication
   ========================================================================== */

/* ---- Fonts ------------------------------------------------------------- */
@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-1.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "Archivo";
	font-style: normal;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-2.woff2") format("woff2");
	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: "Archivo";
	font-style: italic;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-3.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "Archivo";
	font-style: italic;
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
	src: url("../fonts/archivo-4.woff2") format("woff2");
	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 {
	--bg: #fbfaf8;
	--surface: #ffffff;
	--surface-2: #f2f0eb;
	--ink: #1a1b1e;
	--ink-2: #5c5e64;
	--ink-3: #8a8c92;
	--line: #e8e6e1;
	--line-2: #d9d6cf;
	--gold: #f5b800;
	--gold-ink: #7a5a00;
	--gold-soft: #fff4cc;
	--shadow: 0 1px 2px rgba(26, 27, 30, 0.04), 0 12px 32px rgba(26, 27, 30, 0.08);
	--radius: 10px;
	--radius-sm: 6px;
	--font: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--wrap: 1200px;
	--gutter: 20px;
	--header-h: 64px;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--img-filter: none;
	color-scheme: light;
}

:root[data-theme="dark"] {
	--bg: #0d0e11;
	--surface: #16181d;
	--surface-2: #1f2228;
	--ink: #f4f2ec;
	--ink-2: #a6a9b0;
	--ink-3: #74777e;
	--line: rgba(255, 255, 255, 0.09);
	--line-2: rgba(255, 255, 255, 0.16);
	--gold-ink: #f5b800;
	--gold-soft: rgba(245, 184, 0, 0.14);
	--shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.5);
	--img-filter: brightness(0.92);
	color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg: #0d0e11;
		--surface: #16181d;
		--surface-2: #1f2228;
		--ink: #f4f2ec;
		--ink-2: #a6a9b0;
		--ink-3: #74777e;
		--line: rgba(255, 255, 255, 0.09);
		--line-2: rgba(255, 255, 255, 0.16);
		--gold-ink: #f5b800;
		--gold-soft: rgba(245, 184, 0, 0.14);
		--shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.5);
		--img-filter: brightness(0.92);
		color-scheme: dark;
	}
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern", "liga";
}

body.no-scroll {
	overflow: hidden;
}

[hidden] {
	display: none !important;
}

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

img {
	filter: var(--img-filter);
}

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

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	text-wrap: balance;
}

p {
	margin: 0;
}

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

button {
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection {
	background: var(--gold);
	color: #1a1b1e;
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 100;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	clip-path: none;
	background: var(--ink);
	color: var(--bg);
	border-radius: var(--radius-sm);
}

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

.icon {
	width: 20px;
	height: 20px;
	flex: none;
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 18px;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.005em;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
	white-space: nowrap;
}

.btn:active {
	transform: translateY(1px);
}

.btn .icon {
	width: 18px;
	height: 18px;
}

.btn--gold {
	background: var(--gold);
	color: #1a1b1e;
}

.btn--gold:hover {
	background: #ffc722;
}

.btn--ink {
	background: var(--ink);
	color: var(--bg);
}

.btn--ink:hover {
	background: #000;
}

:root[data-theme="dark"] .btn--ink:hover {
	background: #fff;
}

.btn--ghost {
	background: transparent;
	border-color: var(--line-2);
	color: var(--ink);
}

.btn--ghost:hover {
	border-color: var(--ink);
}

.btn--fb {
	background: #1877f2;
	color: #fff;
	width: 100%;
}

.btn--fb:hover {
	background: #0f6ae0;
}

.iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--ink);
	transition: background-color 0.18s var(--ease);
}

.iconbtn:hover {
	background: var(--surface-2);
}

/* ---- Small pieces ------------------------------------------------------ */
.chip {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--gold-ink);
	line-height: 1;
}

.chip:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	color: var(--ink-3);
	line-height: 1.3;
}

.meta__sep,
.byline__sep {
	color: var(--line-2);
}

.byline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--ink-2);
}

.byline__avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--surface-2);
}

.byline__name {
	font-weight: 600;
	color: var(--ink);
}

.byline--lg {
	gap: 12px;
}

.byline--lg .byline__avatar {
	width: 40px;
	height: 40px;
}

.byline__stack {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.byline__line {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--ink-2);
	background: var(--surface-2);
	border-radius: 999px;
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.tag:hover {
	background: var(--gold-soft);
	color: var(--gold-ink);
}

.thumb {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface-2);
}

.thumb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

a:hover > .thumb .thumb__img {
	transform: scale(1.03);
}

.thumb--sm {
	border-radius: var(--radius-sm);
}

/* ---- Top bar ----------------------------------------------------------- */
.topbar {
	border-bottom: 1px solid var(--line);
	background: var(--bg);
	font-size: 0.8125rem;
	color: var(--ink-2);
}

.topbar__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
}

.topbar__date {
	white-space: nowrap;
}

.topbar__links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.topbar__links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.18s var(--ease);
}

.topbar__links a:hover {
	color: var(--ink);
}

.topbar__links .icon {
	width: 16px;
	height: 16px;
}

.topbar__theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: var(--ink-2);
}

.topbar__theme:hover {
	background: var(--surface-2);
	color: var(--ink);
}

.topbar__theme .icon {
	width: 16px;
	height: 16px;
}

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

:root[data-theme="dark"] .icon--moon {
	display: block;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .icon--sun {
		display: none;
	}

	:root:not([data-theme="light"]) .icon--moon {
		display: block;
	}
}

/* ---- Header ------------------------------------------------------------ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--bg) 88%, transparent);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
	box-shadow: 0 6px 24px rgba(26, 27, 30, 0.06);
}

.site-header__in {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: var(--header-h);
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

.brand__mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	filter: none;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand__name {
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.brand__tag {
	margin-top: 3px;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--ink-3);
	white-space: nowrap;
}

.primary-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.primary-nav__list {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__list a {
	position: relative;
	display: block;
	padding: 10px 12px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ink-2);
	white-space: nowrap;
	transition: color 0.18s var(--ease);
}

.primary-nav__list a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--ease);
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current_page_parent > a,
.primary-nav__list .current-category-ancestor > a {
	color: var(--ink);
}

.primary-nav__list a:hover::after,
.primary-nav__list .current-menu-item > a::after,
.primary-nav__list .current-category-ancestor > a::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	flex: none;
}

.site-header__cta {
	margin-left: 6px;
	min-height: 38px;
	padding-inline: 16px;
	font-size: 0.875rem;
}

.js-menu-open {
	display: none;
}

/* ---- Ticker ------------------------------------------------------------ */
.ticker {
	border-bottom: 1px solid var(--line);
	background: var(--surface);
	font-size: 0.8125rem;
}

.ticker__in {
	display: flex;
	align-items: stretch;
	gap: 16px;
	min-height: 40px;
}

.ticker__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink);
}

.ticker__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.6);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.6);
	}

	70% {
		box-shadow: 0 0 0 7px rgba(245, 184, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(245, 184, 0, 0);
	}
}

.ticker__track {
	flex: 1;
	display: flex;
	overflow: hidden;
	min-width: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ticker__reel {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: none;
	padding-right: 40px;
	animation: ticker 70s linear infinite;
}

.ticker__track:hover .ticker__reel,
.ticker__track:focus-within .ticker__reel {
	animation-play-state: paused;
}

@keyframes ticker {
	to {
		transform: translateX(-100%);
	}
}

.ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	color: var(--ink-2);
	font-weight: 500;
}

.ticker__item:hover {
	color: var(--ink);
}

.ticker__item time {
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--gold-ink);
}

/* ---- Search panel and mobile panel ------------------------------------- */
.search-panel {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 70;
	background: var(--surface);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.search-panel__in {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-block: 20px;
}

.searchform {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-height: 52px;
	padding: 0 8px 0 16px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: var(--bg);
	transition: border-color 0.18s var(--ease);
}

.searchform:focus-within {
	border-color: var(--ink);
}

.searchform .icon {
	color: var(--ink-3);
}

.searchform__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: none;
	font-size: 1.0625rem;
	outline: none;
}

.searchform__input::placeholder {
	color: var(--ink-3);
}

.searchform__btn {
	min-height: 38px;
	padding-inline: 16px;
}

.scrim {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(13, 14, 17, 0.5);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.mobile-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 80;
	width: min(360px, 88vw);
	display: flex;
	flex-direction: column;
	background: var(--surface);
	box-shadow: var(--shadow);
	overflow-y: auto;
}

.mobile-panel__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px 12px 20px;
	border-bottom: 1px solid var(--line);
}

.mobile-panel__brand {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.mobile-panel__nav {
	flex: 1;
	padding: 12px 8px;
}

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

.mobile-panel__list a {
	display: block;
	padding: 12px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	border-radius: var(--radius-sm);
}

.mobile-panel__list a:hover {
	background: var(--surface-2);
}

.mobile-panel__list--small {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
}

.mobile-panel__list--small a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--ink-2);
}

.mobile-panel__foot {
	display: grid;
	gap: 10px;
	padding: 16px 20px 24px;
	border-top: 1px solid var(--line);
}

/* ---- Section chrome ---------------------------------------------------- */
.section {
	margin-top: 56px;
}

.section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}

.section-head__title {
	position: relative;
	padding-left: 14px;
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section-head__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 4px;
	height: 0.9em;
	border-radius: 2px;
	background: var(--gold);
}

.section-head__title a {
	color: inherit;
}

.section-head__more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink-2);
	transition: color 0.18s var(--ease), gap 0.18s var(--ease);
}

.section-head__more .icon {
	width: 16px;
	height: 16px;
}

.section-head__more:hover {
	color: var(--ink);
	gap: 8px;
}

.grid {
	display: grid;
	gap: 32px 24px;
}

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

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

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

/* ---- Home: hero -------------------------------------------------------- */
.hero {
	background: var(--surface-2);
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}

.hero__in {
	padding-block: 48px 36px;
}

.hero__lead {
	display: grid;
	grid-template-columns: 440px minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.hero__media {
	display: block;
}

.thumb--hero {
	border-radius: 18px;
	box-shadow: 0 20px 56px rgba(26, 27, 30, 0.18);
}

.hero__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-width: 0;
}

.hero__title {
	font-size: clamp(2rem, 3.8vw, 3.25rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.032em;
	color: var(--ink);
	max-width: 18ch;
}

.hero__title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-decoration-color: var(--gold);
	text-underline-offset: 6px;
}

.hero__dek {
	max-width: 54ch;
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--ink-2);
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--ink-3);
}

.hero__meta strong {
	font-weight: 600;
	color: var(--ink);
}

.hero__meta .byline__avatar {
	filter: none;
}

.hero__sep {
	color: var(--line-2);
}

.hero__cta {
	margin-top: 8px;
}

.hero__more {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 44px;
	padding-top: 28px;
	border-top: 1px solid var(--line-2);
}

.hero__item {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.hero__item-media {
	display: block;
	flex: none;
	width: 68px;
}

.hero__item .thumb {
	border-radius: 10px;
}

.hero__item-body {
	min-width: 0;
}

.hero__item-title {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.hero__item-title a:hover {
	color: var(--gold-ink);
}

.hero__item-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 5px;
	font-size: 0.75rem;
	color: var(--ink-3);
}

.hero__item-meta b {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-2);
}

/* ---- Rail -------------------------------------------------------------- */
.rail {
	min-width: 0;
}

.rail__sticky {
	position: sticky;
	top: calc(var(--header-h) + 20px);
}

.rail-card {
	padding: 22px 22px 24px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
}

.rail-card + .rail-card,
.widget + .widget {
	margin-top: 20px;
}

.rail-card__title {
	font-size: 1.0625rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.rail-card__text {
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.rail-card--popular .rail-card__title {
	margin-bottom: 4px;
}

.rail-card__list .hl {
	padding-block: 14px;
	border-top: 1px solid var(--line);
}

.rail-card__list .hl:first-child {
	border-top: 0;
}

.rail-card__list .hl:last-child {
	padding-bottom: 0;
}

.rail-card--nl .nl-form {
	margin-top: 14px;
}

.rail-card__fbhead {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.rail-card__fbhead img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	filter: none;
}

.rail-card__fbhead strong {
	display: block;
	font-size: 1rem;
	letter-spacing: -0.01em;
}

.rail-card__fbhead span {
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.rail-card--fb .btn {
	margin-top: 14px;
}

.rail-card .tags {
	margin-top: 8px;
}

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

.widget li {
	padding: 8px 0;
	border-top: 1px solid var(--line);
	font-size: 0.9375rem;
}

/* ---- Cards: tile ------------------------------------------------------- */
.tile {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.tile__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tile__title {
	font-size: 1.0625rem;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.tile__title a,
.row__title a,
.hl__title a {
	background-image: linear-gradient(var(--gold), var(--gold));
	background-size: 0 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.25s var(--ease);
}

.tile__title a:hover,
.row__title a:hover,
.hl__title a:hover {
	background-size: 100% 2px;
}

.tile__dek {
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.tile .meta {
	margin-top: 2px;
}

/* ---- Cards: row -------------------------------------------------------- */
.row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 84px;
	gap: 20px;
	align-items: start;
	padding-block: 18px;
	border-top: 1px solid var(--line);
}

.row__body {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.row__title {
	font-size: 1.0625rem;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.row__dek {
	font-size: 0.9375rem;
	color: var(--ink-2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.row__media {
	display: block;
	width: 84px;
}

.row--lg {
	grid-template-columns: minmax(0, 1fr) 140px;
	gap: 28px;
	padding-block: 26px;
}

.row--lg .row__media {
	width: 140px;
}

.row--lg .row__title {
	font-size: 1.25rem;
}

.rows > .row:first-child {
	border-top: 0;
	padding-top: 4px;
}

.rows--archive > .row:first-child {
	padding-top: 0;
}

/* ---- Cards: headline --------------------------------------------------- */
.hl {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.hl__num {
	flex: none;
	width: 28px;
	font-size: 1.375rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--line-2);
	font-variant-numeric: tabular-nums;
}

.hl:first-child .hl__num {
	color: var(--gold);
}

.hl__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.hl__title {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

/* ---- Home: topics ------------------------------------------------------ */
.topics {
	gap: 40px 32px;
}

.topic {
	min-width: 0;
}

.topic .section-head {
	margin-bottom: 18px;
}

.topic .tile__title {
	font-size: 1.1875rem;
}

.topic__list {
	margin-top: 8px;
}

.topic__list .hl {
	padding-block: 14px;
	border-top: 1px solid var(--line);
}

.topic__list .hl:last-child {
	padding-bottom: 0;
}

/* ---- Newsletter -------------------------------------------------------- */
.nl-band {
	margin-top: 64px;
	background: var(--gold);
	color: #1a1b1e;
}

.nl-band__in {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding-block: 48px;
}

.nl-band__title {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.nl-band__text {
	margin-top: 10px;
	font-size: 1.0625rem;
	color: rgba(26, 27, 30, 0.75);
}

.nl-form__hp {
	position: absolute;
	left: -9999px;
}

.nl-form__row {
	display: flex;
	gap: 8px;
}

.nl-form__input {
	flex: 1;
	min-width: 0;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	outline: none;
	transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.nl-form__input:focus {
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(26, 27, 30, 0.08);
}

.nl-form__row .btn {
	min-height: 48px;
}

.nl-band .nl-form__input {
	border-color: transparent;
	background: #fff;
	color: #1a1b1e;
}

.nl-band .nl-form__input:focus {
	border-color: #1a1b1e;
}

.nl-band .btn--ink {
	background: #1a1b1e;
	color: #fff;
}

.nl-band .btn--ink:hover {
	background: #000;
}

.nl-form--compact .nl-form__row {
	flex-direction: column;
}

.nl-form--compact .nl-form__input,
.nl-form--compact .btn {
	min-height: 44px;
}

.nl-form__msg:not(:empty) {
	margin-top: 10px;
	font-size: 0.875rem;
}

.form-note {
	font-weight: 600;
}

.form-note.is-error {
	color: #b42318;
}

.nl-band .form-note.is-error {
	color: #7a1a12;
}

/* ---- Home: more -------------------------------------------------------- */
.home-more {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	margin-top: 64px;
	margin-bottom: 80px;
}

.home-more__main {
	min-width: 0;
}

.home-more__all {
	margin-top: 24px;
}

/* ---- Layout (archive, search) ----------------------------------------- */
.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	margin-bottom: 80px;
}

.layout__main {
	min-width: 0;
}

.archive-head {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-block: 40px 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.archive-head__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex: none;
}

.archive-head__kicker {
	display: block;
	margin-bottom: 8px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-ink);
}

.archive-head__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
}

.archive-head__desc {
	max-width: 60ch;
	margin-top: 12px;
	font-size: 1.0625rem;
	color: var(--ink-2);
}

.archive-head__count {
	margin-top: 10px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.archive-head__search {
	max-width: 560px;
	margin-top: 20px;
}

.empty {
	padding: 40px 0;
}

.empty h2 {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.empty p {
	color: var(--ink-2);
	margin-bottom: 20px;
}

.empty .searchform {
	max-width: 520px;
}

.pager {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.pager .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 999px;
	color: var(--ink-2);
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.pager .page-numbers:hover {
	background: var(--surface-2);
	color: var(--ink);
}

.pager .page-numbers.current {
	background: var(--ink);
	color: var(--bg);
}

.pager .page-numbers.dots {
	min-width: auto;
	padding: 0 4px;
}

.pager .icon {
	width: 16px;
	height: 16px;
}

/* ---- Article ----------------------------------------------------------- */
.progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 55;
	height: 3px;
	pointer-events: none;
}

.progress__bar {
	display: block;
	height: 100%;
	width: 0;
	background: var(--gold);
}

.article__col {
	display: grid;
	grid-template-columns: minmax(0, 760px) 340px;
	justify-content: space-between;
	gap: 56px;
}

.article__col .article__main {
	min-width: 0;
	max-width: none;
}

.article__rail .rail__sticky {
	padding-top: 40px;
}

.article__head {
	margin-top: 40px;
}

.crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.crumbs a:hover {
	color: var(--ink);
}

.article__head .chip {
	margin-bottom: 14px;
}

.article__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.032em;
}

.article__dek {
	max-width: 46ch;
	margin-top: 18px;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--ink-2);
}

.article__metabar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.share {
	display: flex;
	align-items: center;
	gap: 6px;
}

.share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	color: var(--ink-2);
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.share__btn:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--bg);
}

.share__btn .icon {
	width: 18px;
	height: 18px;
}

.share__note {
	font-size: 0.8125rem;
	color: var(--gold-ink);
	font-weight: 600;
}

.share__note:not(:empty) {
	margin-left: 6px;
}

.article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 64px;
	margin-top: 36px;
}

.article__main {
	min-width: 0;
	max-width: 760px;
}

.article__figure {
	margin: 36px 0 40px;
	min-width: 0;
}

.thumb--article {
	border-radius: 14px;
}

.article__figure figcaption {
	margin-top: 10px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.prose {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--ink);
}

.prose > * + * {
	margin-top: 1.4em;
}

.prose > p:first-child::first-letter {
	float: left;
	margin: 0.08em 0.12em 0 0;
	font-size: 3.6em;
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.02em;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 2em;
	letter-spacing: -0.02em;
}

.prose h2 {
	font-size: 1.625rem;
}

.prose h3 {
	font-size: 1.3125rem;
}

.prose h4 {
	font-size: 1.125rem;
}

.prose a {
	color: var(--gold-ink);
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.prose a:hover {
	text-decoration-color: var(--gold);
}

.prose ul,
.prose ol {
	padding-left: 1.4em;
}

.prose li + li {
	margin-top: 0.4em;
}

.prose blockquote {
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--gold);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.prose blockquote p + p {
	margin-top: 0.8em;
}

.prose blockquote cite {
	display: block;
	margin-top: 0.6em;
	font-size: 0.875rem;
	font-style: normal;
	color: var(--ink-3);
}

.prose img,
.prose figure,
.prose .embed {
	border-radius: var(--radius);
	overflow: hidden;
}

.prose figure {
	margin-inline: 0;
}

.prose figcaption {
	margin-top: 8px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.prose hr {
	border: 0;
	height: 1px;
	background: var(--line);
	margin-block: 2.4em;
}

.prose pre {
	overflow-x: auto;
	padding: 16px;
	background: var(--surface-2);
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.prose th,
.prose td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.prose .embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.page-links {
	font-size: 0.9375rem;
}

.article__tags {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.article__tags-label {
	flex: none;
	padding-top: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.article__share-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
	padding: 18px 22px;
	background: var(--surface-2);
	border-radius: var(--radius);
	font-size: 0.9375rem;
	font-weight: 600;
}

.author-box {
	display: flex;
	gap: 20px;
	margin-top: 32px;
	padding: 26px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
}

.author-box__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	flex: none;
	filter: none;
}

.author-box__label {
	display: block;
	margin-bottom: 4px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-ink);
}

.author-box__name {
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

.author-box__bio {
	margin-top: 8px;
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.author-box__more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 12px;
	font-size: 0.875rem;
	font-weight: 600;
}

.author-box__more .icon {
	width: 16px;
	height: 16px;
}

.author-box__more:hover {
	color: var(--gold-ink);
}

.postnav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.postnav__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.postnav__link--next {
	text-align: right;
	align-items: flex-end;
	grid-column: 2;
}

.postnav__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.postnav__label .icon {
	width: 16px;
	height: 16px;
}

.postnav__title {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.postnav__link:hover .postnav__title {
	color: var(--gold-ink);
}

.article__after {
	margin-top: 64px;
	margin-bottom: 80px;
}

/* ---- Comments ---------------------------------------------------------- */
.article__comments {
	margin-top: 64px;
}

.comments {
	max-width: 760px;
}

.comments__title {
	font-size: 1.5rem;
	letter-spacing: -0.025em;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.comments__list,
.comments__list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comments__list .children {
	margin-left: 52px;
}

.comment__inner {
	display: flex;
	gap: 14px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.comment__avatar img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	filter: none;
}

.comment__body {
	flex: 1;
	min-width: 0;
}

.comment__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.comment__author {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
}

.comment__badge {
	padding: 2px 8px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gold-ink);
	background: var(--gold-soft);
	border-radius: 999px;
}

.comment__pending {
	margin-top: 8px;
	font-size: 0.8125rem;
	color: var(--gold-ink);
}

.comment__text {
	margin-top: 8px;
	font-size: 1rem;
	line-height: 1.6;
}

.comment__text p + p {
	margin-top: 0.8em;
}

.comment__actions {
	display: flex;
	gap: 14px;
	margin-top: 10px;
	font-size: 0.8125rem;
	font-weight: 600;
}

.comment__actions a:hover {
	color: var(--gold-ink);
}

.comment-navigation {
	margin-top: 20px;
	font-size: 0.875rem;
}

.comment-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

.comments__closed {
	margin-top: 20px;
	color: var(--ink-3);
	font-size: 0.9375rem;
}

.comment-respond {
	margin-top: 36px;
}

.comments__form-title {
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

.comments__form-title small {
	margin-left: 10px;
	font-size: 0.8125rem;
	font-weight: 500;
}

.comment-notes {
	margin-top: 6px;
	font-size: 0.875rem;
	color: var(--ink-3);
}

.comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.comment-form p {
	margin: 0;
}

.comment-form-comment,
.comment-form-cookies-consent,
.form-submit,
.comment-form .comment-notes,
.comment-form .logged-in-as {
	grid-column: 1 / -1;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-2);
}

.comment-form .req {
	color: var(--gold-ink);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line-2);
	border-radius: var(--radius-sm);
	background: var(--surface);
	outline: none;
	transition: border-color 0.18s var(--ease);
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--ink);
}

.comment-form textarea {
	resize: vertical;
	min-height: 140px;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
}

.comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

.comment-form-cookies-consent input {
	accent-color: var(--gold);
}

.form-submit .btn {
	min-height: 46px;
	padding-inline: 24px;
}

/* ---- Page, 404 --------------------------------------------------------- */
.page-article {
	max-width: 760px;
	margin-block: 48px 80px;
}

.page-article__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 28px;
}

.page-article__figure {
	margin: 0 0 32px;
	border-radius: 14px;
	overflow: hidden;
}

.page-article .prose > p:first-child::first-letter {
	float: none;
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.notfound {
	max-width: 640px;
	margin-block: 64px 24px;
}

.notfound__code {
	display: block;
	font-size: 6rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--gold);
}

.notfound__title {
	margin-top: 8px;
	font-size: 2rem;
	letter-spacing: -0.03em;
}

.notfound__text {
	margin-top: 12px;
	font-size: 1.0625rem;
	color: var(--ink-2);
}

.notfound__search {
	margin-block: 24px 16px;
}

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
	margin-top: 40px;
	background: #1a1b1e;
	color: #c9cbd1;
}

:root[data-theme="dark"] .site-footer {
	background: #08090b;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 40px;
	padding-block: 56px 40px;
}

.brand--footer .brand__name {
	color: #fff;
}

.brand--footer .brand__tag {
	color: #8f929a;
}

.site-footer__about {
	max-width: 36ch;
	margin-top: 18px;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.site-footer__fb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
}

.site-footer__fb em {
	font-style: normal;
	font-weight: 500;
	color: #8f929a;
}

.site-footer__fb:hover {
	color: var(--gold);
}

.site-footer__title {
	margin-bottom: 14px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	font-size: 0.9375rem;
}

.site-footer__list a:hover {
	color: #fff;
}

.site-footer__text {
	font-size: 0.9375rem;
	margin-bottom: 14px;
}

.site-footer .nl-form__input {
	background: #26282e;
	border-color: #33353c;
	color: #fff;
}

.site-footer .nl-form__input::placeholder {
	color: #8f929a;
}

.site-footer .nl-form__input:focus {
	border-color: var(--gold);
	box-shadow: none;
}

.site-footer .btn--ink {
	background: var(--gold);
	color: #1a1b1e;
}

.site-footer .btn--ink:hover {
	background: #ffc722;
}

.site-footer .form-note {
	color: var(--gold);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.8125rem;
	color: #8f929a;
}

.totop {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #c9cbd1;
}

.totop:hover {
	color: #fff;
}

.totop .icon {
	width: 16px;
	height: 16px;
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1120px) {
	.primary-nav {
		display: none;
	}

	.js-menu-open {
		display: inline-flex;
	}

	.brand__tag {
		display: none;
	}
}

@media (max-width: 960px) {
	.home-more,
	.layout,
	.article__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.rail__sticky {
		position: static;
	}

	.hero__lead {
		grid-template-columns: 320px minmax(0, 1fr);
		gap: 36px;
	}

	.hero__more {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

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

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

	.topic .tile {
		display: grid;
		grid-template-columns: 160px minmax(0, 1fr);
		gap: 20px;
		align-items: center;
	}

	.article__main {
		max-width: none;
	}

	.article__col {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.article__rail .rail__sticky {
		padding-top: 0;
	}

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

	.nl-band__in {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}
}

@media (max-width: 720px) {
	:root {
		--gutter: 16px;
		--header-h: 58px;
	}

	.topbar__links a span {
		display: none;
	}

	.topbar__links {
		gap: 14px;
	}

	.site-header__cta {
		display: none;
	}

	.site-header__in {
		gap: 8px;
	}

	.brand {
		gap: 10px;
	}

	.brand__mark {
		width: 34px;
		height: 34px;
	}

	.brand__name {
		font-size: 1rem;
	}

	.ticker__text {
		display: none;
	}

	.hero__in {
		padding-block: 24px 28px;
	}

	.hero__lead {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	.thumb--hero {
		border-radius: 14px;
	}

	.hero__title {
		font-size: 1.75rem;
		max-width: none;
	}

	.hero__dek {
		font-size: 1rem;
	}

	.hero__more {
		margin-top: 28px;
		padding-top: 20px;
	}

	.section {
		margin-top: 40px;
	}

	.grid {
		gap: 0;
	}

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

	.grid .tile,
	.topic .tile {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 96px;
		gap: 16px;
		align-items: start;
		padding-block: 16px;
		border-top: 1px solid var(--line);
	}

	.grid .tile:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.grid .tile__media,
	.topic .tile__media {
		order: 2;
	}

	.grid .tile__body {
		order: 1;
	}

	.tile__title,
	.topic .tile__title {
		font-size: 1.0625rem;
	}

	.topics {
		gap: 32px;
	}

	.row--lg {
		grid-template-columns: minmax(0, 1fr) 96px;
		gap: 16px;
		padding-block: 18px;
	}

	.row--lg .row__media {
		width: 96px;
	}

	.row--lg .row__title {
		font-size: 1.0625rem;
	}

	.row__dek {
		display: none;
	}

	.nl-band {
		margin-top: 44px;
	}

	.nl-band__in {
		padding-block: 36px;
	}

	.nl-form__row {
		flex-direction: column;
	}

	.home-more {
		margin-top: 44px;
		margin-bottom: 56px;
	}

	.archive-head {
		margin-block: 28px 20px;
		padding-bottom: 20px;
	}

	.archive-head--author {
		align-items: flex-start;
	}

	.article__head {
		margin-top: 24px;
	}

	.article__title {
		font-size: 2rem;
	}

	.article__dek {
		font-size: 1.0625rem;
	}

	.article__metabar {
		margin-top: 20px;
	}

	.article__layout {
		margin-top: 24px;
	}

	.article__figure {
		margin: 24px 0 28px;
	}

	.article__after {
		margin-top: 44px;
		margin-bottom: 56px;
	}

	.prose {
		font-size: 1.0625rem;
	}

	.article__share-foot {
		flex-direction: column;
		align-items: flex-start;
	}

	.author-box {
		gap: 14px;
		padding: 20px;
	}

	.author-box__avatar {
		width: 48px;
		height: 48px;
	}

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

	.postnav__link--next {
		grid-column: auto;
		text-align: left;
		align-items: flex-start;
	}

	.article__related {
		margin-top: 48px;
	}

	.comments__list .children {
		margin-left: 20px;
	}

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

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
		padding-block: 40px 32px;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.notfound__code {
		font-size: 4.5rem;
	}
}

@media (max-width: 420px) {
	.topbar__date {
		display: none;
	}

	.byline__views {
		display: none;
	}

	.topbar__in {
		justify-content: flex-end;
	}
}

/* ---- 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;
	}

	.ticker__track {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.ticker__reel {
		animation: none;
	}

	.ticker__reel[aria-hidden="true"] {
		display: none;
	}
}

/* ---- Print ------------------------------------------------------------- */
@media print {
	.topbar,
	.site-header,
	.ticker,
	.rail,
	.share,
	.article__share-foot,
	.nl-band,
	.site-footer,
	.postnav,
	.article__related,
	.article__comments {
		display: none !important;
	}

	.article__layout {
		grid-template-columns: 1fr;
	}
}
