.eht-timeline,
.eht-timeline * {
	box-sizing: border-box;
}

.eht-timeline {
	--eht-ink: #142c3b;
	--eht-ink-soft: #49606d;
	--eht-paper: #f5f0e7;
	--eht-card: #fffdf8;
	--eht-line: #b8aa94;
	--eht-gold: #d9ad62;
	--eht-shadow: 0 18px 50px rgba(20, 44, 59, 0.12), 0 2px 8px rgba(20, 44, 59, 0.06);
	position: relative;
	width: min(100%, 1180px);
	margin: 3rem auto;
	padding: clamp(2rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4.5rem);
	overflow: hidden;
	color: var(--eht-ink);
	background:
		radial-gradient(circle at 8% 6%, rgba(194, 90, 60, 0.12), transparent 28rem),
		radial-gradient(circle at 92% 92%, rgba(72, 127, 134, 0.13), transparent 24rem),
		linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 42%),
		var(--eht-paper);
	border: 1px solid rgba(20, 44, 59, 0.1);
	border-radius: 2rem;
	box-shadow: 0 1.5rem 4rem rgba(20, 44, 59, 0.08);
	isolation: isolate;
}

.eht-timeline::before {
	content: "";
	position: absolute;
	inset: 1rem;
	z-index: -1;
	border: 1px solid rgba(20, 44, 59, 0.09);
	border-radius: 1.35rem;
	pointer-events: none;
}

.eht-timeline__header {
	max-width: 760px;
	margin: 0 auto clamp(3rem, 8vw, 6.5rem);
	text-align: center;
}

.eht-timeline__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
	color: #a4462d;
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eht-timeline__eyebrow::before,
.eht-timeline__eyebrow::after {
	content: "";
	width: 2.2rem;
	height: 1px;
	background: currentColor;
}

.eht-timeline__eyebrow::before {
	box-shadow: -0.45rem 0 0 -0.28rem var(--eht-gold);
}

.eht-timeline__header h2 {
	max-width: none;
	margin: 0;
	color: var(--eht-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.25rem, 7vw, 5.6rem);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.eht-timeline__header p {
	max-width: 650px;
	margin: 1.5rem auto 0;
	color: var(--eht-ink-soft);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.7;
	text-wrap: pretty;
}

.eht-timeline__rail {
	position: absolute;
	top: clamp(15rem, 24vw, 22rem);
	bottom: 5rem;
	left: 50%;
	width: 2px;
	background:
		linear-gradient(
			to bottom,
			transparent,
			var(--eht-line) 3rem,
			var(--eht-line) calc(100% - 3rem),
			transparent
		);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
	transform: translateX(-50%);
}

.eht-timeline__list {
	display: grid;
	gap: clamp(3rem, 7vw, 6.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.eht-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 1fr);
	align-items: center;
	margin: 0;
	padding: 0;
}

.eht-timeline__item:nth-child(odd) .eht-card {
	grid-column: 1;
}

.eht-timeline__item:nth-child(even) .eht-card {
	grid-column: 3;
}

.eht-timeline__marker {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: grid;
	width: 2.1rem;
	height: 2.1rem;
	place-items: center;
	background: var(--eht-paper);
	border: 1px solid color-mix(in srgb, var(--eht-accent) 45%, white);
	border-radius: 50%;
	box-shadow: 0 0 0 0.45rem var(--eht-paper);
	transform: translate(-50%, -50%);
}

.eht-timeline__marker span {
	display: block;
	width: 0.7rem;
	height: 0.7rem;
	background: var(--eht-accent);
	border-radius: inherit;
	box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--eht-accent) 20%, transparent);
}

.eht-timeline__item::after {
	content: "";
	position: absolute;
	top: 50%;
	z-index: 1;
	width: calc(2.25rem + 1px);
	height: 1px;
	background: color-mix(in srgb, var(--eht-accent) 50%, var(--eht-line));
}

.eht-timeline__item:nth-child(odd)::after {
	right: 50%;
}

.eht-timeline__item:nth-child(even)::after {
	left: 50%;
}

.eht-card {
	position: relative;
	z-index: 2;
	min-width: 0;
	overflow: hidden;
	background: var(--eht-card);
	border: 1px solid rgba(20, 44, 59, 0.1);
	border-radius: 1.25rem;
	box-shadow: var(--eht-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.eht-card:focus-within {
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--eht-accent) 28%, transparent), var(--eht-shadow);
}

.eht-card:hover {
	box-shadow: 0 24px 65px rgba(20, 44, 59, 0.17);
	transform: translateY(-4px);
}

.eht-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 2;
	width: 0.35rem;
	background: var(--eht-accent);
}

.eht-card__image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #182f3d;
	isolation: isolate;
}

.eht-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(to top, rgba(9, 24, 33, 0.48), transparent 42%),
		linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 32%);
	pointer-events: none;
}

.eht-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform 500ms ease;
}

.eht-card:hover .eht-card__image img {
	transform: scale(1.035);
}

.eht-card__content {
	position: relative;
	padding: clamp(1.35rem, 3.4vw, 2.35rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 55%),
		var(--eht-card);
}

.eht-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 0.85rem;
	margin-bottom: 0.95rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eht-card__meta time {
	display: inline-flex;
	padding: 0.42rem 0.72rem;
	color: #fff;
	background: var(--eht-accent);
	border-radius: 999px;
}

.eht-card__meta span {
	color: var(--eht-ink-soft);
}

.eht-card h3 {
	max-width: none;
	margin: 0;
	color: var(--eht-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.55rem, 3vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
	text-wrap: balance;
}

.eht-card p {
	margin: 1rem 0 0;
	color: var(--eht-ink-soft);
	font-size: 1rem;
	line-height: 1.7;
	text-wrap: pretty;
}

.eht-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.35rem;
	color: var(--eht-ink);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.eht-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
}

.eht-card__link span {
	color: var(--eht-accent);
	font-size: 1.15rem;
	line-height: 1;
	transition: transform 180ms ease;
}

.eht-card:hover .eht-card__link span {
	transform: translateX(0.25rem);
}

.eht-card__link:focus-visible {
	outline: 3px solid var(--eht-accent);
	outline-offset: 4px;
	border-radius: 0.1rem;
}

.eht-timeline--enhanced .eht-timeline__item {
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity 500ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.eht-timeline--enhanced .eht-timeline__item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Full-width chapter pages. These resets apply only to marked timeline pages. */
body.eht-entry-page #main-content {
	padding: 0;
	background: #e9e2d7;
}

body.eht-entry-page #main-content > .container,
body.eht-entry-page #main-content .container,
body.eht-entry-page #left-area {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	float: none;
}

body.eht-entry-page #main-content .container::before {
	display: none;
}

body.eht-entry-page #sidebar {
	display: none;
}

.eht-story-page,
.eht-story-page * {
	box-sizing: border-box;
}

.eht-story-page {
	--eht-story-ink: #142c3b;
	--eht-story-soft: #526873;
	--eht-story-paper: #f6f1e8;
	--eht-story-card: #fffdf8;
	width: 100%;
	margin: 0;
	overflow: hidden;
	color: var(--eht-story-ink);
	background: var(--eht-story-paper);
}

.eht-story-page__article {
	width: 100%;
	margin: 0;
	padding: 0;
}

.eht-story-header {
	position: relative;
	display: grid;
	min-height: clamp(32rem, 60vw, 47rem);
	overflow: hidden;
	align-items: center;
	color: #fff;
	background:
		radial-gradient(circle at 78% 22%, color-mix(in srgb, var(--eht-story-accent) 44%, transparent), transparent 28rem),
		radial-gradient(circle at 5% 95%, rgba(217, 173, 98, 0.18), transparent 24rem),
		linear-gradient(132deg, #102a39 0%, #183746 56%, #112a37 100%);
	isolation: isolate;
}

.eht-story-header::before {
	content: "";
	position: absolute;
	inset: 1.1rem;
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.5rem;
	pointer-events: none;
}

.eht-story-header::after {
	content: "";
	position: absolute;
	top: 0;
	right: clamp(2rem, 9vw, 9rem);
	z-index: -1;
	width: 1px;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.2) 82%, transparent);
	box-shadow: 1.3rem 0 0 rgba(255, 255, 255, 0.035), 2.6rem 0 0 rgba(255, 255, 255, 0.02);
}

.eht-story-header__inner {
	width: min(calc(100% - clamp(2rem, 8vw, 10rem)), 1280px);
	margin: 0 auto;
	padding: clamp(5.5rem, 11vw, 9rem) 0 clamp(8rem, 15vw, 12rem);
}

.eht-story-header__back {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: clamp(3rem, 7vw, 5.5rem);
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, transform 180ms ease;
}

.eht-story-header__back span {
	color: #e8bc72;
	font-size: 1.1rem;
	line-height: 1;
}

.eht-story-header__back:hover,
.eht-story-header__back:focus-visible {
	color: #fff;
	transform: translateX(-0.2rem);
}

.eht-story-header__back:focus-visible {
	outline: 2px solid #e8bc72;
	outline-offset: 0.35rem;
}

.eht-story-header__chapter {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.2rem;
	color: #e8bc72;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eht-story-header__chapter::before {
	content: "";
	width: 2.4rem;
	height: 1px;
	background: currentColor;
}

.eht-story-header__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.7rem 1rem;
	margin-bottom: 1.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eht-story-header__meta time {
	display: inline-flex;
	padding: 0.48rem 0.78rem;
	background: var(--eht-story-accent);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	box-shadow: 0 0.55rem 1.7rem color-mix(in srgb, var(--eht-story-accent) 30%, transparent);
}

.eht-story-header__meta span {
	color: rgba(255, 255, 255, 0.7);
}

.eht-story-header h1.eht-story-header__title {
	max-width: 1050px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.25rem, 8.2vw, 7.7rem);
	font-weight: 500;
	letter-spacing: -0.065em;
	line-height: 0.91;
	text-wrap: balance;
}

.eht-story-header__summary {
	max-width: 760px;
	margin: clamp(1.5rem, 4vw, 2.3rem) 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.08rem, 2vw, 1.35rem);
	line-height: 1.68;
	text-wrap: pretty;
}

.eht-story-page__body-wrap {
	position: relative;
	z-index: 2;
	padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 9vw, 8rem);
	background:
		radial-gradient(circle at 4% 22%, color-mix(in srgb, var(--eht-story-accent) 10%, transparent), transparent 26rem),
		linear-gradient(180deg, #ddd5c9 0, var(--eht-story-paper) 11rem);
}

.eht-story-page__body {
	width: min(100%, 1180px);
	margin: clamp(-7rem, -9vw, -4.5rem) auto 0;
	padding: clamp(1rem, 3.6vw, 3.5rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4.5rem);
	background:
		linear-gradient(138deg, rgba(255, 255, 255, 0.65), transparent 40%),
		var(--eht-story-card);
	border: 1px solid rgba(20, 44, 59, 0.12);
	border-radius: clamp(1.1rem, 3vw, 2rem);
	box-shadow: 0 2.5rem 6rem rgba(20, 44, 59, 0.16);
}

.eht-story-page__body > p,
.eht-story-page__body > h2,
.eht-story-page__body > h3,
.eht-story-page__body > h4,
.eht-story-page__body > ul,
.eht-story-page__body > ol,
.eht-story-page__body > blockquote,
.eht-story-page__body > hr,
.eht-story-page__body > table,
.eht-story-page__body > figure:not(.eht-entry-hero) {
	width: min(100%, 790px);
	margin-right: auto;
	margin-left: auto;
}

.eht-story-page__body > p {
	margin-top: 0;
	margin-bottom: 1.4rem;
	color: var(--eht-story-soft);
	font-size: clamp(1.03rem, 1.5vw, 1.13rem);
	line-height: 1.82;
	text-wrap: pretty;
}

.eht-story-page__body > p:first-of-type {
	color: var(--eht-story-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.2rem, 2.2vw, 1.48rem);
	line-height: 1.65;
}

.eht-story-page__body > h2 {
	position: relative;
	margin-top: clamp(3rem, 7vw, 5rem);
	margin-bottom: 1.1rem;
	padding-top: 1.4rem;
	color: var(--eht-story-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.1;
	text-wrap: balance;
}

.eht-story-page__body > h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3.2rem;
	height: 0.22rem;
	background: var(--eht-story-accent);
	border-radius: 999px;
}

.eht-story-page__body > ul,
.eht-story-page__body > ol {
	margin-top: 1rem;
	margin-bottom: 2rem;
	padding-left: 1.35rem;
	color: var(--eht-story-soft);
	font-size: 1.02rem;
	line-height: 1.75;
}

.eht-story-page__body > blockquote {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
	padding: 1.35rem 1.5rem;
	color: var(--eht-story-ink);
	background: color-mix(in srgb, var(--eht-story-accent) 8%, #fff);
	border-left: 0.3rem solid var(--eht-story-accent);
}

.eht-story-page__body a:not(.eht-card__image):not(.eht-card__link):not(.eht-entry-nav a) {
	color: color-mix(in srgb, var(--eht-story-accent) 82%, #142c3b);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.eht-entry-hero {
	--eht-entry-ink: #142c3b;
	--eht-entry-paper: #f5f0e7;
	width: 100%;
	margin: 0 0 clamp(2.25rem, 6vw, 4rem);
	overflow: hidden;
	color: var(--eht-entry-ink);
	background: #fffdf8;
	border: 1px solid rgba(20, 44, 59, 0.14);
	border-radius: clamp(0.9rem, 2vw, 1.4rem);
	box-shadow: 0 1.25rem 3.5rem rgba(20, 44, 59, 0.13);
}

.eht-entry-hero__frame {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	place-items: center;
	background:
		radial-gradient(circle at 50% 40%, rgba(74, 105, 119, 0.7), transparent 52%),
		#102733;
}

.eht-entry-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: inset 0 0 4rem rgba(7, 18, 24, 0.25);
	pointer-events: none;
}

.eht-entry-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.eht-entry-hero figcaption {
	display: grid;
	gap: 0.6rem;
	margin: 0;
	padding: 1rem clamp(1rem, 3vw, 1.4rem) 1.1rem;
	color: #526773;
	background:
		linear-gradient(90deg, rgba(217, 173, 98, 0.13), transparent 48%),
		#fffdf8;
	font-size: 0.82rem;
	line-height: 1.5;
}

.eht-entry-hero__caption {
	color: var(--eht-entry-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(0.95rem, 1.8vw, 1.08rem);
	line-height: 1.45;
}

.eht-entry-footer {
	--eht-entry-ink: #142c3b;
	--eht-entry-paper: #f5f0e7;
	width: 100%;
	margin: clamp(3rem, 8vw, 6rem) 0 1rem;
	color: var(--eht-entry-ink);
}

.eht-story-page__body .eht-entry-footer {
	width: min(100%, 970px);
	margin-right: auto;
	margin-left: auto;
}

.eht-entry-nav {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: stretch;
	gap: 0.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(20, 44, 59, 0.18);
}

.eht-entry-nav a {
	display: flex;
	min-height: 5.5rem;
	flex-direction: column;
	justify-content: center;
	padding: 1rem 1.15rem;
	color: inherit;
	background: #fffdf8;
	border: 1px solid rgba(20, 44, 59, 0.12);
	border-radius: 0.8rem;
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.eht-entry-nav a:hover {
	border-color: #c25a3c;
	transform: translateY(-2px);
}

.eht-entry-nav a span {
	margin-bottom: 0.25rem;
	color: #647581;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.eht-entry-nav a strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.25;
}

.eht-entry-nav__next {
	text-align: right;
}

.eht-entry-nav .eht-entry-nav__home {
	min-height: 0;
	align-self: center;
	padding: 0.75rem 0.9rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.eht-empty {
	padding: 1rem;
	background: #fff8e5;
	border-left: 4px solid #d6903d;
}

@media (max-width: 760px) {
	body.eht-entry-page #page-container {
		overflow: hidden;
	}

	.eht-timeline {
		padding-inline: 1.15rem;
		border-radius: 1.25rem;
	}

	.eht-timeline::before {
		inset: 0.55rem;
		border-radius: 0.95rem;
	}

	.eht-timeline__header {
		margin-bottom: 3.5rem;
		padding-inline: 0.4rem;
		text-align: left;
	}

	.eht-timeline__eyebrow::after {
		display: none;
	}

	.eht-timeline__eyebrow::before {
		width: 1.4rem;
	}

	.eht-timeline__header h2 {
		font-size: clamp(2.4rem, 14vw, 4.3rem);
	}

	.eht-timeline__rail {
		top: 15rem;
		bottom: 3.5rem;
		left: 2.1rem;
	}

	.eht-timeline__list {
		gap: 2.3rem;
	}

	.eht-timeline__item {
		display: block;
		padding-left: 2.7rem;
	}

	.eht-timeline__item:nth-child(n) .eht-card {
		display: block;
	}

	.eht-timeline__marker {
		top: 2.15rem;
		left: 0.95rem;
		width: 1.8rem;
		height: 1.8rem;
	}

	.eht-timeline__item::after {
		top: 2.15rem;
		right: auto !important;
		left: 0.95rem !important;
		width: 1.8rem;
	}

	.eht-card__content {
		padding: 1.35rem;
	}

	.eht-story-header {
		min-height: 34rem;
	}

	.eht-story-header::before {
		inset: 0.55rem;
		border-radius: 1rem;
	}

	.eht-story-header::after {
		right: 1.8rem;
	}

	.eht-story-header__inner {
		width: calc(100% - 2.4rem);
		padding: 4.5rem 0 7.5rem;
	}

	.eht-story-header__back {
		margin-bottom: 3rem;
		font-size: 0.62rem;
	}

	.eht-story-header__chapter {
		font-size: 0.62rem;
	}

	.eht-story-header h1.eht-story-header__title {
		font-size: clamp(2.8rem, 14vw, 4.6rem);
		line-height: 0.94;
	}

	.eht-story-header__summary {
		font-size: 1.02rem;
		line-height: 1.62;
	}

	.eht-story-page__body-wrap {
		padding-right: 0.6rem;
		padding-left: 0.6rem;
	}

	.eht-story-page__body {
		margin-top: -5rem;
		padding: 0.7rem 0.7rem 2rem;
		border-radius: 1.15rem;
	}

	.eht-story-page__body > p,
	.eht-story-page__body > h2,
	.eht-story-page__body > h3,
	.eht-story-page__body > h4,
	.eht-story-page__body > ul,
	.eht-story-page__body > ol,
	.eht-story-page__body > blockquote,
	.eht-story-page__body > hr,
	.eht-story-page__body > table,
	.eht-story-page__body > figure:not(.eht-entry-hero) {
		width: calc(100% - 1.4rem);
	}

	.eht-story-page__body > p {
		font-size: 1rem;
		line-height: 1.74;
	}

	.eht-story-page__body > p:first-of-type {
		font-size: 1.17rem;
	}

	.eht-entry-hero__frame {
		aspect-ratio: 4 / 3;
	}

	.eht-entry-nav {
		grid-template-columns: 1fr;
	}

	.eht-entry-nav > span:empty {
		display: none;
	}

	.eht-entry-nav__next {
		text-align: left;
	}

	.eht-entry-nav .eht-entry-nav__home {
		grid-row: 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eht-timeline *,
	.eht-entry-footer * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.eht-timeline--enhanced .eht-timeline__item {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-contrast: more) {
	.eht-timeline,
	.eht-card,
	.eht-entry-nav a {
		border-color: currentColor;
	}
}
