/*
 * In the Media - archive and single item.
 * Design: XD "Lympne Castle - In the media" (1920 x 4739).
 *
 * Numbers here come from the artboard. The list is not a grid: it is a single column of
 * alternating rows, 550 / 200 / 550, threaded by a 1px gold rule down the page centre
 * with a crown sitting on the rule level with each photograph.
 *
 * Every rule is scoped under .lc-im.
 */
.lc-im {
	--lc-im-gold: #cfaf58;
	--lc-im-gold-line: #c6aa57;
	--lc-im-dark: #2f3528;
	--lc-im-green: #74825f;
	--lc-im-rule: #e2e2e2;
	--lc-im-serif: 'ivypresto-display', Georgia, serif;
	--lc-im-sans: 'Work Sans', Arial, sans-serif;
	--lc-im-container: 1300px;
	--lc-im-col: 550px;
	--lc-im-gutter: 200px;

	box-sizing: border-box;
	width: 100%;
	overflow-x: clip;
	background: #ffffff;
	font-family: var(--lc-im-sans);
	color: var(--lc-im-dark);
}

.lc-im *,
.lc-im *::before,
.lc-im *::after {
	box-sizing: border-box;
}

.lc-im img {
	display: block;
	max-width: 100%;
}

/* ---------- Shared type ---------- */
.lc-im .lc-im-eyebrow {
	margin: 0;
	padding: 0;
	font-family: var(--lc-im-sans);
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 5.775px;
	text-transform: uppercase;
	color: var(--lc-im-gold-line);
}

/* ---------- Hero ---------- */
.lc-im .lc-im-hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	height: 480px;
	margin: 0;
	/* The kicker baseline sits 165px below the band top; this places its line box. */
	padding: 152px 30px 0;
	background: var(--lc-im-dark);
	overflow: hidden;
}

.lc-im .lc-im-hero__img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* The artboard's own export already carries the 59.5% wash over the dark green, so no
	 * second pass here - that was darkening it twice. The dark background stays as the
	 * backstop while the image loads. */
	opacity: 1;
}

.lc-im .lc-im-hero__inner {
	position: relative;
	width: 100%;
	max-width: var(--lc-im-container);
	text-align: center;
}

/* Tracking is added after the last letter too, so centred capitals sit half a space left
 * of true centre. Only the centred kicker needs the compensation. */
.lc-im .lc-im-hero .lc-im-eyebrow {
	padding-left: 5.775px;
}

.lc-im .lc-im-eyebrow--light {
	color: var(--lc-im-gold-line);
}

.lc-im .lc-im-hero__title {
	/* Measured against the artboard: the title baseline lands 301px below the band top,
	 * 136px under the kicker's. */
	margin: 19px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 97px;
	font-weight: 300;
	line-height: 144px;
	letter-spacing: 2.328px;
	text-transform: capitalize;
	color: #ffffff;
}

.lc-im .lc-im-hero__title--no-eyebrow {
	margin-top: 0;
}

/* ---------- Intro ---------- */
.lc-im .lc-im-intro {
	box-sizing: border-box;
	width: 100%;
	/* Not the artboard's fixed 360px band: that makes the gap below the heading depend on
	 * how many lines the heading happens to run to - 163px at one line, 33px at three.
	 * Padding instead, so the gap is the same whatever the copy. The artboard leaves
	 * 139.5px between the heading and the first row: 98px of it below the heading, the
	 * remaining 41.5px on the list. Mobile tightens this; desktop keeps the drawing. */
	padding: 101px 30px 90px;
	background: #ffffff;
}

.lc-im .lc-im-intro__inner {
	width: 100%;
	max-width: var(--lc-im-container);
	margin: 0 auto;
}

.lc-im .lc-im-intro__heading {
	/* Baseline-matched to the drawing; see the note on the row headline. */
	margin: 21px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 54px;
	font-weight: 300;
	line-height: 65px;
	letter-spacing: 0.54px;
	text-transform: capitalize;
	color: var(--lc-im-dark);
}

.lc-im .lc-im-intro__heading--no-eyebrow {
	margin-top: 0;
}

/* ---------- The list ---------- */
.lc-im .lc-im-list {
	box-sizing: border-box;
	width: 100%;
	position: relative;
	/* 41.5px above the first row - the rest of the gap under the intro heading sits on the
	 * intro itself - and 273.5px of clear white below the last row, as drawn. */
	padding: 41.5px 30px 273.5px;
	background: #ffffff;
}

.lc-im .lc-im-list--no-intro {
	padding-top: 100px;
}

.lc-im .lc-im-list__inner {
	width: 100%;
	max-width: var(--lc-im-container);
	margin: 0 auto;
}

/* The gold thread down the page centre. Anchored to the band rather than to the row stack,
 * so it carries on through the clear space below the last article and meets the footer -
 * the artboard draws it running right into the green. The crowns punch their own gaps in
 * it by painting the page colour over it. */
.lc-im .lc-im-list__rule {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	margin-left: -0.5px;
	background: var(--lc-im-gold-line);
}

.lc-im .lc-im-list__items {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-item {
	position: relative;
	display: grid;
	grid-template-columns: var(--lc-im-col) var(--lc-im-gutter) var(--lc-im-col);
	/* The crown is placed from the gutter variable, so the two can never disagree. */
	/* Two rows: the picture and the headline share the first, the excerpt has the second
	 * to itself. That way the headline centres against the PHOTOGRAPH - and so against the
	 * crown - rather than against picture-plus-excerpt, which sat it 38px low. The artboard
	 * used a fixed 138px offset instead, which only holds while the headline is short. */
	grid-template-rows: auto auto;
	align-items: center;
	margin: 0 0 154px;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-item:last-child {
	margin-bottom: 0;
}

/* Odd rows put the photograph left; even rows swap the two cells over. The crown and the
 * rule stay where they are - they belong to the page, not to either column. */
.lc-im .lc-im-item__media {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	align-self: stretch;
	/* Centred rather than pinned to the top, so a headline running to five or eight lines
	 * does not leave the photograph and its crown stranded at the top of the row. While
	 * the media column is the taller of the two - the usual case - this changes nothing. */
	align-self: center;
}

.lc-im .lc-im-item__text {
	grid-column: 3;
	/* Row 1 only, and centred in it: level with the photograph, whatever the excerpt does. */
	grid-row: 1;
	align-self: center;
}

.lc-im .lc-im-item__excerpt {
	grid-column: 1;
	grid-row: 2;
}

.lc-im .lc-im-item--flipped .lc-im-item__excerpt {
	grid-column: 3;
}

.lc-im .lc-im-item--flipped .lc-im-item__media {
	grid-column: 3;
}

.lc-im .lc-im-item--flipped .lc-im-crown {
	left: calc( var(--lc-im-gutter) / -2 );
}

.lc-im .lc-im-item--flipped .lc-im-item__text {
	grid-column: 1;
}

/* ---------- Crown on the rule ---------- */
.lc-im .lc-im-crown {
	position: absolute;
	/* The picture's midline, whatever its height. On the artboard's 550x360 that is the drawn
	 * 180px; on a shorter or taller file it follows, because the media cell is exactly as tall
	 * as the photograph. */
	top: 50%;
	/* Out across the gutter to the page's centre rule. Measured from the media cell so it
	 * travels with the photograph; the flipped rows reach back the other way. */
	left: calc(100% + var(--lc-im-gutter) / 2);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	/* 103px of rule is cleared for the crown; the block masks the line behind it. */
	height: 103px;
	transform: translate(-50%, -50%);
	background: #ffffff;
}

.lc-im .lc-im-crown img {
	width: 35.46px;
	height: 29.7px;
}

/* ---------- Photograph ---------- */
/* No fixed height and no crop. Press images arrive at whatever shape the publication used -
 * 430x270 from one outlet, 2048x1340 from another - and cropping them to the artboard's
 * 550x360 slot cut the subject out of the shorter ones. The column sets the width; the file's
 * own aspect ratio sets the height. The gold frame is inset from this box, so it follows. */
.lc-im .lc-im-item__figure {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: var(--lc-im-rule);
	overflow: hidden;
}

.lc-im .lc-im-item__img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.lc-im .lc-im-item:hover .lc-im-item__img {
	transform: scale(1.02);
}

/* A 1px gold frame drawn over the photograph, inset 9 top / 10 sides / 11 bottom. The
 * asymmetry is deliberate in the artboard: it optically centres the frame. */
.lc-im .lc-im-item__frame {
	position: absolute;
	top: 9px;
	right: 10px;
	bottom: 11px;
	left: 10px;
	border: 1px solid var(--lc-im-gold-line);
	pointer-events: none;
}

.lc-im .lc-im-item__excerpt {
	margin: 28px 0 0;
	padding: 0;
	font-size: 14.5px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0.232px;
	color: var(--lc-im-dark);
}

/* ---------- Text cell ---------- */
.lc-im .lc-im-item__text {
	/* No fixed top offset: the row centres the two columns against each other instead. */
	padding-top: 0;
}

.lc-im .lc-im-item__outlet {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--lc-im-gold);
}

.lc-im .lc-im-item__title {
	/* Baseline-matched to the drawing rather than box-matched: XD hangs its first line
	 * without the half-leading CSS adds above it. */
	margin: 15px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 37px;
	font-weight: 300;
	line-height: 46px;
	letter-spacing: 0.148px;
	/* The artboard sets the headline nodes to titlecase. */
	text-transform: capitalize;
	color: #000000;
}

.lc-im .lc-im-item__title--no-outlet {
	margin-top: 0;
}

.lc-im .lc-im-item__title a {
	color: inherit;
	text-decoration: none;
	border: 0;
	transition: color 0.25s ease;
}

.lc-im .lc-im-item__title a:hover,
.lc-im .lc-im-item__title a:focus-visible {
	color: var(--lc-im-gold);
}

/* ---------- Card link ---------- */
.lc-im .lc-im-cta,
.lc-im .lc-im-cta:visited {
	display: inline-flex;
	align-items: center;
	gap: 10.55px;
	/* Baseline-matched to the drawing. */
	margin: 37px 0 0;
	padding: 0;
	border: 0;
	font-family: var(--lc-im-sans);
	font-size: 14.5px;
	font-weight: 700;
	line-height: 23px;
	letter-spacing: 0.232px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lc-im-dark);
	transition: color 0.25s ease;
}

.lc-im .lc-im-cta:hover,
.lc-im .lc-im-cta:focus-visible {
	color: var(--lc-im-gold);
}

.lc-im .lc-im-arrow {
	flex: 0 0 auto;
	display: block;
	width: 12.45px;
	height: 10.04px;
	fill: var(--lc-im-gold);
}

/* ---------- Loader ---------- */
.lc-im .lc-im-list__more {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	margin: 60px 0 0;
}

.lc-im .lc-im-list__status {
	margin: 0;
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.232px;
	color: var(--lc-im-dark);
}

.lc-im .lc-im-item--new {
	animation: lc-im-fade 0.4s ease both;
}

@keyframes lc-im-fade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.lc-im .lc-im-empty {
	padding: 100px 0;
	font-size: 14.5px;
	line-height: 23px;
	text-align: center;
	color: var(--lc-im-dark);
}

/* ---------- Button (single page, and the no-JS fallback) ---------- */
.lc-im .lc-im-btn,
.lc-im .lc-im-btn:visited {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 250px;
	height: 60px;
	padding: 0 28px;
	background: var(--lc-im-dark);
	border: 0;
	font-family: var(--lc-im-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 2.1px;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	color: #f5f4f2;
	box-shadow: inset 0 0 0 2px var(--lc-im-dark), inset 0 0 0 3px var(--lc-im-gold);
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lc-im .lc-im-btn:hover,
.lc-im .lc-im-btn:focus-visible {
	background: var(--lc-im-gold);
	box-shadow: inset 0 0 0 2px var(--lc-im-gold), inset 0 0 0 3px var(--lc-im-dark);
	color: var(--lc-im-dark);
}

/* ---------- Single item ---------- */
/* No artboard exists for this screen, so it follows the single event page: a centred
 * kicker and title over a banner, then the body, then a related strip on the shared
 * slider. Type and colour come from the same tokens as the archive. */
.lc-im-single .lc-im-single__head {
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 96px 30px 0;
	text-align: center;
}

.lc-im-single .lc-im-single__head .lc-im-eyebrow a {
	color: inherit;
	text-decoration: none;
	border: 0;
	transition: color 0.25s ease;
}

.lc-im-single .lc-im-single__head .lc-im-eyebrow a:hover,
.lc-im-single .lc-im-single__head .lc-im-eyebrow a:focus-visible {
	color: var(--lc-im-gold);
}

.lc-im-single .lc-im-single__title {
	margin: 14px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 54px;
	font-weight: 300;
	line-height: 65px;
	letter-spacing: 0.54px;
	/* Same casing as the archive headlines. */
	text-transform: capitalize;
	color: #000000;
}

.lc-im-single .lc-im-single__title--no-outlet {
	margin-top: 0;
}

.lc-im-single .lc-im-single__date {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 20px 0 0;
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.232px;
	color: var(--lc-im-dark);
}

.lc-im .lc-im-icon {
	flex: 0 0 auto;
	display: block;
	width: 18px;
	height: 18px;
	color: var(--lc-im-gold);
}

.lc-im-single .lc-im-single__banner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--lc-im-container);
	margin: 56px auto 0;
	padding: 0 30px;
	background: transparent;
}

/* Same rule as the archive card: the column sets the width, the file's own ratio sets the
 * height, and nothing is cropped. A portrait scan therefore makes a taller banner - which is
 * the point, since cropping one to a letterbox is what cut the magazine cover in half.
 *
 * The width stays a percentage of a container that has a definite width of its own. Shrinking
 * the banner to the image instead (width: fit-content) reads well but is circular - the
 * container's width would depend on the image while the image's max-width depends on the
 * container - and browsers resolve that by collapsing both, which on a phone left this banner
 * 170px wide. */
.lc-im-single .lc-im-single__banner-img {
	display: block;
	width: 100%;
	height: auto;
	background: var(--lc-im-rule);
}

.lc-im-single .lc-im-single__banner-frame {
	position: absolute;
	top: 10px;
	right: 40px;
	bottom: 10px;
	left: 40px;
	border: 1px solid var(--lc-im-gold-line);
	pointer-events: none;
}

.lc-im-single .lc-im-single__body {
	box-sizing: border-box;
	width: 100%;
	/* Same measure and padding as the banner above, so pictures, galleries, video and
	 * downloads all line up with its edges rather than sitting in a narrower column. */
	max-width: var(--lc-im-container);
	margin: 0 auto;
	padding: 72px 30px 0;
}

.lc-im-single .lc-im-single__body--no-banner {
	padding-top: 56px;
}

/* ---------- Content blocks ---------- */
.lc-im .lc-im-block {
	margin: 0 0 48px;
}

.lc-im .lc-im-block:last-child {
	margin-bottom: 0;
}

.lc-im .lc-im-prose {
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.232px;
	color: var(--lc-im-dark);
}

.lc-im .lc-im-prose > *:first-child {
	margin-top: 0;
}

.lc-im .lc-im-prose > *:last-child {
	margin-bottom: 0;
}

.lc-im .lc-im-prose p {
	margin: 0 0 23px;
}

.lc-im .lc-im-prose h2,
.lc-im .lc-im-prose h3,
.lc-im .lc-im-prose h4 {
	margin: 40px 0 16px;
	font-family: var(--lc-im-serif);
	font-weight: 300;
	color: #000000;
}

.lc-im .lc-im-prose h2 {
	font-size: 37px;
	line-height: 46px;
}

.lc-im .lc-im-prose h3 {
	font-size: 28px;
	line-height: 36px;
}

.lc-im .lc-im-prose h4 {
	font-size: 22px;
	line-height: 30px;
}

.lc-im .lc-im-prose a {
	color: var(--lc-im-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--lc-im-gold);
}

.lc-im .lc-im-prose a:hover,
.lc-im .lc-im-prose a:focus-visible {
	color: var(--lc-im-gold);
}

.lc-im .lc-im-prose ul,
.lc-im .lc-im-prose ol {
	margin: 0 0 23px;
	padding-left: 20px;
}

.lc-im .lc-im-prose li {
	margin: 0 0 8px;
}

.lc-im .lc-im-prose blockquote {
	margin: 32px 0;
	padding: 0 0 0 24px;
	border-left: 1px solid var(--lc-im-gold-line);
	font-family: var(--lc-im-serif);
	font-size: 24px;
	font-weight: 300;
	line-height: 36px;
	color: #000000;
}

.lc-im .lc-im-prose img {
	height: auto;
}

/* Image block - the same gold frame the archive cards use. The frame belongs to the
 * picture, not to the figure: the figure also holds the caption, and a frame measured
 * against it drew a gold line around the caption too. */
.lc-im .lc-im-block--image {
	margin-left: 0;
	margin-right: 0;
}

.lc-im .lc-im-block__media {
	position: relative;
	display: block;
	line-height: 0;
}

.lc-im .lc-im-block__img {
	width: 100%;
	height: auto;
	background: var(--lc-im-rule);
}

.lc-im .lc-im-block__frame {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	border: 1px solid var(--lc-im-gold-line);
	pointer-events: none;
}

.lc-im .lc-im-block__caption {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 20px;
	color: rgba(0, 0, 0, 0.6);
}

/* Gallery */
.lc-im .lc-im-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-gallery__item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-gallery__link {
	display: block;
	width: 100%;
	height: 200px;
	background: var(--lc-im-rule);
	overflow: hidden;
}

.lc-im .lc-im-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lc-im .lc-im-gallery__link:hover .lc-im-gallery__img {
	transform: scale(1.04);
}

/* Video and embeds keep a 16:9 box so the page does not jump as they load. */
.lc-im .lc-im-block--video .video-js,
.lc-im .lc-im-video {
	width: 100%;
}

.lc-im .lc-im-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--lc-im-dark);
}

.lc-im .lc-im-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* A Spotify or podcast player is short and wide, not 16:9 - let those size themselves. */
.lc-im .lc-im-embed:has(iframe[src*="spotify"]),
.lc-im .lc-im-embed:has(iframe[src*="podcast"]) {
	aspect-ratio: auto;
	min-height: 232px;
	background: transparent;
}

/* The dFlip page-flip book. Its own height attribute is unreliable, so the size is set
 * here; the plugin fills whatever box it is given. */
.lc-im .lc-im-block--pdf ._df_book {
	width: 100%;
	height: 720px;
	background: var(--lc-im-rule);
}

.lc-im .lc-im-pdf {
	display: block;
	width: 100%;
	height: 720px;
	background: var(--lc-im-rule);
	border: 1px solid var(--lc-im-rule);
}

.lc-im .lc-im-block__fallback {
	margin: 0;
	padding: 24px;
	font-size: 14.5px;
	line-height: 23px;
	text-align: center;
}

/* Download row, for PDFs and any other file. */
.lc-im .lc-im-download,
.lc-im .lc-im-download:visited {
	display: inline-flex;
	align-items: center;
	gap: 10.55px;
	margin: 16px 0 0;
	font-size: 14.5px;
	font-weight: 700;
	line-height: 23px;
	letter-spacing: 0.232px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lc-im-dark);
	transition: color 0.25s ease;
}

.lc-im .lc-im-download:hover,
.lc-im .lc-im-download:focus-visible {
	color: var(--lc-im-gold);
}

.lc-im .lc-im-download__meta {
	font-weight: 400;
	text-transform: none;
	color: rgba(0, 0, 0, 0.55);
}

.lc-im .lc-im-block--file .lc-im-download,
.lc-im .lc-im-block--pdf .lc-im-download {
	margin-top: 16px;
}

/* ---------- Related strip ---------- */
/* Same shape as the event page's Upcoming Events, driven by the same shared slider
 * module - only the class names differ. */
.lc-im .lc-im-related {
	box-sizing: border-box;
	width: 100%;
	margin: 104px 0 0;
	padding: 104px 30px 120px;
	background: #f5f4f2;
}

.lc-im .lc-im-related__inner {
	width: 100%;
	max-width: var(--lc-im-container);
	margin: 0 auto;
}

.lc-im .lc-im-related__title {
	margin: 14px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 54px;
	font-weight: 300;
	line-height: 65px;
	letter-spacing: 0.54px;
	color: #000000;
}

.lc-im .lc-im-related__title em {
	font-style: italic;
	font-weight: 200;
}

.lc-im .lc-im-related__viewport {
	width: 100%;
	margin: 56px 0 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.lc-im .lc-im-related__viewport::-webkit-scrollbar {
	display: none;
}

.lc-im .lc-im-related__viewport:focus-visible {
	outline: 2px solid var(--lc-im-gold);
	outline-offset: 4px;
}

.lc-im .lc-im-related__grid {
	display: flex;
	justify-content: flex-start;
	column-gap: 40px;
	width: max-content;
	min-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-rcard {
	flex: 0 0 400px;
	scroll-snap-align: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-rcard__media {
	position: relative;
	display: block;
	width: 100%;
	height: 305px;
	background: var(--lc-im-rule);
	overflow: hidden;
}

.lc-im .lc-im-rcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lc-im .lc-im-rcard__media:hover img {
	transform: scale(1.02);
}

.lc-im .lc-im-rcard__frame {
	position: absolute;
	top: 9px;
	right: 10px;
	bottom: 11px;
	left: 10px;
	border: 1px solid var(--lc-im-gold-line);
	pointer-events: none;
}

.lc-im .lc-im-rcard__outlet {
	margin: 18px 0 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--lc-im-gold);
}

.lc-im .lc-im-rcard__title {
	margin: 9px 0 0;
	padding: 0;
	font-family: var(--lc-im-serif);
	font-size: 26px;
	font-weight: 300;
	line-height: 34px;
	color: #000000;
}

.lc-im .lc-im-rcard__title a {
	color: inherit;
	text-decoration: none;
	border: 0;
	transition: color 0.25s ease;
}

.lc-im .lc-im-rcard__title a:hover,
.lc-im .lc-im-rcard__title a:focus-visible {
	color: var(--lc-im-gold);
}

.lc-im .lc-im-rcard__date {
	margin: 10px 0 0;
	font-size: 14.5px;
	line-height: 23px;
	letter-spacing: 0.232px;
	color: rgba(0, 0, 0, 0.6);
}

/* Slider controls - the design's dot, reused. */
.lc-im .lc-im-related__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 48px 0 0;
}

.lc-im .lc-im-related__controls[hidden] {
	display: none;
}

.lc-im .lc-im-slider__dots {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-slider__dot-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-im .lc-im-slider__dot {
	display: block;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--lc-im-gold);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.25s ease;
}

.lc-im .lc-im-slider__dot.is-active {
	background: var(--lc-im-gold);
}

.lc-im .lc-im-slider__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.lc-im .lc-im-slider__arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.lc-im .lc-im-slider__arrow--prev .lc-im-arrow {
	transform: scaleX(-1);
}

.lc-im .lc-im-related__foot {
	display: flex;
	justify-content: center;
	margin: 48px 0 0;
}

/* ---------- Responsive ---------- */

/* Below the artboard width the container simply narrows; the two-column structure and
 * the centre thread are kept while there is room for them. */
@media (max-width: 1359px) {
	.lc-im .lc-im-item {
		--lc-im-gutter: 140px;

		grid-template-columns: 1fr var(--lc-im-gutter) 1fr;
	}

	.lc-im .lc-im-hero__title {
		font-size: 76px;
		line-height: 112px;
	}

	.lc-im .lc-im-intro__heading {
		font-size: 44px;
		line-height: 54px;
	}

	.lc-im .lc-im-item__title {
		font-size: 32px;
		line-height: 40px;
	}

}

/*
 * One column. The client asked for the thread and the crown to move to the LEFT here -
 * there is no mobile artboard, so this is the agreed interpretation: the centre rule
 * becomes a left rail with the crowns still sitting on it, and every row indents to its
 * right, keeping the threaded feel of the desktop design.
 */
@media (max-width: 1023px) {
	/* The rule sits on the page's padding edge, so screen-edge-to-rule equals the padding -
	 * the same distance the photograph keeps from the right edge. */
	.lc-im .lc-im-list__rule {
		left: 30px;
		margin-left: 0;
	}

	/* And the articles clear the rule by that same amount, so the space either side of the
	 * column matches. */
	.lc-im .lc-im-item {
		--lc-im-gutter: 0px;

		grid-template-columns: 1fr;
		gap: 0;
		padding-left: 30px;
		margin-bottom: 90px;
	}

	/* One column, and the excerpt keeps its place with the photograph - picture, summary,
	 * then headline and link - rather than being pushed below the link by the two-row
	 * grid the desktop layout needs. */
	.lc-im .lc-im-item__media,
	.lc-im .lc-im-item--flipped .lc-im-item__media {
		grid-column: 1;
		grid-row: 1;
	}

	.lc-im .lc-im-item__excerpt,
	.lc-im .lc-im-item--flipped .lc-im-item__excerpt {
		grid-column: 1;
		grid-row: 2;
	}

	.lc-im .lc-im-item__text,
	.lc-im .lc-im-item--flipped .lc-im-item__text {
		grid-column: 1;
		grid-row: 3;
		padding-top: 28px;
	}

	/* Still measured from the photograph, so the crown keeps its midline on any image shape.
	 * The rule sits on the row's own left edge, which is the row's padding back from here. */
	.lc-im .lc-im-item__media {
		position: relative;
	}

	.lc-im .lc-im-crown,
	.lc-im .lc-im-item--flipped .lc-im-crown {
		top: 50%;
		left: -30px;
		width: 40px;
		height: 74px;
	}

	.lc-im .lc-im-hero {
		height: 400px;
		padding-top: 120px;
	}

	.lc-im .lc-im-hero__title {
		margin-top: 20px;
		font-size: 60px;
		line-height: 76px;
	}

	/* Tighter than the artboard between the intro and the first article, at the client's
	 * request - this applies on narrow screens only. */
	.lc-im .lc-im-intro {
		padding: 72px 30px 40px;
	}

	.lc-im .lc-im-list {
		padding-top: 0;
		padding-bottom: 140px;
	}

	.lc-im .lc-im-intro__heading {
		font-size: 36px;
		line-height: 46px;
	}


	.lc-im-single .lc-im-single__title {
		font-size: 40px;
		line-height: 50px;
	}

	.lc-im-single .lc-im-single__banner-img {
		/* The image's own ratio, as on the wider layouts - not a fixed slot to crop into. */
		height: auto;
	}

	.lc-im .lc-im-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.lc-im .lc-im-pdf,
	.lc-im .lc-im-block--pdf ._df_book {
		height: 520px;
	}

	.lc-im .lc-im-related {
		margin-top: 72px;
		padding: 72px 30px 90px;
	}

	.lc-im .lc-im-related__title {
		font-size: 36px;
		line-height: 46px;
	}

	.lc-im .lc-im-rcard {
		flex: 0 0 calc((100vw - 60px - 40px) / 2);
	}

	.lc-im .lc-im-rcard__media {
		height: auto;
		aspect-ratio: 400 / 305;
	}
}

@media (max-width: 639px) {
	.lc-im .lc-im-list,
	.lc-im .lc-im-hero,
	.lc-im .lc-im-intro {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lc-im .lc-im-list {
		padding-top: 0;
		padding-bottom: 96px;
	}

	.lc-im .lc-im-intro {
		padding-bottom: 32px;
	}

	.lc-im .lc-im-list__rule {
		left: 20px;
	}

	.lc-im .lc-im-item {
		padding-left: 20px;
		margin-bottom: 70px;
	}

	.lc-im .lc-im-crown,
	.lc-im .lc-im-item--flipped .lc-im-crown {
		/* Matches this breakpoint's narrower row padding. */
		left: -20px;
		width: 30px;
		height: 60px;
	}

	.lc-im .lc-im-crown img {
		width: 26px;
		height: 21.8px;
	}

	.lc-im .lc-im-hero {
		height: 340px;
		padding-top: 96px;
	}

	.lc-im .lc-im-eyebrow {
		font-size: 13px;
		letter-spacing: 4px;
	}

	.lc-im .lc-im-hero .lc-im-eyebrow {
		padding-left: 4px;
	}

	.lc-im .lc-im-hero__title {
		font-size: 42px;
		line-height: 52px;
	}

	.lc-im .lc-im-intro__heading {
		font-size: 28px;
		line-height: 36px;
	}

	.lc-im .lc-im-item__title {
		font-size: 26px;
		line-height: 34px;
	}

	.lc-im .lc-im-btn {
		min-width: 0;
		width: 100%;
	}

	.lc-im-single .lc-im-single__title {
		font-size: 32px;
		line-height: 40px;
	}

	.lc-im-single .lc-im-single__head {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 64px;
	}

	.lc-im-single .lc-im-single__body,
	.lc-im-single .lc-im-single__banner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lc-im-single .lc-im-single__banner-img {
		height: auto;
	}

	.lc-im-single .lc-im-single__banner-frame {
		right: 30px;
		left: 30px;
	}

	.lc-im .lc-im-gallery {
		grid-template-columns: 1fr;
	}

	.lc-im .lc-im-pdf,
	.lc-im .lc-im-block--pdf ._df_book {
		height: 420px;
	}

	.lc-im .lc-im-related {
		padding: 56px 20px 72px;
	}

	.lc-im .lc-im-related__title {
		font-size: 28px;
		line-height: 36px;
	}

	.lc-im .lc-im-rcard {
		flex: 0 0 calc(100vw - 40px - 34px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lc-im .lc-im-item__img,
	.lc-im .lc-im-cta,
	.lc-im .lc-im-btn {
		transition: none;
	}

	.lc-im .lc-im-item:hover .lc-im-item__img {
		transform: none;
	}

	.lc-im .lc-im-item--new {
		animation: none;
	}
}
