/**
 * Our Timeline - intro, entry panels, year rail and image lightbox.
 *
 * Values are carried over from the Elementor build this replaces, so the page
 * looks unchanged: cream #F8F5ED ground, ink #2F3528, a gold rail, IvyPresto
 * Display for the year and title, Work Sans for everything else.
 *
 * The one deliberate change is the card. Every entry's image now sits in the
 * same 3:2 box whatever shape it arrived in, which is what stops the section
 * jumping in height between years - the uncropped image is a click away.
 */

.lc-ot-page {
	--lc-ot-cream: #f8f5ed;
	--lc-ot-ink: #2f3528;
	--lc-ot-gold: #c6aa57;
	--lc-ot-rule: #d0af58;

	--lc-ot-serif: "ivypresto-display", "IvyPresto Display", Georgia, "Times New Roman", serif;
	--lc-ot-sans: "Work Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

	--lc-ot-max: 1300px;
	--lc-ot-gutter: 20px;
	--lc-ot-col-gap: 83px;

	background: var(--lc-ot-cream);
	color: var(--lc-ot-ink);
	font-family: var(--lc-ot-sans);
}

.lc-ot-page *,
.lc-ot-page *::before,
.lc-ot-page *::after {
	box-sizing: border-box;
}

/* ------------------------------------------------------------------- hero */

/* A dark photographic banner with the title reversed out of it, as the design
   has it - not a cream block with dark type. */
.lc-ot-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 522px;
	padding: 150px var(--lc-ot-gutter);
	background: var(--lc-ot-ink);
	overflow: hidden;
	text-align: center;
}

.lc-ot-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* The scrim the design lays over the photograph so white type holds up. */
	opacity: 0.62;
}

.lc-ot-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lc-ot-max);
}

.lc-ot-hero__eyebrow {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 5.78px;
	text-transform: uppercase;
	color: #cfaf58;
}

.lc-ot-hero__title {
	margin: 30px 0 0;
	font-family: var(--lc-ot-serif);
	font-size: 97px;
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: 2.33px;
	color: #fff;
}

/* ------------------------------------------------------------------ intro */

.lc-ot-intro {
	padding: 114px var(--lc-ot-gutter) 0;
}

/* Heading on the left, paragraph opposite it on the right. */
.lc-ot-intro__inner {
	display: flex;
	align-items: flex-start;
	max-width: var(--lc-ot-max);
	margin: 0 auto;
}

/* 647 / 653 of the 1300 content width, as the approved build splits it. */
.lc-ot-intro__lead {
	flex: 0 0 49.8%;
	min-width: 0;
	padding-right: 20px;
}

.lc-ot-intro__eyebrow {
	max-width: var(--lc-ot-max);
	margin: 0 auto 20px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 5.78px;
	text-transform: uppercase;
	color: #cfaf58;
}

/* The eyebrow is full width, so it needs the page gutter the inner row gets. */
.lc-ot-intro__heading {
	margin: 0;
	font-family: var(--lc-ot-serif);
	font-size: 54px;
	font-weight: 300;
	line-height: 65px;
	letter-spacing: 0.32px;
	color: #000;
}

.lc-ot-intro__heading em,
.lc-ot-intro__heading i {
	font-style: italic;
	font-weight: 200;
}

/* The gold rule is a border on the paragraph column, so it is exactly as tall
   as the description. The 16px drop that aligns the paragraph with the heading
   is a margin, not padding, so it stays OUTSIDE the border - otherwise the rule
   overshoots the text it belongs to. */
.lc-ot-intro__text {
	flex: 1 1 0;
	min-width: 0;
	align-self: flex-start;
	margin-top: 16px;
	padding: 0 0 0 71px;
	border-left: 0.8px solid #cfaf58;
}

.lc-ot-intro__text p {
	margin: 0 0 14px;
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.23px;
	color: var(--lc-ot-ink);
}

.lc-ot-intro__text p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------- entries, no JS */

/* The gutter has to sit outside the content width, or the entries end up
   narrower than the intro above them and the two stop lining up. */
.lc-ot {
	max-width: calc(var(--lc-ot-max) + 2 * var(--lc-ot-gutter));
	margin: 0 auto;
	padding: 122px var(--lc-ot-gutter) 100px;
}

.lc-ot-entry {
	display: flex;
	flex-direction: row;
	/* The year, title, text and button sit centred against the picture. */
	align-items: center;
	gap: var(--lc-ot-col-gap);
	padding-bottom: 50px;
}

/* Without the script every entry stands open, so they need separating. */
.lc-ot:not(.lc-ot--live) .lc-ot-entry + .lc-ot-entry {
	margin-top: 40px;
	border-top: 1px solid rgba(47, 53, 40, 0.12);
	padding-top: 60px;
}

/* Once the script runs, one at a time. */
.lc-ot--live .lc-ot-entry {
	display: none;
}

.lc-ot--live .lc-ot-entry.is-active {
	display: flex;
}

/* Two equal columns with an 83px gap, matching the approved build. */
.lc-ot-entry__media {
	flex: 1 1 0;
	min-width: 0;
}

.lc-ot-entry__body {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.lc-ot-entry__year {
	/* Pulls the figures up level with the picture's top edge. */
	margin: -21px 0 0;
	font-family: var(--lc-ot-serif);
	font-size: 125px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.75px;
	color: #cfaf58;
}

.lc-ot-entry__title {
	margin: 0;
	font-family: var(--lc-ot-serif);
	font-size: 54px;
	font-weight: 300;
	line-height: 65px;
	letter-spacing: 0.54px;
	color: var(--lc-ot-ink);
}

.lc-ot-entry__text {
	margin: 10px 0 0;
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.23px;
	color: var(--lc-ot-ink);
}

/* The site's button: ink, a gold hairline, and an ink ring that turns orange
   with the fill on hover, as on the approved Sunday Roast page. */
.lc-ot-more {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid #cfaf58;
	border-radius: 0;
	background: var(--lc-ot-ink);
	box-shadow: 0 0 0 2px var(--lc-ot-ink);
	color: #fff;
	font-family: var(--lc-ot-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 14px;
	letter-spacing: 2.1px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
}

/* The parent theme recolours hovered links #336 - every state is claimed back. */
.lc-ot-more:hover,
.lc-ot-more:focus,
.lc-ot-more:focus-visible,
.lc-ot-more:active {
	background: #cc5500;
	border-color: #cfaf58;
	box-shadow: 0 0 0 2px #cc5500;
	color: #fff;
	text-decoration: none;
}

.lc-ot-more:focus-visible {
	outline: 2px solid #cfaf58;
	outline-offset: 4px;
}

/* ------------------------------------------------------------------- card */

.lc-ot-card {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	background: rgba(47, 53, 40, 0.06);
	cursor: zoom-in;
}

/* The box, not the file, is what guarantees every entry the same height: a
   source too small for the generated crop still lands in a 3:2 frame. */
.lc-ot-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 59 / 46;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.lc-ot-card:hover .lc-ot-card__img,
.lc-ot-card:focus-visible .lc-ot-card__img {
	transform: scale(1.03);
}

.lc-ot-card__hint {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	font-family: var(--lc-ot-sans);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #fff;
	background: rgba(47, 53, 40, 0.72);
	backdrop-filter: blur(3px);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.lc-ot-card__hint-icon {
	display: inline-flex;
	line-height: 0;
}

.lc-ot-card:hover .lc-ot-card__hint,
.lc-ot-card:focus-visible .lc-ot-card__hint {
	background: var(--lc-ot-rule);
	color: var(--lc-ot-ink);
}

.lc-ot-card:focus-visible {
	outline: 2px solid var(--lc-ot-rule);
	outline-offset: 3px;
}

/* ------------------------------------------------------------------- rail */

.lc-ot-rail-wrap {
	position: relative;
	display: flex;
	align-items: center;
	/* The chips are inset so the arrows can sit on the outer edges. */
	padding: 0 80px;
}

/* The design draws one rule between the two arrows, not along the scrolling
   track: it reads as a complete line whatever the rail is scrolled to. */
.lc-ot-rail-wrap::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 40px;
	right: 40px;
	height: 1px;
	background: var(--lc-ot-rule);
}

.lc-ot-rail {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.lc-ot-rail::-webkit-scrollbar {
	display: none;
}

.lc-ot-rail__track {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	min-width: 100%;
	padding: 4px 0;
}

.lc-ot-chip {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0 30px;
	padding: 8px 25px;
	font-family: var(--lc-ot-sans);
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	text-decoration: none;
	color: #cfaf58;
	background: #f9f5ed;
	border: 0.8px solid var(--lc-ot-rule);
	transition: background-color 0.25s ease, color 0.25s ease;
}

.lc-ot-chip:first-child {
	margin-left: 0;
}

.lc-ot-chip:hover {
	background: #fff;
	color: #0d1a13;
}

/* The active year keeps the same size; only its ground and ink change. */
.lc-ot-chip[aria-selected="true"] {
	background: #fff;
	color: #0d1a13;
}

.lc-ot-chip:focus-visible {
	outline: 2px solid var(--lc-ot-ink);
	outline-offset: 2px;
}

.lc-ot-rail-arrow {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 100%;
	background: #fff;
	color: var(--lc-ot-gold);
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.lc-ot-rail-arrow svg {
	display: block;
}

.lc-ot-rail-arrow--prev {
	left: 0;
}

.lc-ot-rail-arrow--next {
	right: 0;
}

.lc-ot-rail-arrow--next svg {
	transform: rotate(180deg);
}

/* The theme sets a magenta background on every button :hover and :focus, and a
   programmatically focused button matches :focus even without a keypress - so
   each of our buttons has to state its own hover and focus background. */
.lc-ot-rail-arrow:hover,
.lc-ot-rail-arrow:focus,
.lc-ot-rail-arrow:focus-visible {
	background: #fff;
	color: var(--lc-ot-ink);
}

.lc-ot-rail-arrow[disabled]:hover,
.lc-ot-rail-arrow[disabled]:focus {
	background: #fff;
	color: var(--lc-ot-rule);
}

/* The disc stays solid white at either end of the rail, as the design draws
   both arrows; only the arrowhead dims to show there is nothing further. */
.lc-ot-rail-arrow[disabled] {
	cursor: default;
}

.lc-ot-rail-arrow[disabled] svg {
	opacity: 0.32;
}

.lc-ot-rail-arrow:focus-visible {
	outline: 2px solid var(--lc-ot-ink);
	outline-offset: 2px;
}

/* With no script the arrows do nothing, so they should not be offered. */
.lc-ot:not(.lc-ot--live) .lc-ot-rail-arrow {
	display: none;
}

/* --------------------------------------------------------------- lightbox */

html.lc-ot-lb-open {
	overflow: hidden;
}

.lc-ot-lb {
	--lc-ot-serif: "ivypresto-display", "IvyPresto Display", Georgia, "Times New Roman", serif;
	--lc-ot-sans: "Work Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

	font-family: var(--lc-ot-sans);
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	max-height: 100vh;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
	overflow: hidden;
}

.lc-ot-lb::backdrop {
	background: rgba(20, 23, 18, 0.92);
}

/* The details column is 357px: 5% wider than the first build's 340, to
   carry the larger reading type. */
.lc-ot-lb__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 357px;
	height: 100%;
}

.lc-ot-lb__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 32px 64px;
}

.lc-ot-lb__figure {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	max-height: 100%;
}

.lc-ot-lb__img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 64px);
	object-fit: contain;
}

.lc-ot-lb__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 100%;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lc-ot-lb__nav:hover,
.lc-ot-lb__nav:focus,
.lc-ot-lb__nav:focus-visible {
	background: var(--lc-ot-rule, #d0af58);
	border-color: var(--lc-ot-rule, #d0af58);
	color: #14170f;
}

.lc-ot-lb__nav--prev {
	left: 10px;
}

.lc-ot-lb__nav--next {
	right: 10px;
}

.lc-ot-lb__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 32px 30px;
	background: #2f3528;
	overflow-y: auto;
}

/* The details panel's own scrollbar - this panel only, never the page's. A
   slim gold thumb on a near-invisible track, so it reads as part of the panel.
   Chrome, Edge and Safari take the ::-webkit-scrollbar parts; Firefox, which
   has no such selector, takes the standard properties instead. Keeping the
   standard ones away from Chromium matters: once scrollbar-color is set there,
   it ignores the ::-webkit-scrollbar styling. */
.lc-ot-lb__panel::-webkit-scrollbar {
	width: 6px;
}

.lc-ot-lb__panel::-webkit-scrollbar-track {
	margin: 12px 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
}

.lc-ot-lb__panel::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(208, 175, 88, 0.95), rgba(208, 175, 88, 0.6));
}

.lc-ot-lb__panel::-webkit-scrollbar-thumb:hover {
	background: #d0af58;
}

.lc-ot-lb__panel::-webkit-scrollbar-corner {
	background: transparent;
}

@supports not selector(::-webkit-scrollbar) {
	.lc-ot-lb__panel {
		scrollbar-width: thin;
		scrollbar-color: rgba(208, 175, 88, 0.85) rgba(255, 255, 255, 0.06);
	}
}

/* On the viewer shell rather than inside the scrolling panel, so it cannot
   scroll out of sight; it still sits over the panel's top-right corner. */
.lc-ot-lb__close {
	position: absolute;
	z-index: 3;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 100%;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.lc-ot-lb__close:hover,
.lc-ot-lb__close:focus,
.lc-ot-lb__close:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

/* No viewer text below 16px here (14px on phones), at the client's request. */
.lc-ot-lb__count {
	margin: 0 44px 0 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #d0af58;
}

.lc-ot-lb__title {
	margin: 0;
	font-family: var(--lc-ot-serif, Georgia, serif);
	font-size: 27px;
	font-weight: 300;
	line-height: 1.25;
	color: #fff;
}

.lc-ot-lb__date {
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.4px;
	color: #d0af58;
}

.lc-ot-lb__desc {
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.76);
	white-space: pre-line;
}

/* Previous / next year: side by side at the foot of the details column, each
   held to its own side so a lone button never drifts into the middle. */
.lc-ot-lb__years {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: auto -18px -20px;
	padding-top: 22px;
}

.lc-ot-lb__year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 8px 6px;
	border: 1px solid #d0af58;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: var(--lc-ot-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	/* The theme sets nowrap on every button; these may wrap on a narrow column. */
	white-space: normal;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lc-ot-lb__year--prev {
	grid-column: 1;
}

.lc-ot-lb__year--next {
	grid-column: 2;
}

/* Every state is claimed back from the theme's magenta button fill, at a
   specificity that does not rely on this sheet loading after the theme's. The
   gold fill is for hover and keyboard focus - not left on after a click. */
.lc-ot-lb .lc-ot-lb__year:hover,
.lc-ot-lb .lc-ot-lb__year:focus-visible,
.lc-ot-lb .lc-ot-lb__year:active {
	background: #d0af58;
	color: #14170f;
}

.lc-ot-lb .lc-ot-lb__year:focus:not(:focus-visible):not(:hover) {
	background: transparent;
	color: #fff;
}

.lc-ot-lb__year svg {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
}

/* These buttons set their own display, which would otherwise override the
   hidden attribute the script uses to withdraw them. */
.lc-ot-lb__nav[hidden],
.lc-ot-lb__year[hidden] {
	display: none;
}

.lc-ot-lb button:focus-visible {
	outline: 2px solid #d0af58;
	outline-offset: 2px;
}

/* --------------------------------------------------------------- tablet */

@media (max-width: 1024px) {
	.lc-ot-page {
		--lc-ot-col-gap: 20px;
	}

	.lc-ot-hero {
		min-height: 380px;
		padding: 100px var(--lc-ot-gutter);
	}

	.lc-ot-hero__title {
		font-size: 62px;
		letter-spacing: 1.5px;
	}

	.lc-ot-intro {
		padding-top: 74px;
	}

	.lc-ot-intro__eyebrow {
		font-size: 14px;
		letter-spacing: 4.5px;
	}

	/* The intro columns stack from here down, so the rule between them goes. */
	.lc-ot-intro__inner {
		flex-direction: column;
	}

	.lc-ot-intro__lead {
		padding-right: 0;
	}

	.lc-ot-intro__text {
		margin-top: 22px;
		padding: 0;
		border-left: none;
	}

	.lc-ot-intro__heading {
		font-size: 40px;
		line-height: 1.2em;
	}

	.lc-ot {
		padding-top: 74px;
	}

	.lc-ot-entry__year {
		margin-top: 0;
		font-size: 80px;
	}

	.lc-ot-entry__title {
		font-size: 36px;
		line-height: 1.1em;
	}

	/* 5% wider than the first build's 290. */
	.lc-ot-lb__inner {
		grid-template-columns: minmax(0, 1fr) 305px;
	}

	.lc-ot-lb__stage {
		padding: 24px 56px;
	}

	.lc-ot-lb__year {
		padding: 10px 6px;
	}

	/* The tablet column is too narrow for "Previous year" on one line, so each
	   label stacks a word per line - both buttons, so they stay alike. */
	.lc-ot-lb__year span {
		width: min-content;
	}
}

/* --------------------------------------------------------------- mobile */

@media (max-width: 767px) {
	.lc-ot-hero {
		min-height: 300px;
		padding: 74px var(--lc-ot-gutter);
	}

	.lc-ot-hero__eyebrow,
	.lc-ot-intro__eyebrow {
		font-size: 12px;
		letter-spacing: 4px;
	}

	.lc-ot-entry__year {
		font-size: 60px;
	}

	.lc-ot-entry__title {
		font-size: 26px;
		line-height: 1.1em;
	}

	.lc-ot-hero__title {
		font-size: 42px;
		letter-spacing: 1px;
	}

	.lc-ot-intro {
		padding-top: 52px;
	}

	.lc-ot-intro__heading {
		font-size: 32px;
		line-height: 1.2em;
	}

	.lc-ot {
		padding-bottom: 64px;
	}

	.lc-ot-entry {
		flex-direction: column;
		align-items: stretch;
		gap: 26px;
		padding-bottom: 32px;
	}

	.lc-ot-entry__media,
	.lc-ot-entry__body {
		flex: 0 0 auto;
		max-width: none;
	}

	.lc-ot-entry__body {
		gap: 14px;
	}

	.lc-ot-entry__text {
		max-width: none;
	}

	.lc-ot-more {
		margin-top: 10px;
		padding: 14px;
		font-size: 12px;
		line-height: 12px;
	}

	.lc-ot-card__hint {
		right: 10px;
		bottom: 10px;
		padding: 6px 10px;
		font-size: 9.5px;
		letter-spacing: 1px;
	}

	.lc-ot-rail-wrap {
		padding: 0 38px;
	}

	.lc-ot-chip {
		margin: 0 0 0 16px;
		padding: 8px 16px;
		font-size: 12.5px;
	}

	/* The details read better beneath the picture than squeezed beside it. */
	.lc-ot-lb__inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: minmax(0, 1fr) auto;
	}

	.lc-ot-lb__stage {
		padding: 44px 12px 8px;
	}

	/* Never taller than the stage left above a full details panel (100vh less
	   its 45.36vh, less the stage's 44px + 8px padding), so the whole picture
	   shows - scaled to fit, never cropped or stretched. */
	.lc-ot-lb__img {
		max-height: calc(54.64vh - 52px);
	}

	.lc-ot-lb__nav {
		width: 38px;
		height: 38px;
	}

	/* 8% taller than the first build's 42vh. */
	.lc-ot-lb__panel {
		max-height: 45.36vh;
		padding: 18px 18px 22px;
	}

	/* Pinned to the foot of the scrolling panel, so the year buttons stay in
	   reach however long the description is. */
	.lc-ot-lb__years {
		position: sticky;
		bottom: -22px;
		z-index: 1;
		margin: auto -6px -22px;
		padding: 12px 0;
		background: #2f3528;
	}

	.lc-ot-lb__title {
		font-size: 21px;
	}

	.lc-ot-lb__count,
	.lc-ot-lb__date {
		font-size: 14px;
	}

	.lc-ot-lb__desc {
		font-size: 14px;
		line-height: 22px;
	}

	.lc-ot-lb__years {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lc-ot-lb__year--next {
		grid-column: 2;
	}

	.lc-ot-lb__year {
		padding: 10px 6px;
		font-size: 14px;
		letter-spacing: 1px;
	}

	.lc-ot-lb__year span {
		width: auto;
	}
}

/* ------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	.lc-ot-card__img,
	.lc-ot-card__hint,
	.lc-ot-chip,
	.lc-ot-rail-arrow,
	.lc-ot-lb__nav,
	.lc-ot-lb__close,
	.lc-ot-lb__year,
	.lc-ot-more {
		transition: none;
	}

	.lc-ot-card:hover .lc-ot-card__img,
	.lc-ot-card:focus-visible .lc-ot-card__img {
		transform: none;
	}
}
