@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
}

:root {
	--ivory: #f5f0e6;
	--paper: #fffdf8;
	--ink: #1c1917;
	--muted-ink: #5f5953;
	--burgundy: #76283b;
	--burgundy-dark: #551a29;
	--gold: #b58a4a;
	--gold-soft: #d9c195;
	--line: #d8cfc1;
	--display: "Cormorant Garamond", Georgia, serif;
	--serif: Georgia, "Times New Roman", serif;
	--sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shell: min(1120px, calc(100% - 40px));
	--shadow: 0 18px 55px rgba(49, 37, 27, 0.12);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.75;
	text-rendering: optimizeLegibility;
}

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

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

a {
	color: var(--burgundy);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--burgundy-dark);
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

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

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 0.875rem;
	font-weight: 700;
	left: 20px;
	padding: 10px 14px;
	position: fixed;
	top: -100px;
	z-index: 100000;
}

.skip-link:focus {
	top: 16px;
}

.site-header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: relative;
	z-index: 50;
}

.site-header__top {
	background: var(--ink);
	color: var(--paper);
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-header__top-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 34px;
}

.site-header__top p {
	margin: 0;
}

.search-toggle {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	font-size: inherit;
	letter-spacing: inherit;
	padding: 5px 0;
	text-transform: inherit;
}

.search-toggle::after {
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 10px;
	margin-left: 9px;
	position: relative;
	top: 1px;
	width: 10px;
}

.masthead {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 126px;
	padding: 20px 0;
	position: relative;
}

.wordmark {
	color: var(--ink);
	display: inline-flex;
	flex-direction: column;
	text-align: center;
	text-decoration: none;
}

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

.wordmark__main {
	font-family: var(--display);
	font-size: clamp(2rem, 5vw, 3.35rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 0.85;
}

.wordmark__sub {
	align-items: center;
	display: flex;
	font-family: var(--sans);
	font-size: 0.64rem;
	font-weight: 700;
	gap: 12px;
	justify-content: center;
	letter-spacing: 0.34em;
	margin-top: 13px;
	text-transform: uppercase;
}

.wordmark__sub::before,
.wordmark__sub::after {
	background: var(--gold);
	content: "";
	height: 1px;
	width: 32px;
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	cursor: pointer;
	display: none;
	font-family: var(--sans);
	font-size: 0.72rem;
	gap: 10px;
	letter-spacing: 0.12em;
	padding: 8px 0;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
	background: currentColor;
	display: block;
	height: 1px;
	width: 22px;
}

.menu-toggle__lines {
	position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
	content: "";
	left: 0;
	position: absolute;
}

.menu-toggle__lines::before {
	top: -6px;
}

.menu-toggle__lines::after {
	top: 6px;
}

.primary-navigation {
	border-top: 1px solid var(--line);
}

.primary-menu {
	align-items: center;
	display: flex;
	gap: clamp(24px, 4vw, 54px);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	color: var(--ink);
	display: block;
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	padding: 15px 0 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--burgundy);
}

.site-search-panel {
	background: var(--ink);
	padding: 22px 0;
}

.search-form {
	display: flex;
	gap: 10px;
	margin: 0;
	max-width: 720px;
}

.search-form label {
	flex: 1;
}

.search-field {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 1rem;
	height: 48px;
	padding: 0 16px;
	width: 100%;
}

.search-submit,
.button-link {
	background: var(--burgundy);
	border: 1px solid var(--burgundy);
	border-radius: 0;
	color: var(--paper);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.1em;
	padding: 13px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.search-submit:hover,
.button-link:hover {
	background: var(--burgundy-dark);
	border-color: var(--burgundy-dark);
	color: var(--paper);
}

.button-link--light {
	background: transparent;
	border-color: var(--gold-soft);
	color: var(--paper);
}

.button-link--light:hover {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.eyebrow {
	color: var(--burgundy);
	display: inline-block;
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.4;
	margin: 0 0 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.home-hero {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: clamp(36px, 7vw, 82px) 0;
}

.home-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(36px, 7vw, 84px);
	grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.home-hero__image {
	background: #d7cec1;
	box-shadow: var(--shadow);
	position: relative;
}

.home-hero__image::before {
	border: 1px solid rgba(255, 253, 248, 0.7);
	content: "";
	inset: 12px;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.home-hero__image img {
	aspect-ratio: 4 / 3.35;
	filter: saturate(0.72) contrast(1.05);
	object-fit: cover;
	object-position: center 22%;
	width: 100%;
}

.home-hero__kicker {
	color: var(--muted-ink);
	font-family: var(--display);
	font-size: 1.35rem;
	font-style: italic;
	margin: 2px 0 13px;
}

.home-hero h1,
.home-intro h1 {
	font-family: var(--display);
	font-size: clamp(3.25rem, 7vw, 5.8rem);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 0.92;
	margin: 0 0 24px;
}

.home-hero h1 a {
	color: var(--ink);
	text-decoration: none;
}

.home-hero__excerpt {
	color: var(--muted-ink);
	font-size: 1.02rem;
	line-height: 1.75;
	margin: 0 0 24px;
	max-width: 44ch;
}

.text-link {
	color: var(--burgundy);
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link:hover {
	text-decoration: underline;
}

.home-intro {
	padding: 100px 0;
	text-align: center;
}

.home-intro p:last-child {
	margin-inline: auto;
	max-width: 680px;
}

.home-section {
	padding: clamp(64px, 8vw, 100px) 0;
}

.home-section--last {
	padding-top: 0;
}

.section-heading {
	align-items: flex-end;
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 34px;
	padding-bottom: 18px;
}

.section-heading h2 {
	font-family: var(--display);
	font-size: clamp(2.5rem, 5vw, 3.8rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
	margin: 0;
}

.section-heading__link {
	color: var(--muted-ink);
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	margin-bottom: 5px;
	text-decoration: none;
	text-transform: uppercase;
}

.section-heading__link:hover {
	color: var(--burgundy);
}

.story-grid {
	display: grid;
	gap: clamp(24px, 3vw, 38px);
}

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

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

.story-card {
	min-width: 0;
}

.story-card__image {
	background: #d9d0c3;
	display: block;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.story-card__image::after {
	border: 1px solid rgba(255, 253, 248, 0.55);
	content: "";
	inset: 7px;
	pointer-events: none;
	position: absolute;
}

.story-card__image img,
.story-card__placeholder {
	aspect-ratio: 4 / 3;
	display: block;
	filter: saturate(0.72) contrast(1.03);
	object-fit: cover;
	transition: filter 240ms ease, transform 350ms ease;
	width: 100%;
}

.story-card__image:hover img {
	filter: saturate(0.9) contrast(1.04);
	transform: scale(1.025);
}

.story-card__title {
	font-family: var(--display);
	font-size: clamp(1.72rem, 3vw, 2.12rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.02;
	margin: 0 0 12px;
}

.story-card__title a {
	color: var(--ink);
	text-decoration: none;
}

.story-card__title a:hover {
	color: var(--burgundy);
}

.story-card__excerpt {
	color: var(--muted-ink);
	font-size: 0.88rem;
	line-height: 1.65;
	margin: 0;
}

.editorial-promise {
	background: var(--burgundy-dark);
	color: var(--paper);
	margin: 0 0 clamp(64px, 8vw, 100px);
	padding: clamp(42px, 6vw, 70px) 0;
}

.editorial-promise__inner {
	align-items: center;
	display: grid;
	gap: clamp(26px, 4vw, 52px);
	grid-template-columns: 130px 1fr auto;
}

.editorial-promise__mark {
	align-items: center;
	border: 1px solid var(--gold-soft);
	border-radius: 50%;
	color: var(--gold-soft);
	display: flex;
	font-family: var(--display);
	font-size: 2.2rem;
	height: 112px;
	justify-content: center;
	letter-spacing: 0.04em;
	margin: 0;
	width: 112px;
}

.editorial-promise .eyebrow {
	color: var(--gold-soft);
}

.editorial-promise h2 {
	color: var(--paper);
	font-family: var(--display);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
	margin: 0 0 12px;
}

.editorial-promise p {
	margin-bottom: 0;
	max-width: 660px;
}

.single-main {
	background: var(--paper);
}

.article-header {
	border-bottom: 1px solid var(--line);
	padding-bottom: clamp(42px, 6vw, 72px);
	padding-top: clamp(60px, 8vw, 110px);
	text-align: center;
}

.article-header h1 {
	font-family: var(--display);
	font-size: clamp(3.2rem, 7.5vw, 6.6rem);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.92;
	margin: 8px auto 24px;
	max-width: 970px;
}

.article-dek {
	color: var(--muted-ink);
	font-size: clamp(1.02rem, 2vw, 1.22rem);
	line-height: 1.65;
	margin: 0 auto 22px;
	max-width: 760px;
}

.article-meta {
	align-items: center;
	color: #766f67;
	display: flex;
	flex-wrap: wrap;
	font-family: var(--sans);
	font-size: 0.7rem;
	gap: 8px;
	justify-content: center;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.article-layout {
	display: grid;
	gap: 48px;
	grid-template-columns: 210px minmax(0, 720px) 1fr;
	padding-bottom: 90px;
	padding-top: 70px;
}

.article-sidebar {
	grid-column: 1;
}

.article-content {
	grid-column: 2;
	min-width: 0;
}

.article-toc {
	border-top: 3px solid var(--burgundy);
	max-height: calc(100vh - 120px);
	overflow: auto;
	padding-top: 16px;
	position: sticky;
	top: 44px;
}

.article-toc__title,
.article-toc summary {
	color: var(--ink);
	font-family: var(--sans);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin: 0 0 11px;
	text-transform: uppercase;
}

.article-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-toc li {
	border-top: 1px solid var(--line);
	line-height: 1.35;
}

.article-toc a {
	color: var(--muted-ink);
	display: block;
	font-family: var(--sans);
	font-size: 0.72rem;
	padding: 9px 0;
	text-decoration: none;
}

.article-toc a:hover {
	color: var(--burgundy);
}

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

.article-content > :first-child {
	margin-top: 0;
}

.article-content p,
.standard-page__content p {
	font-size: 1rem;
	line-height: 1.84;
	margin: 0 0 1.35em;
}

.article-content h2,
.standard-page__content h2 {
	font-family: var(--display);
	font-size: clamp(2.35rem, 5vw, 3.5rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.02;
	margin: 1.7em 0 0.48em;
	scroll-margin-top: 28px;
}

.article-content h3,
.standard-page__content h3 {
	font-family: var(--display);
	font-size: clamp(1.85rem, 3vw, 2.4rem);
	line-height: 1.08;
	margin: 1.5em 0 0.5em;
}

.article-content a:not(.wp-block-button__link),
.standard-page__content a:not(.wp-block-button__link) {
	text-decoration-color: var(--gold);
}

.article-content figure {
	margin: 2.5rem 0 0.8rem;
}

.article-content figure img {
	box-shadow: 0 12px 36px rgba(43, 34, 26, 0.12);
	margin-inline: auto;
	max-height: 850px;
	object-fit: contain;
	width: auto;
}

.article-content figcaption,
.standard-page__content figcaption {
	color: var(--muted-ink);
	font-family: var(--sans);
	font-size: 0.7rem;
	line-height: 1.5;
	margin: 10px auto 0;
	max-width: 640px;
	text-align: center;
}

.article-content figure + p:has(em),
.article-content figure + p:has(em) + p:has(em),
.article-content figure + p:has(em) + p:has(em) + p:has(em) {
	color: var(--muted-ink);
	font-family: var(--sans);
	font-size: 0.68rem;
	line-height: 1.45;
	margin: 0.28rem auto;
	max-width: 640px;
	text-align: center;
}

.article-content blockquote {
	border-left: 3px solid var(--gold);
	color: var(--burgundy-dark);
	font-family: var(--display);
	font-size: 1.8rem;
	font-style: italic;
	line-height: 1.3;
	margin: 2.2rem 0;
	padding: 0.2rem 0 0.2rem 1.5rem;
}

.msb-fact-box {
	background: var(--ivory);
	border-bottom: 1px solid var(--gold);
	border-top: 4px solid var(--burgundy);
	margin: 2.8rem 0;
	padding: 28px clamp(22px, 5vw, 42px);
}

.msb-fact-box h2 {
	font-size: 2.6rem;
	margin-top: 0;
}

.msb-fact-box p {
	border-top: 1px solid var(--line);
	display: grid;
	font-family: var(--sans);
	font-size: 0.82rem;
	gap: 20px;
	grid-template-columns: minmax(130px, 0.35fr) 1fr;
	line-height: 1.6;
	margin: 0;
	padding: 10px 0;
}

.msb-fact-box strong {
	color: var(--burgundy);
	text-transform: uppercase;
}

.article-content > h2.countdown-heading {
	align-items: center;
	border-top: 1px solid var(--line);
	display: grid;
	gap: 20px;
	grid-template-columns: 70px minmax(0, 1fr);
	padding-top: 0.62em;
}

.countdown-number {
	align-items: center;
	background: var(--burgundy);
	border-radius: 50%;
	color: var(--paper);
	display: inline-flex;
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 700;
	height: 58px;
	justify-content: center;
	letter-spacing: 0.08em;
	width: 58px;
}

.countdown-title {
	display: block;
}

.article-footer {
	align-items: center;
	border-top: 1px solid var(--line);
	display: grid;
	gap: 30px;
	grid-template-columns: 42px 1fr auto;
	padding-bottom: 80px;
	padding-top: 46px;
}

.article-footer__rule {
	background: var(--gold);
	height: 56px;
	width: 2px;
}

.article-footer h2 {
	font-family: var(--display);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 600;
	line-height: 1;
	margin: 0;
}

.listing-main,
.page-main {
	background: var(--paper);
	min-height: 60vh;
}

.listing-header {
	background: var(--ivory);
	border-bottom: 1px solid var(--line);
	padding: clamp(60px, 8vw, 100px) 0;
	text-align: center;
}

.listing-header h1,
.standard-page__header h1,
.error-page h1 {
	font-family: var(--display);
	font-size: clamp(3rem, 7vw, 5.8rem);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 0.95;
	margin: 0;
}

.listing-header__description {
	color: var(--muted-ink);
	margin: 22px auto 0;
	max-width: 680px;
}

.listing-header__description p {
	margin: 0;
}

.listing-search {
	margin: 28px auto 0;
	max-width: 650px;
}

.listing-search .search-form {
	max-width: none;
}

.listing-content {
	padding-bottom: 100px;
	padding-top: 64px;
}

.pagination {
	border-top: 1px solid var(--line);
	font-family: var(--sans);
	font-size: 0.76rem;
	margin-top: 58px;
	padding-top: 28px;
}

.nav-links {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.page-numbers {
	border: 1px solid var(--line);
	color: var(--ink);
	padding: 8px 12px;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--burgundy);
	border-color: var(--burgundy);
	color: var(--paper);
}

.empty-state {
	margin: 30px auto;
	max-width: 650px;
	text-align: center;
}

.empty-state h2 {
	font-family: var(--display);
	font-size: 3rem;
	line-height: 1;
	margin: 0 0 18px;
}

.standard-page {
	display: grid;
	gap: clamp(44px, 8vw, 100px);
	grid-template-columns: minmax(250px, 0.55fr) minmax(0, 720px);
	padding-bottom: 100px;
	padding-top: clamp(60px, 8vw, 110px);
}

.standard-page__header {
	border-top: 4px solid var(--burgundy);
	padding-top: 20px;
}

.standard-page__header h1 {
	font-size: clamp(3rem, 6vw, 4.7rem);
}

.standard-page__content {
	grid-column: 2;
}

.error-page {
	align-items: center;
	background: var(--paper);
	display: flex;
	min-height: 68vh;
	padding: 80px 0;
	text-align: center;
}

.error-page__inner {
	max-width: 720px;
}

.error-page__number {
	color: var(--gold-soft);
	font-family: var(--display);
	font-size: clamp(7rem, 18vw, 13rem);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.7;
	margin: 0 0 38px;
}

.error-page > p {
	color: var(--muted-ink);
}

.error-page .search-form {
	margin: 28px auto;
}

.site-footer {
	background: var(--ink);
	color: #d8d1c8;
	padding-top: clamp(56px, 7vw, 82px);
}

.site-footer__grid {
	display: grid;
	gap: 60px;
	grid-template-columns: 1.25fr 0.7fr 0.7fr;
	padding-bottom: 58px;
}

.site-footer__brand {
	max-width: 470px;
}

.site-footer__wordmark {
	color: var(--paper);
	font-family: var(--display);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 0 0 18px;
}

.site-footer__brand > p:last-child {
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}

.footer-heading {
	color: var(--gold-soft);
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin: 0 0 13px;
	text-transform: uppercase;
}

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

.footer-menu li {
	margin-bottom: 8px;
}

.footer-menu a {
	color: #d8d1c8;
	font-size: 0.84rem;
	text-decoration: none;
}

.footer-menu a:hover {
	color: var(--paper);
	text-decoration: underline;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	font-family: var(--sans);
	font-size: 0.66rem;
	justify-content: space-between;
	letter-spacing: 0.08em;
	padding-bottom: 24px;
	padding-top: 24px;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 980px) {
	.story-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero__grid {
		gap: 40px;
		grid-template-columns: 1fr 0.9fr;
	}

	.editorial-promise__inner {
		grid-template-columns: 100px 1fr;
	}

	.editorial-promise__mark {
		height: 90px;
		width: 90px;
	}

	.editorial-promise .button-link {
		grid-column: 2;
		justify-self: start;
	}

	.article-layout {
		display: block;
		padding-top: 44px;
	}

	.article-sidebar {
		display: none;
	}

	.article-mobile-toc {
		display: block;
		padding-top: 34px;
	}

	.article-mobile-toc:empty {
		display: none;
	}

	.article-toc--mobile {
		max-height: none;
		position: static;
	}

	.article-toc--mobile summary {
		cursor: pointer;
		margin-bottom: 0;
	}

	.article-toc--mobile[open] summary {
		margin-bottom: 10px;
	}

	.standard-page {
		gap: 50px;
		grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
	}
}

@media (max-width: 760px) {
	:root {
		--shell: min(100% - 32px, 1120px);
	}

	body {
		font-size: 17px;
	}

	.site-header__top p {
		max-width: 70%;
	}

	.masthead {
		justify-content: flex-start;
		min-height: 105px;
	}

	.wordmark {
		text-align: left;
	}

	.wordmark__main {
		font-size: 2.3rem;
	}

	.wordmark__sub {
		font-size: 0.55rem;
		gap: 7px;
		justify-content: flex-start;
	}

	.wordmark__sub::before {
		display: none;
	}

	.wordmark__sub::after {
		width: 24px;
	}

	.menu-toggle {
		display: flex;
	}

	.primary-navigation {
		background: var(--paper);
		display: none;
		height: calc(100vh - 139px);
		overflow: auto;
		position: absolute;
		top: 100%;
		width: 100%;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 18px 0 40px;
	}

	.primary-menu li {
		border-bottom: 1px solid var(--line);
	}

	.primary-menu a {
		font-family: var(--display);
		font-size: 2rem;
		font-weight: 600;
		letter-spacing: -0.02em;
		padding: 13px 0;
		text-transform: none;
	}

	.home-hero__grid {
		display: flex;
		flex-direction: column;
	}

	.home-hero__image,
	.home-hero__content {
		width: 100%;
	}

	.home-hero__content {
		padding-top: 2px;
	}

	.home-hero h1,
	.home-intro h1 {
		font-size: clamp(3.25rem, 16vw, 4.8rem);
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.story-grid--three,
	.story-grid--four {
		grid-template-columns: 1fr;
	}

	.story-card {
		display: grid;
		gap: 18px;
		grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	}

	.story-card__image {
		margin: 0;
	}

	.story-card__image img,
	.story-card__placeholder {
		aspect-ratio: 4 / 5;
	}

	.story-card__title {
		font-size: 1.72rem;
	}

	.story-card__excerpt {
		display: none;
	}

	.editorial-promise__inner {
		display: block;
	}

	.editorial-promise__mark {
		margin-bottom: 25px;
	}

	.editorial-promise .button-link {
		margin-top: 26px;
	}

	.article-header {
		text-align: left;
	}

	.article-header h1 {
		font-size: clamp(3.25rem, 15vw, 5rem);
		margin-left: 0;
	}

	.article-dek {
		margin-left: 0;
	}

	.article-meta {
		justify-content: flex-start;
	}

	.article-content figure {
		margin-inline: 0;
	}

	.msb-fact-box {
		margin-inline: -16px;
	}

	.msb-fact-box p {
		display: block;
	}

	.msb-fact-box strong {
		display: block;
		margin-bottom: 3px;
	}

	.article-content > h2.countdown-heading {
		gap: 14px;
		grid-template-columns: 50px minmax(0, 1fr);
	}

	.countdown-number {
		font-size: 0.82rem;
		height: 44px;
		width: 44px;
	}

	.article-footer {
		align-items: start;
		grid-template-columns: 2px 1fr;
	}

	.article-footer__rule {
		width: 2px;
	}

	.article-footer .button-link {
		grid-column: 2;
		justify-self: start;
	}

	.standard-page {
		display: block;
	}

	.standard-page__header {
		margin-bottom: 52px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		display: block;
	}

	.site-footer__bottom p + p {
		margin-top: 8px;
	}
}

@media (max-width: 440px) {
	.site-header__top p {
		display: none;
	}

	.site-header__top-inner {
		justify-content: flex-end;
	}

	.story-card {
		gap: 14px;
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.story-card__title {
		font-size: 1.5rem;
	}

	.story-card .eyebrow {
		font-size: 0.58rem;
		margin-bottom: 6px;
	}

	.search-form {
		display: block;
	}

	.search-submit {
		margin-top: 10px;
		width: 100%;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
