/*
Theme Name:   WikiPress Child
Theme URI:    https://millionwomanmarch20.com/
Description:  Editorial museum and historical archive presentation for MWM20.
Author:       Phytosanitary
Template:     wikipress
Version:      2.0.0
Requires at least: 5.8
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  wikipress-child
*/

/* ==========================================================
   MWM20 HISTORICAL ARCHIVE — DESIGN SYSTEM
   ========================================================== */

:root {
	--mwm-paper: #f3eee4;
	--mwm-paper-light: #fbf8f1;
	--mwm-paper-deep: #e8dece;
	--mwm-white: #fffdf8;
	--mwm-ink: #211d1a;
	--mwm-ink-soft: #39322d;
	--mwm-muted: #71675f;
	--mwm-line: #d5c9b8;
	--mwm-line-dark: #a99b89;
	--mwm-red: #983b35;
	--mwm-red-dark: #6f2825;
	--mwm-red-pale: #ead4cf;
	--mwm-green: #456153;
	--mwm-green-dark: #30463b;
	--mwm-gold: #c39b5d;
	--mwm-display: Georgia, "Times New Roman", Times, serif;
	--mwm-sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--mwm-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--mwm-shell: 1220px;
	--mwm-reading: 760px;
	--mwm-shadow-sm: 0 8px 24px rgba(45, 35, 28, 0.07);
	--mwm-shadow-lg: 0 28px 70px rgba(45, 35, 28, 0.13);

	/* Parent-theme compatibility tokens. */
	--wikipress-primary: var(--mwm-red);
	--wikipress-primary-hover: var(--mwm-red-dark);
	--wikipress-heading: var(--mwm-ink);
	--wikipress-text: var(--mwm-ink-soft);
	--wikipress-text-light: var(--mwm-muted);
	--wikipress-bg: var(--mwm-paper-light);
	--wikipress-bg-off: var(--mwm-paper);
	--wikipress-border: var(--mwm-line-dark);
	--wikipress-border-light: var(--mwm-line);
	--wikipress-font-content: var(--mwm-sans);
	--wikipress-font-ui: var(--mwm-sans);
	--wikipress-content-max: var(--mwm-reading);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 130px;
}

body {
	background: var(--mwm-paper);
	color: var(--mwm-ink-soft);
	font-family: var(--mwm-sans);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body::before {
	background-image: radial-gradient(rgba(46, 37, 31, 0.13) 0.55px, transparent 0.55px);
	background-size: 5px 5px;
	content: "";
	inset: 0;
	opacity: 0.12;
	pointer-events: none;
	position: fixed;
	z-index: 1000;
}

body,
button,
input,
select,
textarea {
	font-family: var(--mwm-sans);
}

a {
	color: var(--mwm-red-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover,
a:focus {
	color: var(--mwm-red);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-weight: 500;
	letter-spacing: -0.025em;
}

::selection {
	background: var(--mwm-red-pale);
	color: var(--mwm-ink);
}

.site {
	background: transparent;
	box-shadow: none;
	margin: 0;
	max-width: none;
	min-height: 100vh;
	overflow: clip;
}

.site-content {
	background: transparent;
}

.content-wrapper {
	display: block;
	gap: 0;
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

.site-main,
.has-left-sidebar .site-main,
.has-right-toc .site-main {
	flex: none;
	max-width: none;
	min-width: 0;
	padding: 0;
	width: 100%;
}

.museum-shell,
.singular-shell,
.collection-shell,
.not-found-shell {
	margin-inline: auto;
	max-width: var(--mwm-shell);
	padding-inline: 30px;
	width: 100%;
}

.section-kicker {
	align-items: center;
	color: var(--mwm-red);
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.72rem;
	font-weight: 700;
	gap: 10px;
	letter-spacing: 0.13em;
	line-height: 1.4;
	margin: 0 0 17px;
	text-transform: uppercase;
}

.section-kicker::before {
	background: currentColor;
	content: "";
	height: 1px;
	width: 24px;
}

.section-kicker span {
	color: inherit;
}

/* ==========================================================
   STATUS BAR + HEADER
   ========================================================== */

.site-status-bar {
	background: var(--mwm-ink);
	color: #eee6da;
	font-family: var(--mwm-mono);
	font-size: 0.68rem;
	letter-spacing: 0.07em;
	position: relative;
	text-transform: uppercase;
	z-index: 210;
}

.status-bar-inner {
	align-items: center;
	display: flex;
	gap: 10px;
	margin: 0 auto;
	max-width: var(--mwm-shell);
	min-height: 34px;
	padding: 7px 30px;
}

.status-dot {
	background: #c87166;
	border-radius: 999px;
	box-shadow: 0 0 0 3px rgba(200, 113, 102, 0.17);
	height: 6px;
	width: 6px;
}

.site-status-bar a {
	color: #cfc5b8;
	text-decoration: none;
}

.site-status-bar a:hover,
.site-status-bar a:focus {
	color: #fff;
	text-decoration: underline;
}

.status-separator {
	color: #665e57;
}

.site-header {
	backdrop-filter: blur(14px);
	background: rgba(251, 248, 241, 0.95);
	border-bottom: 1px solid rgba(112, 97, 82, 0.24);
	box-shadow: 0 7px 26px rgba(50, 39, 31, 0.05);
	position: sticky;
	top: 0;
	z-index: 200;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(50, 39, 31, 0.11);
}

.header-inner,
.site-header .header-inner,
.site-header.is-scrolled .header-inner {
	align-items: center;
	display: flex;
	gap: 26px;
	height: auto;
	margin: 0 auto;
	max-width: var(--mwm-shell);
	min-height: 83px;
	padding: 12px 30px;
	position: relative;
	transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .header-inner {
	min-height: 69px;
	padding-block: 8px;
}

.site-branding {
	flex: 0 0 auto;
	margin: 0;
}

.archive-wordmark {
	align-items: center;
	color: var(--mwm-ink);
	display: inline-flex;
	gap: 12px;
	text-decoration: none;
}

.archive-wordmark:hover,
.archive-wordmark:focus {
	color: var(--mwm-ink);
}

.wordmark-monogram {
	align-items: baseline;
	border-right: 1px solid var(--mwm-line-dark);
	display: flex;
	font-family: var(--mwm-display);
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: -0.07em;
	line-height: 1;
	padding-right: 13px;
}

.wordmark-monogram span {
	color: var(--mwm-red);
	font-size: 0.66em;
	font-style: italic;
	margin-left: 2px;
}

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

.wordmark-copy strong {
	font-family: var(--mwm-display);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.1;
}

.wordmark-copy small {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.main-navigation {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	margin-left: auto;
}

.primary-menu,
.main-navigation .primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu > li {
	margin: 0;
	position: relative;
}

.primary-menu > li > a {
	border-radius: 2px;
	color: var(--mwm-ink-soft);
	display: block;
	font-size: 0.77rem;
	font-weight: 650;
	letter-spacing: 0.025em;
	padding: 11px 9px;
	position: relative;
	text-decoration: none;
}

.primary-menu > li > a::after {
	background: var(--mwm-red);
	bottom: 4px;
	content: "";
	height: 1px;
	left: 9px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
	width: calc(100% - 18px);
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	background: rgba(152, 59, 53, 0.06);
	color: var(--mwm-red-dark);
}

.primary-menu > li > a:hover::after,
.primary-menu > li > a:focus::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	transform: scaleX(1);
}

.primary-menu .sub-menu {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	box-shadow: var(--mwm-shadow-lg);
	padding: 8px;
}

.primary-menu .sub-menu a {
	color: var(--mwm-ink-soft);
	font-size: 0.8rem;
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid var(--mwm-line-dark);
	border-radius: 2px;
	color: var(--mwm-ink);
	display: none;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 9px;
	letter-spacing: 0.08em;
	padding: 10px 12px;
	text-transform: uppercase;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
	background: currentColor;
	display: block;
	height: 1px;
	position: relative;
	width: 17px;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: "";
	position: absolute;
}

.menu-toggle-icon::before { top: -5px; }
.menu-toggle-icon::after { top: 5px; }

.header-search {
	flex: 0 0 auto;
	position: relative;
}

.search-toggle {
	align-items: center;
	background: var(--mwm-ink);
	border: 0;
	border-radius: 999px;
	color: var(--mwm-paper-light);
	display: flex;
	height: 40px;
	justify-content: center;
	padding: 0;
	width: 40px;
}

.search-toggle:hover,
.search-toggle:focus {
	background: var(--mwm-red-dark);
	color: #fff;
}

.header-search-form {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	box-shadow: var(--mwm-shadow-lg);
	padding: 12px;
	right: 0;
	top: calc(100% + 12px);
	width: min(360px, calc(100vw - 40px));
}

.search-form {
	align-items: stretch;
	display: flex;
	gap: 0;
	margin: 0;
}

.search-form label {
	flex: 1 1 auto;
}

.search-form .search-field {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line-dark);
	border-radius: 0;
	color: var(--mwm-ink);
	font-size: 0.88rem;
	height: 46px;
	padding: 10px 14px;
	width: 100%;
}

.search-form .search-field:focus {
	border-color: var(--mwm-red);
	box-shadow: 0 0 0 3px rgba(152, 59, 53, 0.12);
	outline: 0;
}

.search-form .search-submit {
	background: var(--mwm-red-dark);
	border: 1px solid var(--mwm-red-dark);
	border-radius: 0;
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0 18px;
	text-transform: uppercase;
}

.search-form .search-submit:hover,
.search-form .search-submit:focus {
	background: var(--mwm-ink);
	border-color: var(--mwm-ink);
}

/* ==========================================================
   FRONT PAGE — HERO
   ========================================================== */

.museum-home {
	background: var(--mwm-paper-light);
}

.museum-hero {
	background:
		linear-gradient(90deg, rgba(255,255,255,0.62) 1px, transparent 1px) 0 0 / 90px 90px,
		linear-gradient(rgba(255,255,255,0.62) 1px, transparent 1px) 0 0 / 90px 90px,
		var(--mwm-paper);
	border-bottom: 1px solid var(--mwm-line);
	min-height: 670px;
	overflow: hidden;
	position: relative;
}

.museum-hero::before {
	border: 1px solid rgba(152, 59, 53, 0.19);
	border-radius: 50%;
	content: "";
	height: 490px;
	position: absolute;
	right: -220px;
	top: -150px;
	width: 490px;
}

.museum-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(50px, 7vw, 104px);
	grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
	min-height: 670px;
	padding-block: 74px 82px;
	position: relative;
}

.museum-hero-copy {
	max-width: 710px;
}

.museum-hero-copy h1 {
	font-size: clamp(3.1rem, 5.2vw, 5.35rem);
	font-weight: 500;
	letter-spacing: -0.052em;
	line-height: 0.98;
	margin: 0 0 29px;
	max-width: 760px;
}

.museum-hero-lead {
	color: #514942;
	font-family: var(--mwm-display);
	font-size: clamp(1.08rem, 1.5vw, 1.27rem);
	line-height: 1.62;
	margin: 0;
	max-width: 680px;
}

.museum-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 34px;
}

.museum-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 28px;
	justify-content: center;
	letter-spacing: 0.035em;
	min-height: 50px;
	padding: 13px 19px;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, border 160ms ease, transform 160ms ease;
}

.museum-button:hover,
.museum-button:focus {
	transform: translateY(-2px);
}

.museum-button-primary {
	background: var(--mwm-red-dark);
	border-color: var(--mwm-red-dark);
	color: #fff;
}

.museum-button-primary:hover,
.museum-button-primary:focus {
	background: var(--mwm-ink);
	border-color: var(--mwm-ink);
	color: #fff;
}

.museum-button-secondary {
	background: transparent;
	border-color: var(--mwm-line-dark);
	color: var(--mwm-ink);
}

.museum-button-secondary:hover,
.museum-button-secondary:focus {
	background: var(--mwm-white);
	border-color: var(--mwm-ink);
	color: var(--mwm-ink);
}

.museum-independence-note {
	align-items: flex-start;
	border-top: 1px solid var(--mwm-line);
	color: var(--mwm-muted);
	display: flex;
	font-size: 0.73rem;
	gap: 10px;
	line-height: 1.55;
	margin: 36px 0 0;
	max-width: 615px;
	padding-top: 17px;
}

.museum-independence-note svg {
	color: var(--mwm-green);
	flex: 0 0 auto;
	margin-top: 1px;
}

.museum-independence-note strong {
	color: var(--mwm-ink-soft);
}

.museum-hero-object {
	min-height: 510px;
	position: relative;
}

.archive-sheet {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line-dark);
	box-shadow: var(--mwm-shadow-lg);
	position: absolute;
}

.archive-sheet-back {
	background: var(--mwm-green-dark);
	bottom: 30px;
	height: 430px;
	left: 36px;
	transform: rotate(5.5deg);
	width: calc(100% - 45px);
}

.archive-sheet-front {
	background:
		linear-gradient(rgba(112, 100, 89, 0.055) 1px, transparent 1px) 0 0 / 100% 25px,
		var(--mwm-white);
	inset: 16px 23px 36px 0;
	padding: 24px 27px;
	transform: rotate(-2.25deg);
}

.archive-sheet-front::before,
.archive-sheet-front::after {
	background: rgba(177, 148, 101, 0.35);
	content: "";
	height: 34px;
	position: absolute;
	top: -12px;
	width: 92px;
}

.archive-sheet-front::before { left: 28px; transform: rotate(-3deg); }
.archive-sheet-front::after { right: 28px; transform: rotate(4deg); }

.archive-sheet-topline {
	align-items: center;
	border-bottom: 1px solid var(--mwm-ink);
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.59rem;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.08em;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.archive-date-lockup {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	margin-top: 25px;
}

.archive-month,
.archive-year {
	font-family: var(--mwm-mono);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.archive-date-lockup strong {
	color: var(--mwm-red-dark);
	font-family: var(--mwm-display);
	font-size: clamp(7.3rem, 10vw, 10rem);
	font-weight: 500;
	grid-row: 1 / span 2;
	line-height: 0.73;
	margin-right: 6px;
}

.archive-year {
	align-self: end;
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.archive-route {
	align-items: center;
	display: flex;
	margin: 40px 0 22px;
}

.route-point {
	background: var(--mwm-white);
	border: 2px solid var(--mwm-red-dark);
	border-radius: 999px;
	height: 11px;
	width: 11px;
}

.route-point-end {
	background: var(--mwm-red-dark);
	box-shadow: 0 0 0 4px rgba(152, 59, 53, 0.13);
}

.route-line {
	background: repeating-linear-gradient(90deg, var(--mwm-red-dark) 0 9px, transparent 9px 15px);
	height: 1px;
	width: 100%;
}

.archive-location {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.archive-location small {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.58rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.archive-location strong {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 1.3rem;
	font-weight: 500;
}

.archive-location span {
	font-size: 0.76rem;
}

.archive-stamp {
	border: 2px solid rgba(152, 59, 53, 0.68);
	bottom: 28px;
	color: rgba(152, 59, 53, 0.78);
	font-family: var(--mwm-mono);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	padding: 7px 10px;
	position: absolute;
	right: 27px;
	text-transform: uppercase;
	transform: rotate(-5deg);
}

/* ==========================================================
   FRONT PAGE — FACTS + SECTIONS
   ========================================================== */

.museum-facts {
	background: var(--mwm-white);
	border-bottom: 1px solid var(--mwm-line);
	padding: 31px 0 35px;
}

.museum-facts .museum-shell {
	align-items: end;
	display: grid;
	gap: 34px;
	grid-template-columns: 125px 1fr;
}

.museum-facts-heading .section-kicker {
	margin-bottom: 8px;
}

.museum-facts-heading .section-kicker::before {
	display: none;
}

.museum-facts-heading h2 {
	font-size: 1.62rem;
	margin: 0;
}

.facts-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr 1.25fr 1.4fr 1.25fr;
	margin: 0;
}

.facts-grid > div {
	border-left: 1px solid var(--mwm-line);
	min-width: 0;
	padding: 4px 17px 2px;
}

.facts-grid dt {
	color: var(--mwm-red);
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.facts-grid dd {
	color: var(--mwm-ink-soft);
	font-family: var(--mwm-display);
	font-size: 0.84rem;
	line-height: 1.38;
	margin: 0;
}

.museum-section {
	padding: clamp(76px, 8vw, 116px) 0;
}

.museum-section-heading {
	align-items: end;
	border-bottom: 1px solid var(--mwm-line-dark);
	display: grid;
	gap: 60px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
	margin-bottom: 36px;
	padding-bottom: 24px;
}

.museum-section-heading h2 {
	font-size: clamp(2.25rem, 4vw, 3.8rem);
	line-height: 1;
	margin: 0;
}

.museum-section-heading > p {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	font-size: 1.03rem;
	line-height: 1.58;
	margin: 0;
}

.cornerstone-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: var(--mwm-line-dark);
	border: 1px solid var(--mwm-line-dark);
}

.cornerstone-card {
	background: var(--mwm-white);
	color: var(--mwm-ink-soft);
	display: flex;
	flex-direction: column;
	min-height: 344px;
	padding: 25px 23px 23px;
	position: relative;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease;
}

.cornerstone-card::before {
	background: var(--mwm-red);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.cornerstone-card:hover,
.cornerstone-card:focus {
	background: var(--mwm-ink);
	color: #d9cfc1;
}

.cornerstone-card:hover::before,
.cornerstone-card:focus::before {
	transform: scaleX(1);
}

.cornerstone-card:hover h3,
.cornerstone-card:focus h3,
.cornerstone-card:hover .cornerstone-number,
.cornerstone-card:focus .cornerstone-number,
.cornerstone-card:hover .card-link-label,
.cornerstone-card:focus .card-link-label {
	color: #fff;
}

.cornerstone-topline {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}

.cornerstone-number {
	color: var(--mwm-red);
	font-family: var(--mwm-display);
	font-size: 1.15rem;
	font-style: italic;
}

.cornerstone-label {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cornerstone-card h3 {
	font-size: clamp(1.3rem, 1.8vw, 1.62rem);
	font-weight: 500;
	line-height: 1.18;
	margin: 0 0 17px;
}

.cornerstone-card p {
	font-size: 0.79rem;
	line-height: 1.65;
	margin: 0 0 26px;
}

.card-link-label {
	color: var(--mwm-red-dark);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	margin-top: auto;
	text-transform: uppercase;
}

/* Timeline */

.museum-timeline {
	background:
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 90px 90px,
		var(--mwm-ink);
	color: #ded4c6;
	overflow: hidden;
	padding: clamp(78px, 8vw, 110px) 0 104px;
}

.museum-section-heading-light {
	border-color: #5b534c;
}

.museum-section-heading-light h2 {
	color: #fffaf1;
}

.museum-section-heading-light .section-kicker {
	color: #d1786e;
}

.museum-section-heading-light > a {
	color: #e5d9ca;
	font-size: 0.73rem;
	font-weight: 700;
	justify-self: end;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.museum-section-heading-light > a:hover,
.museum-section-heading-light > a:focus {
	color: #fff;
	text-decoration: underline;
}

.timeline-track {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	margin-top: 55px;
}

.timeline-track article {
	border-top: 1px solid #6f655d;
	min-width: 0;
	padding: 27px 20px 0 0;
	position: relative;
}

.timeline-track time {
	color: #d68176;
	display: block;
	font-family: var(--mwm-mono);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.timeline-marker {
	background: var(--mwm-ink);
	border: 2px solid #aa9b8c;
	border-radius: 50%;
	height: 13px;
	left: 0;
	position: absolute;
	top: -7px;
	width: 13px;
}

.timeline-featured .timeline-marker {
	background: #d07369;
	border-color: #d07369;
	box-shadow: 0 0 0 6px rgba(208, 115, 105, 0.13);
}

.timeline-track h3 {
	color: #fffaf2;
	font-size: 1.08rem;
	line-height: 1.22;
	margin: 0 0 10px;
}

.timeline-track p {
	color: #a99f94;
	font-size: 0.69rem;
	line-height: 1.6;
	margin: 0;
	max-width: 145px;
}

/* Collections */

.museum-collections {
	background: var(--mwm-white);
}

.collection-grid {
	border-left: 1px solid var(--mwm-line-dark);
	border-top: 1px solid var(--mwm-line-dark);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
	align-items: start;
	background: var(--mwm-paper-light);
	border-bottom: 1px solid var(--mwm-line-dark);
	border-right: 1px solid var(--mwm-line-dark);
	color: var(--mwm-ink-soft);
	display: grid;
	gap: 17px;
	grid-template-columns: 48px 1fr auto;
	min-height: 176px;
	padding: 25px 22px;
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.collection-card:hover,
.collection-card:focus {
	background: var(--mwm-paper-deep);
	color: var(--mwm-ink);
}

.collection-code {
	color: var(--mwm-red);
	font-family: var(--mwm-mono);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.collection-card h3 {
	font-size: 1.42rem;
	line-height: 1.12;
	margin: 0 0 10px;
}

.collection-card p {
	color: var(--mwm-muted);
	font-size: 0.74rem;
	line-height: 1.6;
	margin: 0;
}

.collection-arrow {
	color: var(--mwm-red-dark);
	font-size: 1rem;
}

/* Research desk */

.museum-research-desk {
	background: var(--mwm-paper);
}

.research-desk-grid {
	display: grid;
	gap: clamp(50px, 8vw, 110px);
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.research-desk-grid > header {
	position: sticky;
	align-self: start;
	top: 130px;
}

.research-desk-grid > header h2 {
	font-size: clamp(2.25rem, 3.5vw, 3.7rem);
	line-height: 1;
	margin: 0 0 24px;
}

.research-desk-grid > header > p:not(.section-kicker) {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 27px;
}

.text-link {
	color: var(--mwm-red-dark);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

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

.research-list {
	border-top: 1px solid var(--mwm-line-dark);
}

.research-list-item {
	align-items: center;
	border-bottom: 1px solid var(--mwm-line-dark);
	display: grid;
	gap: 22px;
	grid-template-columns: 38px 1fr auto;
	min-height: 125px;
	padding: 22px 0;
}

.research-index {
	color: var(--mwm-red);
	font-family: var(--mwm-display);
	font-size: 1.16rem;
	font-style: italic;
}

.research-meta {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.56rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.research-list-item h3 {
	font-size: clamp(1.2rem, 2vw, 1.62rem);
	line-height: 1.25;
	margin: 0;
}

.research-list-item h3 a {
	color: var(--mwm-ink);
	text-decoration: none;
}

.research-list-item h3 a:hover,
.research-list-item h3 a:focus {
	color: var(--mwm-red-dark);
}

.research-arrow {
	align-items: center;
	border: 1px solid var(--mwm-line-dark);
	border-radius: 50%;
	color: var(--mwm-red-dark);
	display: flex;
	height: 38px;
	justify-content: center;
	text-decoration: none;
	width: 38px;
}

.research-arrow:hover,
.research-arrow:focus {
	background: var(--mwm-red-dark);
	border-color: var(--mwm-red-dark);
	color: #fff;
}

/* Publication note */

.museum-publication-note {
	background: var(--mwm-green-dark);
	color: #ddd5c8;
	padding: 78px 0 82px;
}

.publication-note-grid {
	display: grid;
	gap: clamp(50px, 8vw, 120px);
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.publication-note-grid .section-kicker {
	color: #d4867d;
}

.publication-note-grid h2 {
	color: #fffaf0;
	font-size: clamp(2.2rem, 4vw, 3.75rem);
	line-height: 1;
	margin: 0;
}

.publication-note-copy {
	border-left: 1px solid rgba(255,255,255,0.22);
	padding-left: 38px;
}

.publication-note-copy p {
	font-family: var(--mwm-display);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 19px;
}

.publication-principles {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 30px;
}

.publication-principles span {
	border: 1px solid rgba(255,255,255,0.26);
	color: #eee5d8;
	font-family: var(--mwm-mono);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 8px 11px;
	text-transform: uppercase;
}

.front-editor-content {
	background: var(--mwm-white);
}

/* ==========================================================
   SINGULAR ARTICLES + PAGES
   ========================================================== */

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

.singular-hero {
	background:
		linear-gradient(90deg, rgba(255,255,255,0.48) 1px, transparent 1px) 0 0 / 100px 100px,
		var(--mwm-paper);
	border-bottom: 1px solid var(--mwm-line);
	padding: 42px 0 55px;
}

.breadcrumbs {
	font-family: var(--mwm-mono);
	font-size: 0.6rem;
	letter-spacing: 0.055em;
	margin: 0 0 45px;
	text-transform: uppercase;
}

.breadcrumbs-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.breadcrumbs-item {
	max-width: 100%;
	min-width: 0;
}

.breadcrumbs a {
	color: var(--mwm-muted);
	text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
	color: var(--mwm-red-dark);
}

.breadcrumbs-sep {
	color: var(--mwm-line-dark);
	margin: 0 2px;
}

.breadcrumbs-current {
	color: var(--mwm-ink-soft);
	overflow-wrap: anywhere;
}

.article-header {
	margin: 0;
}

.article-taxonomy-line {
	align-items: center;
	color: var(--mwm-red-dark);
	display: flex;
	flex-wrap: wrap;
	font-family: var(--mwm-mono);
	font-size: 0.65rem;
	font-weight: 750;
	gap: 9px;
	letter-spacing: 0.09em;
	margin: 0 0 23px;
	text-transform: uppercase;
}

.article-taxonomy-line span,
.article-taxonomy-line a {
	border: 1px solid var(--mwm-line-dark);
	color: var(--mwm-red-dark);
	padding: 7px 9px;
	text-decoration: none;
}

.article-taxonomy-line a:hover,
.article-taxonomy-line a:focus {
	background: var(--mwm-red-dark);
	border-color: var(--mwm-red-dark);
	color: #fff;
}

.article-title,
.page-title {
	border: 0;
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: clamp(2.8rem, 5.9vw, 5.6rem);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.99;
	margin: 0;
	max-width: 1080px;
	overflow-wrap: anywhere;
	padding: 0;
}

.article-byline-row {
	align-items: center;
	border-top: 1px solid var(--mwm-line-dark);
	display: grid;
	gap: 13px;
	grid-template-columns: auto minmax(190px, 1fr) auto;
	margin-top: 42px;
	padding-top: 20px;
}

.article-author-mark {
	align-items: center;
	background: var(--mwm-red-dark);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-family: var(--mwm-display);
	font-size: 1rem;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.article-byline-copy {
	display: flex;
	flex-direction: column;
	font-size: 0.76rem;
	gap: 3px;
}

.article-byline-copy a {
	color: var(--mwm-ink);
	font-weight: 700;
}

.article-byline-copy small {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.55rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.article-record-meta {
	display: flex;
	gap: 25px;
	justify-content: flex-end;
}

.article-record-meta > span {
	color: var(--mwm-ink-soft);
	display: flex;
	flex-direction: column;
	font-family: var(--mwm-mono);
	font-size: 0.64rem;
	gap: 5px;
	white-space: nowrap;
}

.article-record-meta small {
	color: var(--mwm-muted);
	font-size: 0.51rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.article-featured-image {
	margin: 45px 0 0;
}

.article-featured-image img,
.article-featured-image .featured-image {
	border: 1px solid var(--mwm-line-dark);
	border-radius: 0;
	box-shadow: var(--mwm-shadow-lg);
	display: block;
	height: auto;
	max-height: 650px;
	object-fit: cover;
	width: 100%;
}

.featured-caption {
	border-bottom: 1px solid var(--mwm-line);
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.58rem;
	line-height: 1.55;
	margin: 0;
	padding: 10px 0;
}

.singular-content-area {
	padding-bottom: 96px;
	padding-top: 55px;
}

.article-content-wrapper {
	align-items: start;
	display: grid;
	gap: clamp(35px, 5vw, 64px);
	grid-template-columns: minmax(0, 1fr) 295px;
	margin: 0;
	max-width: none;
}

.article-content-no-rail {
	grid-template-columns: minmax(0, 900px);
	justify-content: center;
}

.article-body {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	border-radius: 0;
	box-shadow: var(--mwm-shadow-sm);
	max-width: none;
	min-width: 0;
	padding: clamp(30px, 5vw, 62px);
}

.article-content {
	color: var(--mwm-ink-soft);
	font-family: var(--mwm-sans);
	font-size: clamp(1rem, 1.25vw, 1.075rem);
	line-height: 1.82;
}

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

.article-content p {
	margin-bottom: 1.55em;
}

.article-content h2 {
	border-bottom: 1px solid var(--mwm-line);
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: clamp(1.85rem, 3.1vw, 2.75rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 2.15em 0 0.75em;
	padding-bottom: 0.32em;
}

.article-content h3 {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: clamp(1.38rem, 2.1vw, 1.78rem);
	font-weight: 500;
	line-height: 1.2;
	margin: 1.85em 0 0.65em;
}

.article-content h4 {
	font-family: var(--mwm-sans);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-top: 2em;
	text-transform: uppercase;
}

.article-content a {
	font-weight: 600;
	overflow-wrap: anywhere;
}

.article-content blockquote {
	background: var(--mwm-paper);
	border: 0;
	border-left: 3px solid var(--mwm-red-dark);
	border-radius: 0;
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 1.2em;
	font-style: normal;
	line-height: 1.6;
	margin: 2em 0;
	padding: 23px 28px;
}

.article-content ul,
.article-content ol {
	padding-left: 1.35em;
}

.article-content li {
	margin-bottom: 0.55em;
}

.article-content table {
	border: 1px solid var(--mwm-line-dark);
	border-collapse: collapse;
	font-size: 0.88em;
	margin: 2em 0;
	width: 100%;
}

.article-content th {
	background: var(--mwm-ink);
	color: #fff;
	font-family: var(--mwm-mono);
	font-size: 0.72em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.article-content th,
.article-content td {
	border: 1px solid var(--mwm-line);
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
}

.article-content tr:nth-child(even) td {
	background: rgba(232, 222, 206, 0.32);
}

.short-answer-box {
	background: var(--mwm-paper);
	border: 0;
	border-radius: 0;
	border-top: 4px solid var(--mwm-red-dark);
	box-shadow: none;
	margin: 0 0 44px;
	padding: 25px 28px 27px;
}

.short-answer-label {
	color: var(--mwm-red-dark) !important;
	font-family: var(--mwm-mono) !important;
	font-size: 0.63rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.11em !important;
	margin: 0 0 13px !important;
	text-transform: uppercase;
}

.short-answer-text {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 1.08rem;
	line-height: 1.67;
}

.short-answer-text p:last-child {
	margin-bottom: 0;
}

.article-sidebar,
.article-research-rail {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	max-height: calc(100vh - 135px);
	overflow: auto;
	padding: 0 2px 30px 0;
	position: sticky;
	top: 112px;
	width: auto;
}

.rail-label {
	border-bottom: 1px solid var(--mwm-line-dark);
	color: var(--mwm-red-dark);
	font-family: var(--mwm-mono);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	margin: 0 0 14px;
	padding: 0 0 10px;
	text-transform: uppercase;
}

.infobox {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	border-radius: 0;
	margin: 0 0 18px;
	overflow: hidden;
}

.infobox-title {
	background: var(--mwm-green-dark);
	color: #fff !important;
	font-family: var(--mwm-mono) !important;
	font-size: 0.62rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.09em !important;
	margin: 0 !important;
	padding: 12px 14px !important;
	text-transform: uppercase;
}

.infobox-content {
	padding: 4px 14px 9px;
}

.infobox-table,
.infobox-table tbody,
.infobox-table tr,
.infobox-table th,
.infobox-table td {
	background: transparent;
	border: 0;
}

.infobox-table tr {
	border-bottom: 1px solid var(--mwm-line);
	display: block;
	padding: 10px 0;
}

.infobox-table tr:last-child {
	border-bottom: 0;
}

.infobox-table th,
.infobox-table td {
	display: block;
	padding: 0;
	text-align: left;
}

.infobox-table th {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.infobox-table td {
	color: var(--mwm-ink-soft);
	font-family: var(--mwm-display);
	font-size: 0.82rem;
	line-height: 1.42;
	overflow-wrap: anywhere;
}

.infobox-table a {
	overflow-wrap: anywhere;
}

.toc-widget {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.toc-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--mwm-line-dark);
	color: var(--mwm-ink);
	display: flex;
	justify-content: space-between;
	padding: 11px 0;
	width: 100%;
}

.toc-title {
	font-family: var(--mwm-mono);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	margin: 0;
	text-transform: uppercase;
}

.toc-toggle-icon {
	color: var(--mwm-red);
	font-family: var(--mwm-mono);
	font-size: 0.62rem;
}

.toc-list {
	font-size: 0.72rem;
	line-height: 1.4;
	margin: 0;
	padding: 11px 0 0;
}

.toc-item {
	border-bottom: 1px solid rgba(169, 155, 137, 0.38);
	margin: 0;
}

.toc-item a {
	color: var(--mwm-muted);
	display: block;
	padding: 8px 5px 8px 0;
	text-decoration: none;
}

.toc-item a:hover,
.toc-item a:focus,
.toc-item a.active {
	color: var(--mwm-red-dark);
}

.toc-level-h3 a {
	font-size: 0.92em;
	padding-left: 15px;
}

.toc-mobile {
	display: none;
	margin-bottom: 25px;
}

.infobox-mobile-wrapper {
	display: none;
}

.article-section {
	border: 0;
	margin: 70px 0 0;
	max-width: none;
	padding: 0;
}

.article-section-heading {
	border-bottom: 1px solid var(--mwm-line-dark);
	margin-bottom: 22px;
	padding-bottom: 14px;
}

.article-section-heading .section-kicker {
	margin-bottom: 8px;
}

.article-section-heading h2,
.article-section > h2,
.related-title {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 500;
	line-height: 1.08;
	margin: 0;
}

.references-list {
	counter-reset: sources;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 1px;
	background: var(--mwm-line);
}

.references-list li {
	background: var(--mwm-white);
	color: var(--mwm-muted);
	counter-increment: sources;
	font-family: var(--mwm-display);
	font-size: 0.82rem;
	line-height: 1.6;
	margin: 0;
	min-width: 0;
	padding: 21px 22px 21px 54px;
	position: relative;
	word-break: break-word;
}

.references-list li::before {
	color: var(--mwm-red);
	content: counter(sources, decimal-leading-zero);
	font-family: var(--mwm-mono);
	font-size: 0.6rem;
	font-weight: 700;
	left: 20px;
	position: absolute;
	top: 23px;
}

.related-terms-list {
	border-top: 1px solid var(--mwm-line-dark);
	display: grid;
	grid-template-columns: 1fr 2fr;
	margin: 0;
}

.related-terms-list dt,
.related-terms-list dd {
	border-bottom: 1px solid var(--mwm-line);
	margin: 0;
	padding: 17px 0;
}

.related-terms-list dt {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 1.05rem;
	padding-right: 24px;
}

.related-terms-list dd {
	color: var(--mwm-muted);
	font-size: 0.78rem;
	line-height: 1.65;
}

.article-independence-panel {
	align-items: start;
	background: var(--mwm-green-dark);
	color: #dfd6ca;
	display: grid;
	gap: 17px;
	grid-template-columns: 32px 1fr;
	margin: 66px 0 0;
	padding: 23px 25px;
}

.article-independence-mark {
	align-items: center;
	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 50%;
	display: flex;
	font-family: var(--mwm-display);
	font-style: italic;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.article-independence-panel p {
	font-size: 0.75rem;
	line-height: 1.62;
	margin: 0;
}

.article-independence-panel strong {
	color: #fff;
	display: block;
	font-family: var(--mwm-mono);
	font-size: 0.6rem;
	letter-spacing: 0.08em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.related-articles {
	margin-top: 74px;
}

.related-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: var(--mwm-line);
	border: 1px solid var(--mwm-line);
}

.related-card {
	background: var(--mwm-white);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	overflow: hidden;
}

.related-card:hover {
	box-shadow: none;
	transform: none;
}

.related-card-thumbnail img {
	border-radius: 0;
	height: 150px;
	object-fit: cover;
	width: 100%;
}

.related-card-content {
	padding: 20px;
}

.related-card-title {
	font-family: var(--mwm-display);
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.25;
}

.related-card-title a {
	color: var(--mwm-ink);
	text-decoration: none;
}

.related-card-meta {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.post-navigation {
	border: 0;
	margin: 72px 0 0;
	padding: 0;
}

.post-navigation-links {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background: var(--mwm-line-dark);
	border: 1px solid var(--mwm-line-dark);
}

.post-navigation-links > :only-child {
	grid-column: 1 / -1;
}

.nav-previous,
.nav-next {
	background: var(--mwm-paper-light);
	margin: 0;
	min-height: 130px;
	padding: 22px;
}

.nav-next {
	text-align: right;
}

.nav-label {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.post-navigation a {
	color: var(--mwm-ink);
	display: block;
	font-family: var(--mwm-display);
	font-size: 1.15rem;
	line-height: 1.25;
	margin-top: 10px;
	text-decoration: none;
}

.post-navigation a:hover,
.post-navigation a:focus {
	color: var(--mwm-red-dark);
}

/* Discussion */

.comments-area {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	margin: 70px 0 0;
	max-width: 790px;
	padding: clamp(24px, 4vw, 42px);
}

.comments-title,
.comment-reply-title {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: clamp(1.75rem, 3vw, 2.3rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 24px;
}

.comment-list {
	list-style: none;
	margin: 0 0 38px;
	padding: 0;
}

.comment-list .comment-body {
	border-top: 1px solid var(--mwm-line);
	padding: 24px 0;
}

.comment-list .children {
	list-style: none;
	margin-left: 24px;
}

.comment-meta,
.comment-metadata,
.comment-notes,
.logged-in-as {
	color: var(--mwm-muted);
	font-size: 0.8rem;
}

.comment-form {
	display: grid;
	gap: 17px;
}

.comment-form p {
	margin: 0;
}

.comment-form label {
	color: var(--mwm-ink-soft);
	display: block;
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	background: var(--mwm-paper-light);
	border: 1px solid var(--mwm-line-dark);
	border-radius: 0;
	color: var(--mwm-ink);
	font: inherit;
	padding: 12px 14px;
	width: 100%;
}

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

.comment-form-cookies-consent {
	align-items: flex-start;
	display: flex;
	gap: 9px;
}

.comment-form-cookies-consent label {
	font-family: var(--mwm-sans);
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0;
	text-transform: none;
}

.comment-form .submit {
	background: var(--mwm-red-dark);
	border: 1px solid var(--mwm-red-dark);
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-family: var(--mwm-mono);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 13px 18px;
	text-transform: uppercase;
}

.comment-form .submit:hover,
.comment-form .submit:focus {
	background: var(--mwm-ink);
	border-color: var(--mwm-ink);
}

/* Page-specific */

.page-hero {
	padding-bottom: 60px;
}

.page-deck {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
	line-height: 1.6;
	margin: 28px 0 0;
	max-width: 760px;
}

.page-updated {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.58rem;
	letter-spacing: 0.05em;
	margin: 27px 0 0;
	text-transform: uppercase;
}

/* ==========================================================
   COLLECTION / ARCHIVE PAGES
   ========================================================== */

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

.collection-hero {
	background:
		linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 90px 90px,
		var(--mwm-ink);
	border-bottom: 5px solid var(--mwm-red-dark);
	color: #d6ccbf;
	padding: 76px 0 72px;
}

.collection-hero-grid {
	align-items: end;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1fr) 185px;
}

.collection-hero-grid > *,
.collection-hero-copy {
	min-width: 0;
}

.collection-hero .section-kicker {
	color: #d47a71;
}

.collection-hero h1 {
	color: #fffaf2;
	font-size: clamp(3.1rem, 6vw, 5.8rem);
	font-weight: 500;
	line-height: 0.97;
	margin: 0 0 26px;
	overflow-wrap: anywhere;
}

.collection-description {
	color: #bcb2a7;
	font-family: var(--mwm-display);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 720px;
}

.collection-description p {
	margin: 0;
}

.collection-description a {
	color: #fffaf2;
	text-decoration: underline;
	text-decoration-color: #d47a71;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.collection-description a:hover,
.collection-description a:focus {
	color: #fff;
	text-decoration-color: #fff;
}

.collection-file-card {
	border: 1px solid #696057;
	display: flex;
	flex-direction: column;
	min-height: 190px;
	padding: 18px;
}

.collection-file-card > span {
	color: #cc776d;
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.collection-file-card strong {
	color: #fff;
	font-family: var(--mwm-display);
	font-size: 4.4rem;
	font-weight: 500;
	line-height: 0.9;
	margin-top: auto;
}

.collection-file-card small {
	color: #a99f94;
	font-family: var(--mwm-mono);
	font-size: 0.53rem;
	letter-spacing: 0.06em;
	margin-top: 8px;
	text-transform: uppercase;
}

.collection-file-card em {
	color: #d4c9bc;
	font-family: var(--mwm-display);
	font-size: 0.7rem;
	margin-top: 8px;
}

.collection-content {
	padding-bottom: 100px;
	padding-top: 46px;
}

.collection-toolbar {
	align-items: center;
	border-bottom: 1px solid var(--mwm-line-dark);
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	padding-bottom: 17px;
}

.collection-toolbar > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.collection-toolbar-label {
	color: var(--mwm-red);
	font-family: var(--mwm-mono);
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.collection-toolbar strong {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 1.28rem;
	font-weight: 500;
}

.collection-search {
	width: 340px;
}

.collection-search .search-field {
	height: 42px;
}

.collection-search .search-submit {
	font-size: 0.63rem;
}

.archive-posts-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archive-card {
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	border-radius: 0;
	box-shadow: var(--mwm-shadow-sm);
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	margin: 0;
	min-height: 315px;
	overflow: hidden;
	padding: 0;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.archive-card:hover {
	box-shadow: 0 17px 38px rgba(45, 35, 28, 0.12);
	transform: translateY(-3px);
}

.archive-card-visual {
	background:
		linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 18px,
		var(--mwm-green-dark);
	color: #e4dbcf;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 19px 17px;
	position: relative;
	text-decoration: none;
}

.archive-card-visual::after {
	border: 1px solid rgba(255,255,255,0.19);
	content: "";
	inset: 9px;
	pointer-events: none;
	position: absolute;
}

.archive-card-image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.record-card-code {
	color: #fff;
	font-family: var(--mwm-display);
	font-size: 3.15rem;
	font-style: italic;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.record-card-rule {
	background: #b8887f;
	height: 2px;
	margin: 14px 0;
	position: relative;
	width: 35px;
	z-index: 1;
}

.record-card-type,
.record-card-date {
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.record-card-date {
	color: #a9b8af;
	margin-top: auto;
	writing-mode: vertical-rl;
}

.archive-card-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 22px 23px 19px;
}

.archive-card-topline {
	align-items: center;
	color: var(--mwm-muted);
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.045em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.archive-card-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.archive-card-terms a,
.archive-card-terms span {
	color: var(--mwm-red-dark);
	text-decoration: none;
}

.archive-card-title {
	font-size: clamp(1.38rem, 2.1vw, 1.8rem);
	font-weight: 500;
	line-height: 1.13;
	margin: 0 0 13px;
	overflow-wrap: anywhere;
}

.archive-card-title a {
	color: var(--mwm-ink);
	text-decoration: none;
}

.archive-card-title a:hover,
.archive-card-title a:focus {
	color: var(--mwm-red-dark);
}

.archive-card-excerpt {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	font-size: 0.8rem;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.archive-card-excerpt p {
	margin: 0;
}

.archive-card-footer {
	align-items: center;
	border-top: 1px solid var(--mwm-line);
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.04em;
	margin-top: auto;
	padding-top: 15px;
	text-transform: uppercase;
}

.archive-card-footer > span {
	color: var(--mwm-muted);
}

.archive-card-footer a {
	color: var(--mwm-red-dark);
	text-decoration: none;
}

.archive-card-footer a:hover,
.archive-card-footer a:focus {
	text-decoration: underline;
}

.navigation.pagination {
	border-top: 1px solid var(--mwm-line-dark);
	margin: 45px 0 0;
	padding: 27px 0 0;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.page-numbers {
	align-items: center;
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	color: var(--mwm-ink-soft);
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.62rem;
	height: 39px;
	justify-content: center;
	min-width: 39px;
	padding: 0 11px;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus {
	background: var(--mwm-red-dark);
	border-color: var(--mwm-red-dark);
	color: #fff;
}

.collection-empty {
	align-items: center;
	background: var(--mwm-white);
	border: 1px solid var(--mwm-line);
	display: grid;
	gap: 38px;
	grid-template-columns: 170px 1fr;
	min-height: 330px;
	padding: 45px;
}

.collection-empty-mark {
	color: var(--mwm-red-pale);
	font-family: var(--mwm-display);
	font-size: 8rem;
	line-height: 1;
	text-align: center;
}

.collection-empty h2 {
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1;
	margin: 0 0 16px;
}

.collection-empty p:not(.section-kicker) {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	line-height: 1.65;
	margin: 0 0 23px;
	max-width: 600px;
}

.collection-paths {
	align-items: center;
	border-top: 1px solid var(--mwm-line-dark);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	margin-top: 60px;
	padding-top: 25px;
}

.collection-paths span {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-right: auto;
	text-transform: uppercase;
}

.collection-paths a {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	font-size: 0.9rem;
	text-decoration: none;
}

.collection-paths a:hover,
.collection-paths a:focus {
	color: var(--mwm-red-dark);
	text-decoration: underline;
}

/* ==========================================================
   404
   ========================================================== */

.not-found-main {
	background: var(--mwm-paper);
}

.not-found-hero {
	background:
		linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px) 0 0 / 90px 90px,
		var(--mwm-paper);
	border-bottom: 1px solid var(--mwm-line);
	padding: 90px 0;
}

.not-found-grid {
	align-items: center;
	display: grid;
	gap: clamp(60px, 9vw, 130px);
	grid-template-columns: 310px minmax(0, 1fr);
}

.not-found-code {
	background: var(--mwm-red-dark);
	box-shadow: 22px 22px 0 var(--mwm-green-dark);
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 350px;
	padding: 26px;
	position: relative;
	transform: rotate(-2deg);
}

.not-found-code::after {
	border: 1px solid rgba(255,255,255,0.32);
	content: "";
	inset: 12px;
	position: absolute;
}

.not-found-code span,
.not-found-code small {
	font-family: var(--mwm-mono);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.not-found-code strong {
	font-family: var(--mwm-display);
	font-size: 8rem;
	font-weight: 500;
	letter-spacing: -0.08em;
	line-height: 0.8;
	margin: auto 0;
	position: relative;
	z-index: 1;
}

.not-found-code small {
	border-top: 1px solid rgba(255,255,255,0.45);
	padding-top: 13px;
}

.not-found-copy h1 {
	font-size: clamp(3rem, 6vw, 5.7rem);
	font-weight: 500;
	line-height: 0.96;
	margin: 0 0 25px;
}

.not-found-copy > p:not(.section-kicker) {
	color: var(--mwm-muted);
	font-family: var(--mwm-display);
	font-size: 1.08rem;
	line-height: 1.65;
	margin: 0;
	max-width: 680px;
}

.not-found-search {
	margin: 31px 0 22px;
	max-width: 600px;
}

.not-found-directions {
	background: var(--mwm-white);
	padding: 88px 0 100px;
}

.not-found-directions .museum-section-heading {
	grid-template-columns: 1fr;
}

.not-found-link-grid {
	background: var(--mwm-line-dark);
	border: 1px solid var(--mwm-line-dark);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.not-found-link-grid a {
	background: var(--mwm-paper-light);
	color: var(--mwm-ink);
	display: flex;
	flex-direction: column;
	min-height: 180px;
	padding: 23px;
	text-decoration: none;
}

.not-found-link-grid a:hover,
.not-found-link-grid a:focus {
	background: var(--mwm-ink);
	color: #fff;
}

.not-found-link-grid span {
	color: var(--mwm-red);
	font-family: var(--mwm-display);
	font-style: italic;
	margin-bottom: auto;
}

.not-found-link-grid strong {
	font-family: var(--mwm-display);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.2;
}

.not-found-link-grid small {
	color: var(--mwm-muted);
	font-family: var(--mwm-mono);
	font-size: 0.54rem;
	letter-spacing: 0.05em;
	margin-top: 7px;
	text-transform: uppercase;
}

.not-found-latest {
	display: grid;
	gap: 40px;
	grid-template-columns: 230px 1fr;
	margin-top: 70px;
}

.not-found-latest h2 {
	font-size: 1.8rem;
	line-height: 1.1;
	margin: 0;
}

.not-found-latest ul {
	border-top: 1px solid var(--mwm-line-dark);
	list-style: none;
	margin: 0;
	padding: 0;
}

.not-found-latest li {
	align-items: center;
	border-bottom: 1px solid var(--mwm-line-dark);
	display: grid;
	gap: 18px;
	grid-template-columns: 50px 1fr auto;
	padding: 16px 0;
}

.not-found-latest time {
	color: var(--mwm-red);
	font-family: var(--mwm-mono);
	font-size: 0.57rem;
	font-weight: 700;
	text-transform: uppercase;
}

.not-found-latest a {
	color: var(--mwm-ink);
	font-family: var(--mwm-display);
	text-decoration: none;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
	background: #171513;
	color: #bdb3a8;
	margin: 0;
	padding: 0;
}

.site-footer::before {
	display: none;
}

.footer-accent {
	background: linear-gradient(90deg, var(--mwm-red-dark) 0 40%, var(--mwm-gold) 40% 64%, var(--mwm-green) 64% 100%);
	height: 5px;
}

.footer-inner {
	margin: 0 auto;
	max-width: var(--mwm-shell);
	padding: 65px 30px 28px;
}

.footer-main-grid {
	display: grid;
	gap: 55px;
	grid-template-columns: minmax(260px, 1.25fr) 0.65fr 0.8fr 130px;
}

.footer-wordmark {
	align-items: baseline;
	color: #fffaf1;
	display: flex;
	gap: 12px;
	text-decoration: none;
}

.footer-wordmark > span {
	font-family: var(--mwm-display);
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: -0.07em;
}

.footer-wordmark > span span {
	color: #d17970;
	font-size: 0.66em;
	font-style: italic;
}

.footer-wordmark strong {
	border-left: 1px solid #5c544d;
	font-family: var(--mwm-display);
	font-size: 1rem;
	font-weight: 500;
	padding-left: 12px;
}

.footer-brand-column > p {
	font-family: var(--mwm-display);
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 22px 0 19px;
	max-width: 350px;
}

.footer-location {
	color: #aaa097;
	font-family: var(--mwm-mono);
	font-size: 0.55rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.footer-link-column h2 {
	color: #fffaf1;
	font-family: var(--mwm-mono);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 5px 0 20px;
	text-transform: uppercase;
}

.footer-link-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-link-column li {
	margin: 0 0 11px;
}

.site-footer .footer-link-column a {
	color: #bdb3a8;
	font-family: var(--mwm-display);
	font-size: 0.82rem;
	text-decoration: none;
}

.site-footer .footer-link-column a:hover,
.site-footer .footer-link-column a:focus {
	color: #fff;
	text-decoration: underline;
}

.footer-date-column {
	border: 1px solid #4d4640;
	display: flex;
	flex-direction: column;
	min-height: 154px;
	padding: 14px;
}

.footer-date-column span,
.footer-date-column small {
	color: #8d8379;
	font-family: var(--mwm-mono);
	font-size: 0.51rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.footer-date-column strong {
	color: #d17a70;
	font-family: var(--mwm-display);
	font-size: 4.7rem;
	font-weight: 500;
	line-height: 0.82;
	margin: auto 0;
}

.footer-disclaimer {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #514a44;
	border-radius: 0;
	border-top: 1px solid #514a44;
	color: #aaa097;
	font-size: 0.7rem;
	line-height: 1.65;
	margin: 58px 0 0;
	max-width: none;
	padding: 21px 0;
}

.footer-disclaimer p {
	margin: 0;
}

.footer-disclaimer strong {
	color: #f1e9dd;
}

.footer-rights-note {
	color: #aaa097;
	font-size: 0.92em;
	margin-top: 7px !important;
}

.footer-bottom {
	align-items: center;
	border: 0;
	display: flex;
	font-family: var(--mwm-mono);
	font-size: 0.52rem;
	justify-content: space-between;
	letter-spacing: 0.04em;
	margin-top: 0;
	padding: 22px 0 0;
	text-transform: uppercase;
}

.footer-bottom p {
	margin: 0;
}

.site-footer .footer-bottom a {
	color: #bdb3a8;
	text-decoration: none;
}

.site-footer .footer-bottom a:hover,
.site-footer .footer-bottom a:focus {
	color: #fff;
	text-decoration: underline;
}

/* ==========================================================
   ACCESSIBILITY + RESPONSIVE
   ========================================================== */

:where(a, button, input, textarea, select):focus-visible {
	box-shadow: 0 0 0 5px #7a2825;
	outline: 3px solid #fffaf2;
	outline-offset: 2px;
}

.timeline-track:focus-visible {
	box-shadow: 0 0 0 5px #7a2825;
	outline: 3px solid #fffaf2;
	outline-offset: 2px;
}

.search-form .search-field:focus-visible,
.comment-form input:focus-visible,
.comment-form textarea:focus-visible {
	box-shadow: 0 0 0 5px #7a2825;
	outline: 3px solid #fffaf2;
	outline-offset: 2px;
}

.skip-link:focus {
	background: var(--mwm-white);
	border: 2px solid var(--mwm-red-dark);
	color: var(--mwm-ink);
	font-weight: 700;
	left: 12px;
	padding: 12px 16px;
	top: 12px;
	z-index: 100001;
}

.admin-bar .skip-link:focus {
	top: 44px;
}

@media (max-width: 1120px) {
	.header-inner,
	.site-header .header-inner,
	.site-header.is-scrolled .header-inner {
		gap: 15px;
	}

	.wordmark-copy small {
		display: none;
	}

	.primary-menu > li > a {
		font-size: 0.7rem;
		padding-inline: 7px;
	}

	.museum-hero-grid {
		gap: 55px;
		grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
	}

	.facts-grid {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 21px;
	}

	.facts-grid > div:nth-child(4) {
		grid-column: 1 / span 2;
	}

	.timeline-track {
		gap: 0;
		grid-auto-columns: 190px;
		grid-auto-flow: column;
		grid-template-columns: none;
		overflow-x: auto;
		padding-bottom: 22px;
		scroll-snap-type: x proximity;
	}

	.timeline-track article {
		scroll-snap-align: start;
	}

	.archive-posts-grid {
		grid-template-columns: 1fr;
	}

	.archive-card {
		grid-template-columns: 155px 1fr;
	}
}

@media (max-width: 960px) {
	.museum-shell,
	.singular-shell,
	.collection-shell,
	.not-found-shell {
		padding-inline: 24px;
	}

	.status-bar-inner,
	.header-inner,
	.site-header .header-inner,
	.site-header.is-scrolled .header-inner,
	.footer-inner {
		padding-inline: 24px;
	}

	.header-inner,
	.site-header .header-inner,
	.site-header.is-scrolled .header-inner {
		flex-wrap: nowrap;
	}

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

	.main-navigation {
		justify-content: flex-end;
		min-width: 0;
		position: relative;
		width: auto;
	}

	.main-navigation .primary-menu {
		align-items: stretch;
		background: var(--mwm-white);
		border: 1px solid var(--mwm-line-dark);
		box-shadow: var(--mwm-shadow-lg);
		display: none;
		flex-direction: column;
		gap: 0;
		left: auto;
		max-height: calc(100vh - 150px);
		max-height: calc(100dvh - 150px);
		min-width: min(330px, calc(100vw - 48px));
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 8px;
		position: absolute;
		right: 0;
		top: calc(100% + 14px);
		z-index: 100;
	}

	.main-navigation .primary-menu.is-active {
		display: flex;
	}

	.primary-menu > li > a {
		border-bottom: 1px solid var(--mwm-line);
		font-size: 0.78rem;
		padding: 12px;
	}

	.primary-menu > li:last-child > a {
		border-bottom: 0;
	}

	.museum-hero {
		min-height: auto;
	}

	.museum-hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 65px 76px;
	}

	.museum-hero-copy {
		max-width: 780px;
	}

	.museum-hero-object {
		margin-inline: auto;
		max-width: 510px;
		min-height: 500px;
		width: 100%;
	}

	.museum-facts .museum-shell {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.facts-grid > div:first-child {
		border-left: 0;
	}

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

	.cornerstone-card {
		min-height: 315px;
	}

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

	.article-byline-row {
		grid-template-columns: auto 1fr;
	}

	.article-record-meta {
		border-top: 1px solid var(--mwm-line);
		grid-column: 1 / -1;
		justify-content: flex-start;
		padding-top: 15px;
	}

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

	.article-sidebar {
		display: none;
	}

	.toc-mobile {
		display: block;
	}

	.toc-mobile .toc-widget {
		background: var(--mwm-white);
		border: 1px solid var(--mwm-line);
		padding: 8px 18px 14px;
	}

	.infobox-mobile-wrapper {
		display: block;
		margin-bottom: 30px;
	}

	.article-section {
		margin-top: 55px;
	}

	.footer-main-grid {
		grid-template-columns: 1.3fr 0.7fr 0.8fr;
	}

	.footer-date-column {
		display: none;
	}

	.not-found-grid {
		gap: 65px;
		grid-template-columns: 260px 1fr;
	}

	.not-found-code {
		min-height: 300px;
	}

	.not-found-code strong {
		font-size: 6.5rem;
	}

	.not-found-link-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 769px) and (max-width: 960px) {
	/* The parent script only toggles nested menus at 768px and below. At
	   tablet widths, show those nested choices directly inside the popup. */
	.main-navigation .primary-menu .sub-menu {
		border: 0;
		border-left: 1px solid var(--mwm-line-dark);
		box-shadow: none;
		display: block;
		margin: 0 0 4px 12px;
		opacity: 1;
		padding: 3px 0 3px 10px;
		position: static;
		transform: none;
		visibility: visible;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.header-search {
		position: static;
	}

	.admin-bar .skip-link:focus {
		top: 58px;
	}
}

@media (max-width: 720px) {
	.status-bar-inner {
		justify-content: center;
		text-align: center;
	}

	.status-separator,
	.site-status-bar a {
		display: none;
	}

	.header-inner,
	.site-header .header-inner,
	.site-header.is-scrolled .header-inner {
		min-height: 70px;
		padding-block: 9px;
	}

	.wordmark-copy {
		display: none;
	}

	.wordmark-monogram {
		border: 0;
		padding-right: 0;
	}

	.header-search {
		order: 2;
		position: static;
	}

	.main-navigation {
		order: 3;
	}

	.search-toggle {
		height: 38px;
		width: 38px;
	}

	.menu-toggle-label {
		display: none;
	}

	.menu-toggle {
		height: 38px;
		padding: 0 11px;
	}

	.main-navigation .primary-menu {
		right: -1px;
	}

	.museum-hero-copy h1 {
		font-size: clamp(2.9rem, 13.5vw, 4.7rem);
	}

	.museum-hero-lead {
		font-size: 1.02rem;
	}

	.museum-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.museum-button {
		justify-content: space-between;
		width: 100%;
	}

	.museum-hero-object {
		min-height: 445px;
	}

	.archive-sheet-back {
		bottom: 18px;
		height: 385px;
	}

	.archive-sheet-front {
		inset: 10px 16px 24px 0;
		padding: 22px;
	}

	.archive-date-lockup strong {
		font-size: 7.2rem;
	}

	.archive-stamp {
		display: none;
	}

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

	.facts-grid > div,
	.facts-grid > div:first-child {
		border-left: 1px solid var(--mwm-line);
	}

	.facts-grid > div:nth-child(4) {
		grid-column: auto;
	}

	.facts-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.museum-section {
		padding-block: 72px;
	}

	.museum-section-heading {
		align-items: start;
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.cornerstone-grid,
	.collection-grid {
		grid-template-columns: 1fr;
	}

	.cornerstone-card {
		min-height: 275px;
	}

	.museum-section-heading-light > a {
		justify-self: start;
	}

	.research-desk-grid,
	.publication-note-grid {
		grid-template-columns: 1fr;
	}

	.research-desk-grid > header {
		position: static;
	}

	.publication-note-copy {
		border-left: 0;
		border-top: 1px solid rgba(255,255,255,0.22);
		padding: 30px 0 0;
	}

	.breadcrumbs {
		margin-bottom: 32px;
	}

	.article-title,
	.page-title {
		font-size: clamp(2.55rem, 12vw, 4.4rem);
	}

	.article-record-meta {
		display: grid;
		gap: 16px;
		grid-template-columns: repeat(2, 1fr);
	}

	.article-body {
		padding: 28px 23px;
	}

	.article-content {
		font-size: 0.98rem;
	}

	.short-answer-box {
		padding: 21px;
	}

	.references-list,
	.related-grid {
		grid-template-columns: 1fr;
	}

	.related-terms-list {
		grid-template-columns: 1fr;
	}

	.related-terms-list dt {
		border-bottom: 0;
		padding-bottom: 2px;
	}

	.related-terms-list dd {
		padding-top: 6px;
	}

	.post-navigation-links {
		grid-template-columns: 1fr;
	}

	.nav-next {
		text-align: left;
	}

	.collection-hero {
		padding-block: 58px;
	}

	.collection-hero-grid {
		align-items: stretch;
		gap: 35px;
		grid-template-columns: 1fr;
	}

	.collection-file-card {
		display: grid;
		grid-template-columns: 1fr auto;
		min-height: 0;
	}

	.collection-file-card strong {
		font-size: 3.3rem;
		grid-row: 1 / span 3;
		grid-column: 2;
	}

	.collection-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 17px;
	}

	.collection-search {
		width: 100%;
	}

	.archive-card {
		grid-template-columns: 102px minmax(0, 1fr);
		min-height: 0;
	}

	.archive-card-content {
		padding: 19px;
	}

	.archive-card-topline {
		align-items: start;
		flex-direction: column;
		gap: 7px;
	}

	.archive-card-excerpt {
		display: none;
	}

	.archive-card-footer {
		margin-top: 25px;
	}

	.collection-empty {
		grid-template-columns: 1fr;
		padding: 30px;
	}

	.collection-empty-mark {
		display: none;
	}

	.collection-paths {
		align-items: flex-start;
		flex-direction: column;
	}

	.collection-paths span {
		margin-bottom: 5px;
	}

	.not-found-hero {
		padding-block: 75px;
	}

	.not-found-grid {
		grid-template-columns: 1fr;
	}

	.not-found-code {
		max-width: 290px;
		min-height: 300px;
	}

	.not-found-link-grid {
		grid-template-columns: 1fr;
	}

	.not-found-latest {
		gap: 24px;
		grid-template-columns: 1fr;
	}

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

	.footer-brand-column {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.museum-shell,
	.singular-shell,
	.collection-shell,
	.not-found-shell,
	.status-bar-inner,
	.header-inner,
	.site-header .header-inner,
	.site-header.is-scrolled .header-inner,
	.footer-inner {
		padding-inline: 17px;
	}

	.site-status-bar {
		font-size: 0.59rem;
	}

	.museum-hero-grid {
		padding-block: 50px 65px;
	}

	.museum-hero-object {
		min-height: 390px;
	}

	.archive-sheet-back {
		height: 345px;
		left: 22px;
	}

	.archive-sheet-front {
		padding: 18px;
	}

	.archive-date-lockup strong {
		font-size: 6rem;
	}

	.archive-route {
		margin-top: 28px;
	}

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

	.facts-grid > div:last-child {
		grid-column: auto;
	}

	.research-list-item {
		gap: 13px;
		grid-template-columns: 28px 1fr;
	}

	.research-arrow {
		display: none;
	}

	.article-record-meta {
		grid-template-columns: 1fr;
	}

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

	.archive-card-visual {
		padding: 15px 11px;
	}

	.record-card-code {
		font-size: 2.2rem;
	}

	.archive-card-content {
		padding: 16px;
	}

	.archive-card-title {
		font-size: 1.25rem;
	}

	.archive-card-footer > span {
		display: none;
	}

	.footer-main-grid {
		gap: 40px 25px;
	}
}

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

@media print {
	body::before,
	.site-status-bar,
	.site-header,
	.article-sidebar,
	.toc-mobile,
	.related-articles,
	.post-navigation,
	.footer-accent,
	.footer-main-grid,
	.footer-bottom,
	.museum-hero-object,
	.not-found-code,
	.collection-file-card {
		display: none !important;
	}

	body,
	.site,
	.museum-home,
	.collection-main,
	.not-found-main,
	.singular-main,
	.singular-hero,
	.article-body,
	.museum-hero,
	.museum-timeline,
	.collection-hero,
	.not-found-hero,
	.museum-publication-note,
	.site-footer {
		background: #fff !important;
		box-shadow: none !important;
		color: #000 !important;
		display: block !important;
	}

	.collection-hero *,
	.museum-timeline *,
	.not-found-hero *,
	.museum-publication-note *,
	.archive-card *,
	.site-footer * {
		color: #000 !important;
	}

	a {
		color: #000 !important;
		text-decoration: underline !important;
	}

	.museum-hero-grid,
	.collection-hero-grid,
	.not-found-grid {
		display: block !important;
		min-height: auto !important;
	}

	.timeline-track {
		display: block !important;
		overflow: visible !important;
	}

	.timeline-track article {
		break-inside: avoid;
		margin-bottom: 16px;
	}

	.article-content-wrapper {
		display: block;
	}

	.article-body {
		border: 0;
		padding: 0;
	}

	.article-content th,
	.infobox-title,
	.archive-card-visual {
		background: #fff !important;
		color: #000 !important;
	}

	.article-independence-panel,
	.museum-independence-note,
	.footer-disclaimer {
		background: #fff !important;
		border: 2px solid #000 !important;
		color: #000 !important;
	}

	.article-independence-panel *,
	.museum-independence-note * {
		color: #000 !important;
	}

	.site-footer {
		border-top: 1px solid #000;
		margin-top: 30px;
	}

	.footer-inner {
		max-width: none;
		padding: 18px 0 0;
	}

	.footer-disclaimer {
		margin: 0;
		padding: 14px;
	}

	.archive-card {
		background: #fff !important;
		border: 1px solid #000;
		break-inside: avoid;
	}
}
