/* LHR redesign — editorial (see research/notes/redesign-2026-07-contract.md)
 * Scope: journal index, single posts, generic pages, Blackbook page, 404.
 * Shared tokens/primitives come from base.css; every var() carries a
 * fallback so this file degrades gracefully while the cascade assembles. */

/* =====================================================================
   1. Compact cream page hero (journal + generic pages)
   ===================================================================== */

.lhr-page-hero {
	background: var(--lhr-cream, #F7F4EE);
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
	padding: clamp(56px, 8vw, 92px) 0 clamp(44px, 6vw, 68px);
}

.lhr-page-hero__eyebrow {
	margin: 0 0 18px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-page-hero__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--lhr-ink, #22201C);
}

.lhr-page-hero__sub {
	margin: 20px 0 0;
	max-width: 62ch;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6E675C);
}

/* =====================================================================
   2. Journal category tabs
   ===================================================================== */

.lhr-journal-nav {
	position: relative;
	background: var(--lhr-cream, #F7F4EE);
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
}

/* Overflow hint (mirrors the archives tab strip): the track scrolls with
   the scrollbar hidden, so the right edge fades to cream — a clipped tab
   ("BEHIND T…") reads as "more this way" instead of a rendering bug.
   Stops 3px short of the bottom edge so an active tab scrolled under the
   fade keeps its 2px gold underline fully saturated. */
.lhr-journal-nav::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 3px;
	width: 64px;
	pointer-events: none;
	background: linear-gradient(to right, rgba(247, 244, 238, 0) 0%, var(--lhr-cream, #F7F4EE) 82%);
}

.lhr-journal-nav__track {
	display: flex;
	gap: 36px;
	overflow-x: auto;
	scrollbar-width: none;
}

.lhr-journal-nav__track::-webkit-scrollbar {
	display: none;
}

/* Breathing room so the last tab can scroll clear of the fade. */
.lhr-journal-nav__track::after {
	content: "";
	flex: 0 0 48px;
}

.lhr-journal-nav__track a {
	flex: none;
	padding: 18px 0 15px;
	border-bottom: 2px solid transparent;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink-soft, #6E675C);
	transition: color .25s ease, border-color .25s ease;
}

.lhr-journal-nav__track a:hover {
	color: var(--lhr-ink, #22201C);
}

.lhr-journal-nav__track a[aria-current="page"] {
	color: var(--lhr-ink, #22201C);
	border-bottom-color: var(--lhr-gold, #A9885A);
}

/* =====================================================================
   2b. Section brief — one line under the tab row explaining the active
   tab, plus the optional "front door" link to the top-level section the
   tab overlaps with (Points & Miles, Reviews, Destinations). This is the
   band that stops the journal's tabs reading as duplicates of the nav.
   ===================================================================== */

.lhr-journal-brief {
	background: var(--lhr-cream, #F7F4EE);
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-journal-brief__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px 40px;
	padding: 20px 0 19px;
}

.lhr-journal-brief__text {
	margin: 0;
	max-width: 74ch;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--lhr-ink-soft, #6E675C);
}

.lhr-journal-brief__link {
	flex: none;
	display: inline-flex;
	align-items: center;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: var(--lhr-ink, #22201C);
	transition: color .25s ease;
}

.lhr-journal-brief__arrow {
	margin-left: 9px;
	transition: transform .3s ease;
}

.lhr-journal-brief__link:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-journal-brief__link:hover .lhr-journal-brief__arrow {
	transform: translateX(4px);
}

/* =====================================================================
   3. Editorial post card (journal grid + related rows)
   ===================================================================== */

.lhr-journal__main {
	padding: clamp(40px, 6vw, 64px) 0 clamp(72px, 10vw, 110px);
}

.lhr-journal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.lhr-ed-card {
	display: flex;
	flex-direction: column;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-radius: 0;
	padding: 10px;
}

.lhr-ed-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--lhr-panel, #F1EDE4);
}

.lhr-ed-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s ease;
}

/* Fill the 4:3 frame even when the attachment has no true 4:3 crop
   (stale metadata / small originals serve odd ratios — the Uzbekistan
   balloon card letterboxed on beige). `.lhr-redesign img { height: auto }`
   in base.css (0,1,1) outguns the bare class above, so restate the cover
   crop at (0,2,0). */
.lhr-redesign .lhr-ed-card__img {
	height: 100%;
	object-fit: cover;
}

.lhr-ed-card:hover .lhr-ed-card__img {
	transform: scale(1.04);
}

.lhr-ed-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 20px 12px 14px;
}

.lhr-ed-card__eyebrow {
	margin: 0 0 10px;
}

.lhr-ed-card__eyebrow,
.lhr-ed-card__eyebrow a {
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
	text-decoration: none;
}

.lhr-ed-card__eyebrow a:hover {
	color: var(--lhr-gold-deep, #8D6F44);
}

.lhr-ed-card__title {
	margin: 0 0 18px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.005em;
	color: var(--lhr-ink, #22201C);
}

.lhr-ed-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease;
}

.lhr-ed-card__title a:hover {
	color: var(--lhr-gold-deep, #8D6F44);
}

/* In Depth cross-links: the hairline row that connects a long-form journal
   piece to the scored review archive and to its destination archive. */

.lhr-ed-card__cross {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	/* Auto top margin bottom-anchors the pair (cross row + foot) so cards in
	   a row still line their foot rules up; the foot's own auto margin is
	   cancelled below so the space is not split between the two. */
	margin: auto 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-ed-card__cross + .lhr-ed-card__foot {
	margin-top: 0;
}

.lhr-ed-card__cross a {
	display: inline-flex;
	align-items: center;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink-faint, #98917F);
	transition: color .25s ease;
}

.lhr-ed-card__cross-arrow {
	margin-left: 7px;
	transition: transform .3s ease;
}

.lhr-ed-card__cross a:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-ed-card__cross a:hover .lhr-ed-card__cross-arrow {
	transform: translateX(3px);
}

.lhr-ed-card__foot {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.lhr-ed-card__date {
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-ed-card__more {
	display: inline-flex;
	align-items: center;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink, #22201C);
	transition: color .25s ease;
	white-space: nowrap;
}

.lhr-ed-card__arrow {
	margin-left: 8px;
	transition: transform .3s ease;
}

.lhr-ed-card__more:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-ed-card__more:hover .lhr-ed-card__arrow {
	transform: translateX(4px);
}

/* Lead feature card (journal page one) */

.lhr-ed-card--feature {
	display: grid;
	grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
	margin-bottom: 28px;
	padding: 10px;
}

.lhr-ed-card--feature .lhr-ed-card__media {
	aspect-ratio: auto;
	min-height: 340px;
	height: 100%;
}

.lhr-ed-card--feature .lhr-ed-card__body {
	justify-content: center;
	padding: clamp(28px, 4vw, 56px);
}

.lhr-ed-card--feature .lhr-ed-card__title {
	font-size: clamp(26px, 2.8vw, 38px);
	line-height: 1.18;
	letter-spacing: -0.01em;
	margin-bottom: 0;
}

.lhr-ed-card__excerpt {
	margin-top: 16px;
}

.lhr-ed-card__excerpt p {
	margin: 0;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: var(--lhr-ink-soft, #6E675C);
}

.lhr-ed-card--feature .lhr-ed-card__cross {
	margin-top: 28px;
}

.lhr-ed-card--feature .lhr-ed-card__foot {
	margin-top: 28px;
}

.lhr-ed-card--feature .lhr-ed-card__cross + .lhr-ed-card__foot {
	margin-top: 18px;
}

/* Empty state */

.lhr-journal-none {
	max-width: 560px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 80px) 0;
	text-align: center;
}

.lhr-journal-none__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--lhr-ink, #22201C);
}

.lhr-journal-none__text {
	margin: 14px 0 30px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6E675C);
}

/* Pagination (legacy markup, restyled) */

.lhr-journal .m-pagination {
	margin-top: clamp(48px, 7vw, 72px);
}

.lhr-journal .m-pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.lhr-journal .m-pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-radius: 0;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-decoration: none;
	color: var(--lhr-ink-soft, #6E675C);
	transition: border-color .25s ease, color .25s ease;
}

.lhr-journal .m-pagination a.page-numbers:hover {
	border-color: var(--lhr-gold, #A9885A);
	color: var(--lhr-gold-deep, #8D6F44);
}

.lhr-journal .m-pagination .page-numbers.current {
	background: var(--lhr-dark, #191713);
	border-color: var(--lhr-dark, #191713);
	color: #fff;
}

.lhr-journal .m-pagination .page-numbers.dots {
	border: 0;
	background: none;
}

/* =====================================================================
   4. Single post hero (image + scrim, review-page language)
   ===================================================================== */

.lhr-post-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(420px, 58vh, 560px);
	background: var(--lhr-dark, #191713);
	overflow: hidden;
}

.lhr-post-hero--plain {
	min-height: 340px;
}

.lhr-post-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lhr-post-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(18, 15, 11, .82) 0%, rgba(18, 15, 11, .45) 48%, rgba(18, 15, 11, .22) 100%),
		linear-gradient(180deg, rgba(18, 15, 11, .3) 0%, rgba(18, 15, 11, 0) 32%, rgba(18, 15, 11, .38) 100%);
}

.lhr-post-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 72px;
	padding-bottom: 72px;
}

.lhr-post-hero__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
}

.lhr-post-hero__crumbs a {
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	transition: color .25s ease;
}

.lhr-post-hero__crumbs a:hover {
	color: #fff;
}

.lhr-post-hero__crumb-sep {
	color: rgba(255, 255, 255, .45);
}

.lhr-post-hero__title {
	margin: 22px 0 0;
	max-width: 900px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(38px, 4.8vw, 60px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #fff;
}

.lhr-post-hero__rule {
	display: block;
	width: 56px;
	height: 2px;
	margin-top: 26px;
	background: var(--lhr-gold, #A9885A);
}

.lhr-post-hero__dek {
	margin: 24px 0 0;
	max-width: 56ch;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, .92);
}

.lhr-post-hero__meta {
	margin: 24px 0 0;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
}

.lhr-post-hero__meta-sep {
	margin: 0 10px;
	color: rgba(255, 255, 255, .45);
}

/* =====================================================================
   5. Measure-width prose (.entry-content restyle, posts + pages)
   ===================================================================== */

.lhr-post-main {
	padding-bottom: clamp(72px, 10vw, 96px);
}

.lhr-post-body {
	max-width: 760px;
	margin: 0 auto;
	padding-top: clamp(48px, 7vw, 80px);
}

.lhr-page-main {
	padding: clamp(48px, 7vw, 72px) 0 clamp(72px, 10vw, 110px);
}

.lhr-page-body {
	max-width: 760px;
	margin: 0 auto;
}

.lhr-prose {
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.85;
	color: var(--lhr-ink-soft, #6E675C);
}

.lhr-prose p {
	margin: 0 0 1.5em;
}

/* Standfirst: the opening paragraph after the hero reads as a larger
   serif lede; the scrub pass converts the pasted all-bold "TL;DR"
   paragraph to .lhr-standfirst so it joins the same treatment instead
   of shouting in bold sans. */

.lhr-post .lhr-prose > p:first-child,
.lhr-prose p.lhr-standfirst {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(19px, 2vw, 22px);
	line-height: 1.65;
	color: var(--lhr-ink, #22201C);
}

/* The standfirst closes the lede block with a hairline before the body. */
.lhr-prose p.lhr-standfirst {
	margin-bottom: 1.8em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-prose p.lhr-standfirst strong {
	font-weight: inherit;
	color: inherit;
}

/* Serif drop cap on the article lede only */

.lhr-post .lhr-prose > p:first-child::first-letter {
	float: left;
	padding: .08em .12em 0 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 3.9em;
	font-weight: 500;
	line-height: .76;
	color: var(--lhr-ink, #22201C);
}

.lhr-prose h2,
.lhr-prose h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 500;
	color: var(--lhr-ink, #22201C);
	letter-spacing: -0.005em;
}

.lhr-prose h2 {
	margin: 2.2em 0 .9em;
	padding-bottom: .45em;
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
	font-size: clamp(26px, 2.6vw, 30px);
	line-height: 1.25;
}

.lhr-prose h3 {
	margin: 2em 0 .8em;
	font-size: 22px;
	line-height: 1.3;
}

.lhr-prose h4,
.lhr-prose h5,
.lhr-prose h6 {
	margin: 2em 0 .8em;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201C);
}

.lhr-prose > h2:first-child,
.lhr-prose > h3:first-child {
	margin-top: 0;
}

.lhr-prose a {
	color: var(--lhr-ink, #22201C);
	text-decoration: underline;
	text-decoration-color: var(--lhr-gold-soft, #CBB48D);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .25s ease, text-decoration-color .25s ease;
}

.lhr-prose a:hover {
	color: var(--lhr-gold-deep, #8D6F44);
	text-decoration-color: var(--lhr-gold-deep, #8D6F44);
}

.lhr-prose strong {
	color: var(--lhr-ink, #22201C);
	font-weight: 600;
}

/* In-prose card: a single prominent hand-off from a utility page to the
   article that expands on it (How We Review → the 200-point inspection
   piece in the journal). Same white-on-cream hairline panel as the cards;
   the link is the shared .lhr-btn--text primitive. */

.lhr-prose .lhr-prose-cta {
	margin: 0 0 2em;
	padding: clamp(24px, 3.5vw, 32px);
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-radius: 0;
}

.lhr-prose .lhr-prose-cta__eyebrow {
	margin: 0 0 12px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-prose .lhr-prose-cta__title {
	margin: 0 0 12px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(21px, 2.4vw, 25px);
	font-weight: 500;
	line-height: 1.25;
	color: var(--lhr-ink, #22201C);
}

.lhr-prose .lhr-prose-cta__text {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.7;
}

.lhr-prose .lhr-prose-cta__more {
	margin: 0;
}

.lhr-prose a.lhr-btn {
	text-decoration: none;
}

.lhr-prose ul,
.lhr-prose ol {
	margin: 0 0 1.6em;
	padding-left: 22px;
}

.lhr-prose li {
	margin-bottom: .55em;
}

.lhr-prose li::marker {
	color: var(--lhr-gold, #A9885A);
}

.lhr-prose hr {
	border: 0;
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
	margin: 3.2em 0;
}

/* Gold pull-quote blockquote */

.lhr-prose blockquote {
	position: relative;
	margin: 3em 0;
	padding: .25em 0 .25em 92px;
	border: 0;
	background: none;
}

.lhr-prose blockquote::before {
	content: "\201C";
	position: absolute;
	left: 0;
	top: -14px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 110px;
	line-height: 1;
	color: var(--lhr-gold, #A9885A);
}

.lhr-prose blockquote p {
	margin: 0 0 .6em;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	line-height: 1.55;
	color: var(--lhr-ink, #22201C);
}

.lhr-prose blockquote p:last-of-type {
	margin-bottom: 0;
}

.lhr-prose blockquote cite {
	display: block;
	margin-top: 14px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-prose blockquote cite::before {
	content: "\2014\00a0";
}

/* Media inside prose */

.lhr-prose img {
	max-width: 100%;
	height: auto;
	display: block;
}

.lhr-prose figure,
.lhr-prose .wp-block-image {
	margin: 2.6em 0;
}

.lhr-prose figcaption {
	margin-top: 12px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.8em;
}

/* Scroll wrapper added by the content scrub pass: at narrow widths the
   comparison tables slide horizontally inside their own hairline scope
   instead of crushing columns or breaking the measure. */

.lhr-prose .lhr-table-scroll {
	overflow-x: auto;
	margin: 0 0 1.8em;
	-webkit-overflow-scrolling: touch;
}

.lhr-prose .lhr-table-scroll > table {
	margin: 0;
}

.lhr-prose th {
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-align: left;
	color: var(--lhr-ink, #22201C);
}

.lhr-prose th,
.lhr-prose td {
	padding: 12px 16px 12px 0;
	border-bottom: 1px solid var(--lhr-hairline, #E5DFD2);
}

/* Paged article nav */

.lhr-post-pages {
	margin-top: 2em;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-post-page-number {
	margin-left: 10px;
}

/* Article foot: filed under + back link */

.lhr-post-end {
	margin-top: clamp(48px, 7vw, 64px);
	padding-top: 22px;
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.lhr-post-end__filed {
	margin: 0;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-post-end__filed a {
	margin-left: 12px;
	color: var(--lhr-ink, #22201C);
	text-decoration: none;
	transition: color .25s ease;
}

.lhr-post-end__filed a:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-post-end__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink, #22201C);
	transition: color .25s ease;
}

.lhr-post-end__back span {
	transition: transform .3s ease;
}

.lhr-post-end__back:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-post-end__back:hover span {
	transform: translateX(4px);
}

/* Related row */

.lhr-post-related {
	margin-top: clamp(64px, 9vw, 88px);
	padding-top: clamp(48px, 7vw, 64px);
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-post-related__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.lhr-post-related__head .lhr-eyebrow {
	margin: 0;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-post-related__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink, #22201C);
	transition: color .25s ease;
	white-space: nowrap;
}

.lhr-post-related__all:hover {
	color: var(--lhr-gold, #A9885A);
}

/* Comments (legacy markup, constrained to the measure and re-dressed) */

.lhr-post-main .m-comments,
.lhr-page-main .m-comments {
	max-width: 760px;
	margin: clamp(56px, 8vw, 80px) auto 0;
	padding-top: clamp(40px, 6vw, 56px);
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-post-main .m-comments__title,
.lhr-post-main .comment-reply-title,
.lhr-page-main .m-comments__title,
.lhr-page-main .comment-reply-title {
	margin: 0 0 24px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--lhr-ink, #22201C);
}

.lhr-post-main .comment-form label,
.lhr-page-main .comment-form label {
	display: block;
	margin-bottom: 8px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-post-main .comment-form input[type="text"],
.lhr-post-main .comment-form input[type="email"],
.lhr-post-main .comment-form input[type="url"],
.lhr-post-main .comment-form textarea,
.lhr-page-main .comment-form input[type="text"],
.lhr-page-main .comment-form input[type="email"],
.lhr-page-main .comment-form input[type="url"],
.lhr-page-main .comment-form textarea {
	width: 100%;
	appearance: none;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-radius: 0;
	padding: 14px 16px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	color: var(--lhr-ink, #22201C);
}

.lhr-post-main .comment-form input:focus-visible,
.lhr-post-main .comment-form textarea:focus-visible,
.lhr-page-main .comment-form input:focus-visible,
.lhr-page-main .comment-form textarea:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

.lhr-post-main .comment-form .comment-notes,
.lhr-page-main .comment-form .comment-notes {
	font-size: 13px;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-post-main .comment-form .form-submit input[type="submit"],
.lhr-page-main .comment-form .form-submit input[type="submit"] {
	background: var(--lhr-gold, #A9885A);
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 16px 30px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease;
}

.lhr-post-main .comment-form .form-submit input[type="submit"]:hover,
.lhr-page-main .comment-form .form-submit input[type="submit"]:hover {
	background: var(--lhr-gold-deep, #8D6F44);
}

/* =====================================================================
   6. Contact / generic form (.lhr-form, page content markup)
   ===================================================================== */

.lhr-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin: 2.2em 0 1em;
}

.lhr-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lhr-form__field--wide,
.lhr-form__actions {
	grid-column: 1 / -1;
}

.lhr-form__field label {
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-form input[type="text"],
.lhr-form input[type="email"],
.lhr-form select,
.lhr-form textarea {
	width: 100%;
	appearance: none;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-radius: 0;
	padding: 14px 16px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	color: var(--lhr-ink, #22201C);
}

.lhr-form input::placeholder,
.lhr-form textarea::placeholder {
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-form input:focus-visible,
.lhr-form select:focus-visible,
.lhr-form textarea:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
	border-color: var(--lhr-gold-soft, #CBB48D);
}

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

.lhr-form__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
}

.lhr-form__submit {
	background: var(--lhr-gold, #A9885A);
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 16px 30px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease;
}

.lhr-form__submit:hover {
	background: var(--lhr-gold-deep, #8D6F44);
}

.lhr-form__submit:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

.lhr-form__note {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* =====================================================================
   7. The Blackbook page — split hero, privileges row, dark signup band
   ===================================================================== */

.lhr-bb-page {
	background: var(--lhr-cream, #F7F4EE);
}

/* --- Split hero: asymmetric text block left, framed 3:4 image right --- */

.lhr-bb-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: clamp(64px, 7vw, 104px) clamp(24px, 4vw, 40px);
	background:
		radial-gradient(1100px 520px at 16% -10%, rgba(169, 136, 90, .15), transparent 62%),
		var(--lhr-dark, #191713);
	color: #fff;
}

.lhr-bb-hero__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
	gap: clamp(48px, 6vw, 104px);
	align-items: center;
}

.lhr-bb-hero__eyebrow {
	margin: 0 0 22px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

/* Two classes (0,2,0): the ink `.lhr-redesign h1` rule in base.css (0,1,1)
 * must not win on this dark hero. Cream per the band treatment. */
.lhr-bb-hero .lhr-bb-hero__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(54px, 6.6vw, 96px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.01em;
	color: var(--lhr-cream, #f7f4ee);
}

.lhr-bb-hero__strap {
	margin: 20px 0 0;
	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.4;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .85);
}

.lhr-bb-hero__copy {
	margin: 34px 0 0;
	max-width: 55ch;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 16.5px;
	line-height: 1.85;
	color: rgba(255, 255, 255, .62);
}

.lhr-bb-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 38px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	transition: color .25s ease;
}

.lhr-bb-hero__cta-arrow {
	color: var(--lhr-gold, #A9885A);
	transition: transform .3s ease;
}

.lhr-bb-hero__cta:hover {
	color: var(--lhr-gold, #A9885A);
}

.lhr-bb-hero__cta:hover .lhr-bb-hero__cta-arrow {
	transform: translateX(4px);
}

/* Moody 3:4 interior, hairline frame inset over the image. */

.lhr-bb-hero__media {
	position: relative;
	margin: 0;
	width: 100%;
	max-width: 460px;
	justify-self: end;
	aspect-ratio: 3 / 4;
}

.lhr-redesign .lhr-bb-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lhr-bb-hero__media::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 255, 255, .32);
	pointer-events: none;
}

/* --- Privileges: three hairline-ruled columns on cream ---------------- */

.lhr-bb-privileges {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: clamp(64px, 8vw, 104px) clamp(24px, 4vw, 40px) 0;
}

.lhr-bb-privileges__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.lhr-bb-privileges__eyebrow {
	margin: 0 0 30px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-bb-privileges__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-bb-privilege {
	padding: 34px 36px 40px 0;
}

.lhr-bb-privilege + .lhr-bb-privilege {
	border-left: 1px solid var(--lhr-hairline, #E5DFD2);
	padding-left: 36px;
}

.lhr-bb-privilege__label {
	position: relative;
	margin: 0 0 14px;
	padding-left: 27px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201C);
}

.lhr-bb-privilege__label::before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	width: 15px;
	height: 15px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A9885A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lhr-bb-privilege__line {
	margin: 0;
	max-width: 34ch;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 18px;
	line-height: 1.6;
	color: var(--lhr-ink-soft, #6E675C);
}

/* --- Signup: dark inset band, generous padding ------------------------ */

.lhr-bb-join {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 40px) clamp(72px, 9vw, 120px);
}

.lhr-bb-join__box {
	max-width: 1280px;
	margin: 0 auto;
	padding: clamp(44px, 6vw, 84px) clamp(28px, 6vw, 96px);
	background:
		radial-gradient(900px 420px at 86% 130%, rgba(169, 136, 90, .16), transparent 60%),
		var(--lhr-dark, #191713);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.lhr-bb-join__eyebrow {
	margin: 0 0 14px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

/* Two classes: keep the ink `.lhr-redesign h2` base rule off this dark box. */
.lhr-bb-join .lhr-bb-join__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--lhr-cream, #f7f4ee);
}

/* Closing small-caps dispatch note, on cream under the band. */
.lhr-bb-dispatch {
	max-width: 1280px;
	margin: 26px auto 0;
	text-align: center;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-bb-form {
	display: flex;
	width: 100%;
}

.lhr-bb-form input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	appearance: none;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .24);
	border-right: 0;
	border-radius: 0;
	padding: 17px 20px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	color: #fff;
}

.lhr-bb-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, .4);
}

.lhr-bb-form input[type="email"]:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

.lhr-bb-form button {
	flex: none;
	background: var(--lhr-gold, #A9885A);
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 0 30px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background .25s ease;
}

.lhr-bb-form button:hover {
	background: var(--lhr-gold-deep, #8D6F44);
}

.lhr-bb-form button:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

.lhr-bb-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* --- Blackbook responsive --------------------------------------------- */

@media (max-width: 900px) {

	.lhr-bb-hero__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
	}

	.lhr-bb-hero__media {
		max-width: 420px;
		justify-self: start;
	}

	.lhr-bb-privileges__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.lhr-bb-privilege {
		padding: 26px 0 30px;
	}

	.lhr-bb-privilege + .lhr-bb-privilege {
		border-left: 0;
		border-top: 1px solid var(--lhr-hairline, #E5DFD2);
		padding-left: 0;
	}

	.lhr-bb-privilege__line {
		max-width: 46ch;
	}

	.lhr-bb-join__box {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}
}

/* =====================================================================
   8. 404 — Lost in transit.
   ===================================================================== */

.lhr-404 {
	background: var(--lhr-cream, #F7F4EE);
}

.lhr-404__inner {
	padding-top: clamp(90px, 15vh, 170px);
	padding-bottom: clamp(90px, 15vh, 170px);
	text-align: center;
}

.lhr-404__eyebrow {
	margin: 0 0 26px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-404__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(56px, 9vw, 118px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.015em;
	color: var(--lhr-ink, #22201C);
}

/* Short gold rule under the title — same mark the article heroes carry. */
.lhr-404__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 2px;
	margin: 30px auto 0;
	background: var(--lhr-gold, #A9885A);
}

.lhr-404__text {
	margin: 26px auto 44px;
	max-width: 52ch;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--lhr-ink-soft, #6E675C);
}

.lhr-404__search {
	max-width: 560px;
	margin: 0 auto 40px;
}

.lhr-404__home {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-gold, #A9885A);
	transition: color .25s ease;
}

.lhr-404__home span {
	transition: transform .3s ease;
}

.lhr-404__home:hover {
	color: var(--lhr-gold-deep, #8D6F44);
}

.lhr-404__home:hover span {
	transform: translateX(4px);
}

/* Legacy search form, restyled where the editorial templates render it */

.lhr-404 .m-searchform,
.lhr-journal-none .m-searchform {
	display: flex;
	border-radius: 0;
	background: none;
	box-shadow: none;
	padding: 0;
}

.lhr-404 .m-searchform__input,
.lhr-journal-none .m-searchform__input {
	flex: 1 1 auto;
	min-width: 0;
	appearance: none;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
	border-right: 0;
	border-radius: 0;
	padding: 17px 18px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	color: var(--lhr-ink, #22201C);
}

.lhr-404 .m-searchform__input::placeholder,
.lhr-journal-none .m-searchform__input::placeholder {
	color: var(--lhr-ink-faint, #98917F);
}

.lhr-404 .m-searchform__input:focus-visible,
.lhr-journal-none .m-searchform__input:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

.lhr-404 .m-searchform__submit,
.lhr-journal-none .m-searchform__submit {
	flex: none;
	background: var(--lhr-gold, #A9885A);
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 0 30px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s ease;
}

.lhr-404 .m-searchform__submit:hover,
.lhr-journal-none .m-searchform__submit:hover {
	background: var(--lhr-gold-deep, #8D6F44);
}

/* =====================================================================
   9. Focus visibility (editorial scopes)
   ===================================================================== */

.lhr-journal a:focus-visible,
.lhr-journal-nav a:focus-visible,
.lhr-journal-brief a:focus-visible,
.lhr-page-hero a:focus-visible,
.lhr-post-hero a:focus-visible,
.lhr-post-main a:focus-visible,
.lhr-page-main a:focus-visible,
.lhr-bb-page a:focus-visible,
.lhr-404 a:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #CBB48D);
	outline-offset: 2px;
}

/* Reduced motion: freeze the decorative transforms in this scope. */

@media (prefers-reduced-motion: reduce) {
	.lhr-ed-card__img,
	.lhr-ed-card__arrow,
	.lhr-ed-card__cross-arrow,
	.lhr-journal-brief__arrow,
	.lhr-bb-hero__cta-arrow,
	.lhr-post-end__back span,
	.lhr-404__home span {
		transition: none;
	}
}

/* =====================================================================
   10. Responsive
   ===================================================================== */

@media (max-width: 1024px) {

	.lhr-journal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.lhr-journal-nav__track {
		gap: 28px;
	}

	.lhr-journal-brief__text {
		font-size: 17px;
	}
}

@media (max-width: 900px) {

	/* The brief stacks above its front-door link rather than squeezing the
	   serif line into a column. */
	.lhr-journal-brief__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.lhr-ed-card--feature {
		grid-template-columns: minmax(0, 1fr);
	}

	.lhr-ed-card--feature .lhr-ed-card__media {
		aspect-ratio: 16 / 9;
		min-height: 0;
		height: auto;
	}

	.lhr-ed-card--feature .lhr-ed-card__body {
		padding: 24px 16px 16px;
	}
}

@media (max-width: 690px) {

	.lhr-journal-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lhr-post-hero__inner {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.lhr-prose {
		font-size: 16px;
	}

	.lhr-prose blockquote {
		padding-left: 60px;
	}

	.lhr-prose blockquote::before {
		font-size: 76px;
		top: -8px;
	}

	.lhr-prose blockquote p {
		font-size: 19px;
	}

	.lhr-post-end {
		flex-direction: column;
		align-items: flex-start;
	}

	.lhr-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.lhr-prose .lhr-table-scroll > table {
		min-width: 540px;
	}

	.lhr-bb-form {
		flex-direction: column;
		gap: 12px;
	}

	.lhr-bb-form input[type="email"] {
		border-right: 1px solid rgba(255, 255, 255, .24);
	}

	.lhr-bb-form button {
		padding: 17px 30px;
	}

	.lhr-bb-hero__media {
		max-width: none;
	}

	.lhr-bb-dispatch {
		margin-top: 22px;
	}

	.lhr-404 .m-searchform,
	.lhr-journal-none .m-searchform {
		flex-direction: column;
		gap: 12px;
	}

	.lhr-404 .m-searchform__input,
	.lhr-journal-none .m-searchform__input {
		border-right: 1px solid var(--lhr-hairline, #E5DFD2);
	}

	.lhr-404 .m-searchform__submit,
	.lhr-journal-none .m-searchform__submit {
		padding: 16px 30px;
	}
}

/* ==========================================================================
   seo-agent — reviewer trust signals (SEO audit item 4).
   Appended by the SEO agent (author-bio block on single reviews + hero
   "Last updated" line). The only non-editorial block in this file.
   ========================================================================== */

.lhr-redesign .lhr-rev-bio {
	margin-top: 56px;
	padding: 28px 32px;
	background: var(--lhr-card, #FFFFFF);
	border: 1px solid var(--lhr-hairline, #E5DFD2);
}

.lhr-redesign .lhr-rev-bio__label {
	margin: 0 0 12px;
	font-family: "Hanken Grotesk", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lhr-gold, #A9885A);
}

.lhr-redesign .lhr-rev-bio__name {
	margin: 0 0 8px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.15;
	color: var(--lhr-ink, #22201C);
}

.lhr-redesign .lhr-rev-bio__text {
	margin: 0;
	max-width: 62ch;
	font-size: 15px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6E675C);
}

/* Hero "Last updated" — inherits the small-caps meta treatment; keep the
   secondary date slightly quieter than the publish date. */
.lhr-redesign .lhr-rev-hero__updated {
	opacity: .82;
}

@media (max-width: 690px) {
	.lhr-redesign .lhr-rev-bio {
		padding: 22px 20px;
	}
}
