:root {
	--me-navy: #0b2b46;
	--me-navy-2: #0f3858;
	--me-coral: #ff655f;
	--me-yellow: #f5c84b;
	--me-paper: #f5f7f8;
	--me-white: #fff;
	--me-text: #536b7b;
	--me-line: #dce3e8;
	--me-line-soft: rgba(11, 43, 70, .065);
	--me-shadow: 0 20px 60px rgba(11, 43, 70, .08);
	--me-width: 1168px;
	--me-radius: 0;
}

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

html {
	scroll-behavior: smooth;
}

body.me-site {
	margin: 0;
	background: var(--me-paper);
	color: var(--me-navy);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

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

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

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

.me-skip-link {
	position: fixed;
	z-index: 99999;
	top: 8px;
	left: 8px;
	padding: 10px 14px;
	background: var(--me-navy);
	color: #fff;
	transform: translateY(-150%);
}

.me-skip-link:focus {
	transform: translateY(0);
}

.me-main {
	min-height: 60vh;
}

.me-grid-bg {
	background-color: var(--me-paper);
	background-image:
		linear-gradient(var(--me-line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--me-line-soft) 1px, transparent 1px);
	background-size: 64px 64px;
}

/* Header */
.me-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid var(--me-line);
	background: rgba(245, 247, 248, .94);
	backdrop-filter: blur(14px);
}

.me-header-inner {
	display: grid;
	grid-template-columns: 250px 1fr auto;
	align-items: center;
	width: min(100% - 48px, var(--me-width));
	min-height: 88px;
	margin: 0 auto;
	gap: 28px;
}

.me-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--me-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.me-wordmark strong {
	color: var(--me-coral);
	font-weight: 800;
}

.me-wordmark-bars {
	display: flex;
	align-items: flex-end;
	width: 31px;
	height: 31px;
	gap: 3px;
	transform: skewY(-8deg);
}

.me-wordmark-bars i {
	display: block;
	width: 5px;
	background: var(--me-navy);
}

.me-wordmark-bars i:nth-child(1) { height: 15px; }
.me-wordmark-bars i:nth-child(2) { height: 28px; background: var(--me-yellow); }
.me-wordmark-bars i:nth-child(3) { height: 21px; background: var(--me-coral); }
.me-wordmark-bars i:nth-child(4) { height: 27px; background: #cbd3d9; }

.custom-logo-link {
	display: block;
}

.custom-logo {
	display: block;
	width: auto;
	max-height: 52px;
}

.me-primary-nav {
	justify-self: center;
}

.me-nav-list {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	gap: clamp(18px, 2.3vw, 35px);
	list-style: none;
}

.me-nav-list a {
	position: relative;
	display: block;
	color: #3f5869;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.me-nav-list a::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	height: 2px;
	background: var(--me-coral);
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease;
}

.me-nav-list a:hover::after,
.me-nav-list .current-menu-item > a::after {
	transform: scaleX(1);
}

.me-saved-link {
	display: inline-flex;
	align-items: center;
	padding: 9px 11px 9px 14px;
	border: 1px solid var(--me-line);
	border-radius: 999px;
	gap: 8px;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.me-saved-link svg,
.me-save-button svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.me-saved-link strong {
	display: grid;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--me-navy);
	color: #fff;
	font-size: 12px;
	place-items: center;
}

.me-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--me-line);
	background: transparent;
}

.me-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: var(--me-navy);
}

/* Shared headings and buttons */
.me-kicker {
	display: flex;
	align-items: center;
	margin: 0 0 23px;
	gap: 13px;
	color: #6a7f8d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .2em;
	line-height: 1.4;
	text-transform: uppercase;
}

.me-kicker > span {
	display: block;
	width: 7px;
	height: 7px;
	background: var(--me-coral);
}

.me-kicker-light {
	color: rgba(255,255,255,.72);
}

.me-kicker-light > span {
	background: var(--me-yellow);
}

.me-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.me-text-link span {
	color: var(--me-coral);
	font-size: 21px;
	transition: transform .2s ease;
}

.me-text-link:hover span {
	transform: translateX(4px);
}

.me-button-dark,
.me-button-light,
.me-external-media {
	display: inline-flex;
	align-items: center;
	padding: 14px 20px;
	border: 1px solid transparent;
	gap: 18px;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.me-button-dark {
	background: var(--me-navy);
	color: #fff;
}

.me-button-light {
	border-color: rgba(255,255,255,.4);
	color: #fff;
}

/* Home hero */
.me-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
	width: min(100%, 1320px);
	min-height: 632px;
	padding: 88px max(32px, calc((100% - var(--me-width)) / 2)) 76px;
	margin: 0 auto;
	gap: clamp(54px, 7vw, 100px);
}

.me-hero-copy {
	align-self: center;
	max-width: 620px;
}

.me-hero h1 {
	margin: 0;
	color: var(--me-navy);
	font-size: clamp(48px, 5.25vw, 72px);
	font-weight: 780;
	letter-spacing: -.055em;
	line-height: .98;
}

.me-hero h1 em {
	display: inline;
	color: var(--me-coral);
	font-style: normal;
}

.me-hero-description {
	max-width: 620px;
	margin: 34px 0 30px;
	color: var(--me-text);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.6;
}

.me-hero-search {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	max-width: 630px;
	min-height: 68px;
	border: 1px solid #d7dfe4;
	background: #fff;
	box-shadow: 0 14px 40px rgba(11, 43, 70, .06);
}

.me-search-icon {
	position: relative;
	width: 17px;
	height: 17px;
	margin-left: 21px;
	border: 2px solid #65808f;
	border-radius: 50%;
}

.me-search-icon::after {
	position: absolute;
	right: -6px;
	bottom: -4px;
	width: 7px;
	height: 2px;
	background: #65808f;
	content: "";
	transform: rotate(45deg);
}

.me-hero-search input {
	min-width: 0;
	padding: 0 18px;
	border: 0;
	outline: 0;
	color: var(--me-navy);
}

.me-hero-search input::placeholder {
	color: #99a7b0;
}

.me-hero-search button {
	align-self: stretch;
	padding: 0 24px;
	border: 7px solid #fff;
	background: var(--me-navy);
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 750;
}

.me-hero-search button span {
	margin-left: 15px;
	font-size: 20px;
}

.me-search-suggestions {
	margin: 12px 0 0;
	color: #97a4ad;
	font-size: 12px;
}

.me-search-suggestions a {
	color: var(--me-navy);
	font-weight: 700;
}

.me-hero-atlas {
	position: relative;
	align-self: center;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	padding: 42px 48px;
	background-color: var(--me-navy);
	background-image:
		linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
	background-size: 44px 44px;
	color: #fff;
}

.me-hero-atlas > p {
	position: relative;
	z-index: 3;
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
}

.me-hero-atlas > strong {
	position: relative;
	z-index: 3;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 600;
}

.me-atlas-coral {
	position: absolute;
	z-index: 1;
	top: -56px;
	right: -70px;
	width: 340px;
	height: 220px;
	background: var(--me-coral);
	clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 0);
}

.me-atlas-yellow {
	position: absolute;
	z-index: 1;
	bottom: -80px;
	left: -45px;
	width: 310px;
	height: 230px;
	background: var(--me-yellow);
	transform: rotate(-17deg);
}

.me-atlas-rings {
	position: absolute;
	z-index: 2;
	right: -36px;
	bottom: 66px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 50%;
}

.me-atlas-rings::before,
.me-atlas-rings::after {
	position: absolute;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 50%;
	content: "";
}

.me-atlas-rings::before { inset: 44px; }
.me-atlas-rings::after { inset: 87px; }

.me-atlas-timeline {
	position: absolute;
	z-index: 4;
	right: 48px;
	bottom: 206px;
	left: 48px;
	display: flex;
	justify-content: space-between;
	height: 1px;
	background: rgba(255,255,255,.56);
}

.me-atlas-timeline i {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255,255,255,.26);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 5px rgba(11, 43, 70, .7);
	transform: translateY(-6px);
}

.me-atlas-timeline i.is-coral {
	background: var(--me-coral);
	box-shadow: 0 0 0 5px rgba(255,101,95,.16);
}

.me-atlas-timeline i.is-yellow {
	background: var(--me-yellow);
	box-shadow: 0 0 0 5px rgba(245,200,75,.16);
}

.me-atlas-timeline i span {
	position: absolute;
	top: 21px;
	left: 50%;
	color: rgba(255,255,255,.85);
	font-size: 9px;
	font-style: normal;
	transform: translateX(-50%);
}

.me-atlas-bars {
	position: absolute;
	z-index: 4;
	right: 40px;
	bottom: 38px;
	display: flex;
	align-items: flex-end;
	gap: 12px;
}

.me-atlas-bars i {
	display: block;
	width: 37px;
	height: 58px;
	background: #dae0e3;
}

.me-atlas-bars i:nth-child(2) { height: 96px; background: var(--me-coral); }
.me-atlas-bars i:nth-child(3) { height: 74px; }
.me-atlas-bars i:nth-child(4) { height: 117px; background: var(--me-yellow); }

.me-atlas-age {
	position: absolute;
	z-index: 4;
	bottom: 44px;
	left: 48px;
	padding: 9px 13px;
	border: 1px solid rgba(255,255,255,.34);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .18em;
}

/* Stats */
.me-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: min(100% - 48px, var(--me-width));
	margin: 0 auto;
	border-right: 1px solid var(--me-line);
	border-left: 1px solid var(--me-line);
}

.me-stats div {
	display: flex;
	align-items: baseline;
	min-height: 120px;
	padding: 28px 34px;
	border-right: 1px solid var(--me-line);
	gap: 9px;
}

.me-stats div:last-child { border-right: 0; }

.me-stats strong {
	color: var(--me-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	line-height: 1;
}

.me-stats span {
	color: var(--me-text);
	font-size: 13px;
	text-transform: lowercase;
}

/* Sections */
.me-section {
	width: min(100% - 48px, var(--me-width));
	padding: 104px 0;
	margin: 0 auto;
}

.me-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 50px;
	gap: 30px;
}

.me-section-heading h2 {
	margin: 0;
	font-size: clamp(36px, 4vw, 56px);
	letter-spacing: -.045em;
	line-height: 1.03;
}

.me-year-section {
	padding-bottom: 84px;
}

.me-year-strip {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 26px;
	overflow-x: auto;
	gap: 34px;
	scrollbar-width: thin;
}

.me-year-strip::before {
	position: absolute;
	top: 32px;
	right: 0;
	left: 0;
	height: 1px;
	background: #aebbc4;
	content: "";
}

.me-year-strip a {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 42px;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	color: #5f7483;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
}

.me-year-strip i {
	display: block;
	width: 13px;
	height: 13px;
	border: 3px solid var(--me-paper);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px #aebbc4;
}

.me-year-strip a.is-accent i,
.me-year-strip a:hover i {
	background: var(--me-coral);
	box-shadow: 0 0 0 1px var(--me-coral), 0 0 0 6px rgba(255,101,95,.12);
}

.me-featured-section {
	border-top: 1px solid var(--me-line);
}

/* Cards */
.me-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 22px;
}

.me-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--me-line);
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}

.me-card:hover {
	box-shadow: var(--me-shadow);
	transform: translateY(-4px);
}

.me-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--me-navy);
	text-decoration: none;
}

.me-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.me-card:hover .me-card-media img {
	transform: scale(1.03);
}

.me-card-placeholder {
	position: relative;
	display: grid;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: var(--me-navy);
	background-image:
		linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
	background-size: 32px 32px;
	color: #fff;
	place-items: center;
}

.me-card-placeholder::before {
	position: absolute;
	top: -42px;
	right: -32px;
	width: 160px;
	height: 125px;
	background: var(--me-coral);
	content: "";
	transform: rotate(21deg);
}

.me-card-placeholder::after {
	position: absolute;
	bottom: -62px;
	left: -30px;
	width: 180px;
	height: 120px;
	background: var(--me-yellow);
	content: "";
	transform: rotate(-12deg);
}

.me-card-placeholder strong {
	position: relative;
	z-index: 2;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
}

.me-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.me-card-meta {
	margin: 0 0 10px;
	color: var(--me-coral);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.me-card h3 {
	margin: 0 0 12px;
	font-size: 23px;
	letter-spacing: -.025em;
	line-height: 1.18;
}

.me-card h3 a {
	text-decoration: none;
}

.me-card-body > p:not(.me-card-meta) {
	margin: 0 0 22px;
	color: var(--me-text);
	font-size: 14px;
}

.me-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	margin-top: auto;
	border-top: 1px solid var(--me-line);
	gap: 12px;
}

.me-card-open {
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.me-card-open span {
	margin-left: 7px;
	color: var(--me-coral);
}

.me-save-button {
	display: inline-flex;
	align-items: center;
	padding: 7px;
	border: 0;
	background: transparent;
	color: #617888;
	cursor: pointer;
	gap: 7px;
	font-size: 12px;
}

.me-save-button[aria-pressed="true"] {
	color: var(--me-coral);
}

.me-save-button[aria-pressed="true"] svg path {
	fill: currentColor;
}

/* Method */
.me-method-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: min(100%, 1320px);
	padding: 86px max(32px, calc((100% - var(--me-width)) / 2));
	margin: 0 auto 90px;
	background-color: var(--me-navy);
	color: #fff;
	gap: 70px;
}

.me-method-section h2 {
	margin: 0;
	font-size: clamp(40px, 4vw, 58px);
	letter-spacing: -.045em;
	line-height: 1.03;
}

.me-method-section > div:last-child {
	align-self: end;
}

.me-method-section > div:last-child > p {
	margin: 0 0 28px;
	color: rgba(255,255,255,.72);
	font-size: 17px;
}

/* Archive */
.me-archive-hero,
.me-page-header {
	padding: 86px max(32px, calc((100% - var(--me-width)) / 2)) 74px;
	border-bottom: 1px solid var(--me-line);
}

.me-archive-hero h1,
.me-page-header h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(50px, 6vw, 78px);
	letter-spacing: -.055em;
	line-height: .98;
}

.me-archive-hero > p:last-child,
.me-page-header > p:last-child {
	max-width: 710px;
	margin: 28px 0 0;
	color: var(--me-text);
	font-size: 18px;
}

.me-archive-section,
.me-resource-browser {
	padding-top: 58px;
}

.me-results-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--me-line);
	color: var(--me-text);
	font-size: 13px;
}

.me-results-bar p {
	margin: 0;
}

.me-results-bar strong {
	color: var(--me-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
}

.me-filter-panel {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr) auto auto;
	align-items: end;
	padding: 24px;
	margin-bottom: 34px;
	border: 1px solid var(--me-line);
	background: #fff;
	gap: 16px;
}

.me-filter-panel label {
	display: block;
	margin-bottom: 5px;
	color: #6a7e8b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.me-filter-panel input,
.me-filter-panel select {
	width: 100%;
	height: 46px;
	padding: 0 12px;
	border: 1px solid #cfd9df;
	border-radius: 0;
	background: #fff;
	color: var(--me-navy);
}

.me-filter-panel button {
	height: 46px;
	padding: 0 20px;
	border: 1px solid var(--me-navy);
	background: var(--me-navy);
	color: #fff;
	cursor: pointer;
	font-weight: 750;
}

.me-filter-panel > a {
	display: grid;
	height: 46px;
	color: var(--me-text);
	font-size: 12px;
	place-items: center;
}

.navigation.pagination,
.page-numbers {
	margin-top: 45px;
}

ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	gap: 6px;
	list-style: none;
}

a.page-numbers,
span.page-numbers {
	display: grid;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--me-line);
	text-decoration: none;
	place-items: center;
}

span.page-numbers.current {
	border-color: var(--me-navy);
	background: var(--me-navy);
	color: #fff;
}

.me-empty-state {
	padding: 70px 32px;
	border: 1px solid var(--me-line);
	background: #fff;
	text-align: center;
}

.me-empty-state h2 {
	margin: 0 0 8px;
	font-size: 34px;
}

.me-empty-state p {
	margin: 0;
	color: var(--me-text);
}

/* Single records */
.me-single-header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	padding: 76px max(32px, calc((100% - var(--me-width)) / 2)) 60px;
	border-bottom: 1px solid var(--me-line);
	gap: 40px;
}

.me-single-heading {
	max-width: 880px;
}

.me-single-header h1 {
	margin: 0;
	font-size: clamp(48px, 5.8vw, 76px);
	letter-spacing: -.055em;
	line-height: .98;
}

.me-single-heading > p:last-child {
	max-width: 760px;
	margin: 24px 0 0;
	color: var(--me-text);
	font-size: 18px;
}

.me-save-button-large {
	padding: 13px 17px;
	border: 1px solid var(--me-line);
	background: #fff;
	font-size: 13px;
}

.me-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	width: min(100% - 48px, var(--me-width));
	padding: 70px 0 110px;
	margin: 0 auto;
	gap: 64px;
}

.me-single-image {
	margin: 0 0 38px;
}

.me-single-image img {
	display: block;
	width: 100%;
}

.me-single-media {
	position: relative;
	margin: 0 0 38px;
}

.me-single-media iframe,
.me-single-media video {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

.me-external-media {
	width: 100%;
	justify-content: space-between;
	background: var(--me-navy);
	color: #fff;
}

.me-prose {
	color: #344f60;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1.85;
}

.me-prose > *:first-child { margin-top: 0; }
.me-prose > *:last-child { margin-bottom: 0; }

.me-prose h2,
.me-prose h3,
.me-prose h4 {
	color: var(--me-navy);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: -.03em;
	line-height: 1.12;
}

.me-prose h2 { margin-top: 2em; font-size: 36px; }
.me-prose h3 { margin-top: 1.7em; font-size: 27px; }

.me-prose a {
	color: var(--me-navy);
	text-decoration-color: var(--me-coral);
}

.me-prose blockquote {
	padding: 20px 0 20px 28px;
	margin: 36px 0;
	border-left: 5px solid var(--me-yellow);
	color: var(--me-navy);
	font-size: 23px;
}

.me-record-sheet {
	align-self: start;
	border-top: 5px solid var(--me-coral);
	background: #fff;
	box-shadow: var(--me-shadow);
}

.me-record-label {
	padding: 22px 24px;
	margin: 0;
	border-bottom: 1px solid var(--me-line);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
}

.me-record-sheet dl {
	margin: 0;
}

.me-record-sheet dl > div {
	padding: 17px 24px;
	border-bottom: 1px solid var(--me-line);
}

.me-record-sheet dt {
	margin-bottom: 5px;
	color: #7c8f9b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.me-record-sheet dd {
	margin: 0;
	color: var(--me-navy);
	font-size: 14px;
	font-weight: 650;
}

.me-record-sheet dd a {
	text-decoration-color: var(--me-coral);
}

.me-rights-note {
	padding: 26px 30px;
	margin-top: 42px;
	border-left: 5px solid var(--me-yellow);
	background: #fff;
}

.me-rights-note h2 {
	margin: 0 0 8px;
	font-size: 20px;
}

.me-rights-note p {
	margin: 0;
	color: var(--me-text);
	font-size: 14px;
}

/* Pages and saved items */
.me-page-content {
	width: min(100% - 48px, 780px);
	padding: 70px 0 110px;
	margin: 0 auto;
}

.me-saved-page {
	padding-top: 50px;
}

.me-saved-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--me-line);
}

.me-saved-toolbar p { margin: 0; color: var(--me-text); }
.me-saved-toolbar strong { color: var(--me-navy); font-size: 22px; }

.me-saved-toolbar button {
	padding: 9px 13px;
	border: 1px solid var(--me-line);
	background: transparent;
	color: var(--me-text);
	cursor: pointer;
}

.me-saved-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.me-saved-item {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 22px;
	border: 1px solid var(--me-line);
	background: #fff;
	gap: 18px;
}

.me-saved-item p {
	margin: 0 0 5px;
	color: var(--me-coral);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.me-saved-item h2 {
	margin: 0;
	font-size: 22px;
}

.me-saved-item h2 a {
	text-decoration: none;
}

.me-saved-item button {
	align-self: start;
	padding: 7px;
	border: 0;
	background: transparent;
	color: #7c8d97;
	cursor: pointer;
}

.me-saved-empty {
	grid-column: 1 / -1;
	padding: 70px 30px;
	border: 1px solid var(--me-line);
	text-align: center;
}

.me-not-found {
	min-height: 620px;
	padding: 120px max(32px, calc((100% - var(--me-width)) / 2));
}

.me-not-found h1 {
	margin: 0;
	font-size: clamp(54px, 6vw, 86px);
	letter-spacing: -.055em;
	line-height: .95;
}

.me-not-found > p:not(.me-kicker) {
	max-width: 620px;
	margin: 28px 0;
	color: var(--me-text);
	font-size: 18px;
}

/* Footer */
.me-footer {
	border-top: 1px solid var(--me-line);
	background: #eef2f4;
}

.me-footer-inner {
	display: grid;
	grid-template-columns: 1.5fr .8fr .8fr;
	width: min(100% - 48px, var(--me-width));
	padding: 70px 0 58px;
	margin: 0 auto;
	gap: 70px;
}

.me-footer-brand > p {
	max-width: 400px;
	margin: 22px 0 0;
	color: var(--me-text);
}

.me-footer h2 {
	margin: 0 0 15px;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.me-footer ul,
.me-footer .me-nav-list,
.me-footer .me-footer-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.me-footer li {
	margin: 7px 0;
}

.me-footer a {
	color: #445e6e;
	font-size: 14px;
}

.me-footer .me-nav-list a::after {
	display: none;
}

.me-footer-bottom {
	display: flex;
	justify-content: space-between;
	width: min(100% - 48px, var(--me-width));
	padding: 20px 0 26px;
	margin: 0 auto;
	border-top: 1px solid #d6dfe4;
	gap: 24px;
	color: #7c8c96;
	font-size: 11px;
}

.me-footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 1120px) {
	.me-header-inner {
		grid-template-columns: 200px 1fr auto;
		gap: 18px;
	}

	.me-nav-list {
		gap: 16px;
	}

	.me-hero {
		grid-template-columns: 1fr 430px;
		gap: 48px;
	}

	.me-filter-panel {
		grid-template-columns: repeat(4, 1fr);
	}

	.me-filter-search {
		grid-column: span 2;
	}

	.me-filter-panel button {
		grid-column: span 1;
	}
}

@media (max-width: 960px) {
	body.admin-bar .me-header {
		top: 46px;
	}

	.me-header-inner {
		grid-template-columns: 1fr auto auto;
		min-height: 74px;
	}

	.me-menu-toggle {
		display: block;
		grid-column: 2;
		grid-row: 1;
	}

	.me-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 22px 24px;
		border-bottom: 1px solid var(--me-line);
		background: var(--me-paper);
	}

	.me-primary-nav.is-open {
		display: block;
	}

	.me-primary-nav .me-nav-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.me-primary-nav .me-nav-list a {
		padding: 9px 0;
	}

	.me-hero {
		grid-template-columns: 1fr;
		padding-top: 70px;
	}

	.me-hero-copy {
		max-width: 760px;
	}

	.me-hero-atlas {
		width: min(100%, 650px);
	}

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

	.me-single-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.me-record-sheet {
		width: min(100%, 620px);
	}
}

@media (max-width: 760px) {
	.me-header-inner,
	.me-stats,
	.me-section,
	.me-single-layout,
	.me-footer-inner,
	.me-footer-bottom {
		width: min(100% - 32px, var(--me-width));
	}

	.me-saved-link > span {
		display: none;
	}

	.me-hero {
		padding: 56px 16px;
	}

	.me-hero h1 {
		font-size: clamp(46px, 13vw, 64px);
	}

	.me-hero-search {
		grid-template-columns: 38px 1fr;
	}

	.me-hero-search button {
		grid-column: 1 / -1;
		min-height: 54px;
	}

	.me-hero-atlas {
		min-height: 430px;
		padding: 34px 30px;
	}

	.me-atlas-timeline {
		right: 30px;
		left: 30px;
	}

	.me-atlas-age {
		left: 30px;
	}

	.me-atlas-bars {
		right: 26px;
	}

	.me-atlas-bars i {
		width: 28px;
	}

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

	.me-stats div:nth-child(2) {
		border-right: 0;
	}

	.me-stats div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--me-line);
	}

	.me-section {
		padding: 74px 0;
	}

	.me-section-heading {
		display: block;
	}

	.me-section-heading .me-text-link {
		margin-top: 24px;
	}

	.me-method-section {
		grid-template-columns: 1fr;
		padding: 62px 22px;
		gap: 36px;
	}

	.me-archive-hero,
	.me-page-header,
	.me-single-header {
		padding: 62px 20px 52px;
	}

	.me-single-header {
		grid-template-columns: 1fr;
	}

	.me-save-button-large {
		justify-self: start;
	}

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

	.me-filter-search {
		grid-column: 1 / -1;
	}

	.me-footer-inner {
		grid-template-columns: 1.4fr 1fr;
	}

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

	.me-footer-bottom {
		display: block;
	}

	.me-footer-bottom p + p {
		margin-top: 7px;
	}
}

@media (max-width: 540px) {
	.me-wordmark {
		font-size: 11px;
	}

	.me-wordmark-bars {
		width: 26px;
	}

	.me-saved-link {
		padding: 8px;
	}

	.me-primary-nav .me-nav-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.me-card-grid,
	.me-saved-grid {
		grid-template-columns: 1fr;
	}

	.me-stats div {
		display: block;
		min-height: 102px;
		padding: 22px;
	}

	.me-stats strong,
	.me-stats span {
		display: block;
	}

	.me-filter-panel {
		grid-template-columns: 1fr;
	}

	.me-filter-search,
	.me-filter-panel button {
		grid-column: auto;
	}

	.me-record-sheet dl > div {
		padding: 15px 18px;
	}
}

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

/* Annual documentary coverage */
.me-coverage-section {
	padding: 92px max(24px, calc((100% - var(--me-width)) / 2));
	background: var(--me-navy);
	color: var(--me-white);
}

.me-coverage-heading {
	width: 100%;
	margin-bottom: 42px;
}

.me-coverage-heading h2 {
	margin: 12px 0 0;
	color: var(--me-white);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 450;
	line-height: 1.03;
	letter-spacing: -.045em;
}

.me-coverage-heading > p {
	max-width: 430px;
	margin: 0;
	color: #b9c8d3;
}

.me-coverage-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 9px;
}

.me-coverage-card {
	padding: 20px 18px 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(20, 65, 96, .78);
	transition: transform .2s ease, background .2s ease;
}

.me-coverage-card:hover {
	background: rgba(25, 78, 113, .95);
	transform: translateY(-2px);
}

.me-coverage-year {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .18);
	text-decoration: none;
}

.me-coverage-year strong {
	font-size: 18px;
}

.me-coverage-year > span {
	display: inline-grid;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--me-yellow);
	color: var(--me-navy);
	font-size: 11px;
	font-weight: 850;
	place-items: center;
}

.me-coverage-card > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 13px;
}

.me-coverage-card > div a {
	display: grid;
	padding: 2px 10px;
	border-left: 1px solid rgba(255, 255, 255, .12);
	gap: 2px;
	text-decoration: none;
}

.me-coverage-card > div a:first-child {
	padding-left: 0;
	border-left: 0;
}

.me-coverage-card > div span {
	color: #a9bbc8;
	font-size: 9px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.me-coverage-card > div strong {
	font-size: 16px;
}

/* Democratic presidents */
.me-presidents-section {
	padding: 94px max(24px, calc((100% - var(--me-width)) / 2));
	background-color: var(--me-navy);
	color: var(--me-white);
}

.me-presidents-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(280px, .8fr);
	align-items: end;
	margin-bottom: 46px;
	gap: 54px;
}

.me-presidents-heading h2 {
	margin: 14px 0 0;
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 400;
	line-height: .98;
	letter-spacing: -.055em;
}

.me-presidents-heading h2 em {
	color: var(--me-coral);
	font-style: normal;
}

.me-presidents-heading > p {
	padding: 10px 0 10px 22px;
	margin: 0;
	border-left: 4px solid var(--me-yellow);
	color: #b9c8d3;
}

.me-presidents-heading > p strong {
	color: var(--me-yellow);
	font-size: 16px;
}

.me-president-list {
	display: grid;
	gap: 10px;
}

.me-president-card {
	position: relative;
	display: grid;
	grid-template-columns: 2.15fr 1.75fr 2.2fr .7fr;
	min-height: 205px;
	border-left: 4px solid var(--me-coral);
	background: var(--me-white);
	color: var(--me-navy);
}

.me-president-card.is-yellow { border-left-color: var(--me-yellow); }
.me-president-card.is-blue { border-left-color: #45a6d6; }
.me-president-card.is-navy { border-left-color: #8aa2b2; }

.me-president-identity,
.me-president-government,
.me-president-terms,
.me-president-open {
	padding: 28px 24px;
	border-right: 1px solid var(--me-line);
}

.me-president-identity {
	position: relative;
	display: grid;
	grid-template-columns: 70px 1fr;
	align-items: center;
	gap: 15px;
}

.me-president-order {
	position: absolute;
	top: 16px;
	left: 18px;
	color: #9cabb5;
	font-size: 9px;
}

.me-president-monogram {
	display: grid;
	width: 70px;
	height: 70px;
	background: var(--me-navy);
	color: var(--me-white);
	font-size: 22px;
	place-items: center;
}

.me-president-identity p {
	margin: 0 0 5px;
	color: var(--me-coral);
	font-size: 11px;
	font-weight: 800;
}

.me-president-identity h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.08;
}

.me-president-identity h3 a {
	text-decoration: none;
}

.me-president-identity div > span {
	display: block;
	margin-top: 9px;
	color: #718592;
	font-size: 11px;
	line-height: 1.35;
}

.me-president-government {
	display: grid;
	grid-template-columns: 1fr auto;
	align-content: start;
	gap: 20px;
}

.me-president-government div > span,
.me-president-term-head span {
	display: block;
	margin-bottom: 7px;
	color: #81939f;
	font-size: 8px;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.me-president-government div > strong {
	font-size: 13px;
	line-height: 1.35;
}

.me-president-government .me-coalition {
	display: inline-block;
	padding: 6px 10px;
	background: #edf1f3;
}

.me-president-government > p {
	grid-column: 1 / -1;
	align-self: end;
	margin: 22px 0 0;
	color: #718592;
	font-size: 11px;
	line-height: 1.45;
}

.me-president-terms {
	padding-top: 20px;
	padding-bottom: 20px;
}

.me-president-term {
	display: grid;
	grid-template-columns: 1fr .8fr .7fr;
	align-items: center;
	min-height: 34px;
	border-top: 1px solid var(--me-line);
	gap: 12px;
	font-size: 11px;
}

.me-president-term:first-child {
	border-top: 0;
}

.me-president-term b {
	color: var(--me-coral);
	font-size: 15px;
}

.me-president-term small {
	grid-column: 1 / -1;
	padding-bottom: 7px;
	color: #718592;
}

.me-president-open {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #eaf0f3;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.me-president-open span {
	margin-top: 10px;
	font-size: 16px;
}

.me-presidents-note {
	display: flex;
	align-items: center;
	padding-top: 30px;
	gap: 22px;
}

.me-presidents-note p {
	max-width: 700px;
	margin: 0 auto 0 0;
	color: #aebfca;
	font-size: 12px;
}

.me-presidents-note a {
	color: var(--me-white);
	font-size: 11px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.me-president-detail {
	margin-top: 40px;
	border: 1px solid var(--me-line);
	background: var(--me-white);
}

.me-president-detail h2 {
	padding: 20px 22px;
	margin: 0;
	border-bottom: 1px solid var(--me-line);
	font-size: 22px;
}

.me-president-detail > div {
	display: grid;
	grid-template-columns: 1fr 1fr .8fr 1.8fr;
	padding: 13px 22px;
	border-bottom: 1px solid var(--me-line);
	gap: 16px;
}

.me-president-detail-head {
	color: #718592;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.me-president-detail b {
	color: var(--me-coral);
}

@media (max-width: 1050px) {
	.me-coverage-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.me-president-card {
		grid-template-columns: 1.5fr 1fr;
	}

	.me-president-government {
		border-right: 0;
	}

	.me-president-terms {
		border-top: 1px solid var(--me-line);
	}

	.me-president-open {
		border-top: 1px solid var(--me-line);
	}
}

@media (max-width: 760px) {
	.me-coverage-section,
	.me-presidents-section {
		padding: 68px 16px;
	}

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

	.me-presidents-heading {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.me-president-card {
		grid-template-columns: 1fr;
	}

	.me-president-identity,
	.me-president-government,
	.me-president-terms,
	.me-president-open {
		border-right: 0;
		border-bottom: 1px solid var(--me-line);
	}

	.me-president-open {
		min-height: 66px;
		flex-direction: row;
		gap: 12px;
	}

	.me-president-open span {
		margin-top: 0;
	}

	.me-presidents-note {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.me-coverage-grid {
		grid-template-columns: 1fr;
	}

	.me-president-detail > div {
		grid-template-columns: 1fr 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.me-coverage-card {
		transition: none;
	}
}
