/* ==========================================================================
   LHR redesign — single hotel review (review agent scope).
   Contract: research/notes/redesign-2026-07-contract.md §3.2 / review-page.png.
   Tokens come from base.css; every var() carries the contract literal as a
   fallback so the template renders faithfully even before base lands.
   ========================================================================== */

.lhr-review {
	background: var(--lhr-cream, #f7f4ee);
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	color: var(--lhr-ink, #22201c);
}

.lhr-review .lhr-container {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 40px;
}

.lhr-review a {
	text-decoration: none;
}

.lhr-review a:focus-visible,
.lhr-review button:focus-visible {
	outline: 2px solid var(--lhr-gold-soft, #cbb48d);
	outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   1. Hero — full-bleed image, dark scrim, left-aligned editorial lockup
   -------------------------------------------------------------------------- */

.lhr-rev-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(440px, 44vw, 560px);
	background: var(--lhr-dark, #191713);
	overflow: hidden;
}

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

.lhr-rev-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(16, 14, 11, 0.34) 0%, rgba(16, 14, 11, 0.12) 42%, rgba(16, 14, 11, 0.52) 100%),
		linear-gradient(90deg, rgba(16, 14, 11, 0.62) 0%, rgba(16, 14, 11, 0.30) 52%, rgba(16, 14, 11, 0.18) 100%);
	pointer-events: none;
}

.lhr-rev-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: 72px 132px;
}

.lhr-rev-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 28px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.lhr-rev-crumbs__link,
.lhr-rev-crumbs__item {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.25s ease;
}

.lhr-rev-crumbs__link:hover {
	color: #fff;
}

.lhr-rev-crumbs__sep {
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	letter-spacing: 0;
}

.lhr-review .lhr-rev-hero__title {
	margin: 0;
	max-width: 14em;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(38px, 4.6vw, 62px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #fff;
	text-transform: none;
}

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

.lhr-rev-hero__dek {
	margin: 24px 0 0;
	max-width: 26em;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(19px, 1.9vw, 25px);
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
}

.lhr-rev-hero__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 26px 0 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.lhr-rev-hero__meta-sep {
	color: var(--lhr-gold, #a9885a);
}

/* No-photo fallback keeps the lockup legible on the dark panel. */
.lhr-rev-hero--flat {
	min-height: clamp(360px, 34vw, 440px);
}

/* --------------------------------------------------------------------------
   2. Overlap shell + gallery strip
   -------------------------------------------------------------------------- */

.lhr-rev-shell {
	position: relative;
	z-index: 2;
	padding-top: 48px;
	padding-bottom: 8px;
}

.lhr-rev-shell--overlap {
	margin-top: -104px;
	padding-top: 0;
}

.lhr-rev-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 372px;
	column-gap: 56px;
	align-items: start;
}

.lhr-review .lhr-rev-strip {
	display: flex;
	gap: 14px;
	margin: 0;
	padding: 14px;
	background: var(--lhr-card, #fff);
	box-shadow: var(--lhr-shadow, 0 18px 50px rgba(34, 32, 28, 0.1));
}

/* ≥900px the scroller wrapper dissolves — thumbs + tile stay one flat
   flex row exactly as before. ≤899px it becomes the snap scroller while
   the VIEW GALLERY tile sits outside it as a pinned right cap. */
.lhr-rev-strip__scroller {
	display: contents;
}

.lhr-rev-strip__thumb {
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	display: block;
}

.lhr-rev-strip__img,
.lhr-rev-strip__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: none;
	transition: transform 0.7s ease;
}

.lhr-rev-strip__thumb:hover img {
	transform: scale(1.04);
}

.lhr-rev-strip__more {
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 16 / 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--lhr-panel, #f1ede4);
	border: 1px solid var(--lhr-hairline, #e5dfd2);
	text-align: center;
	padding: 8px;
	transition: background 0.25s ease;
}

.lhr-rev-strip__more:hover {
	background: var(--lhr-cream, #f7f4ee);
}

.lhr-rev-strip__icon {
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-strip__more-label {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-strip__more-count {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-gold, #a9885a);
}

/* --------------------------------------------------------------------------
   3. Main column — Overview, pull quote, section grid
   -------------------------------------------------------------------------- */

.lhr-rev-main {
	min-width: 0;
	padding-bottom: 32px;
}

.lhr-rev-overview {
	margin-top: 64px;
}

.lhr-review .lhr-rev-overview__title {
	margin: 0 0 22px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(26px, 2.4vw, 32px);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0;
	color: var(--lhr-ink, #22201c);
}

.lhr-review .lhr-rev-overview__content {
	max-width: none;
}

.lhr-review .lhr-rev-overview__content p {
	margin: 0 0 1.4em;
	font-size: 16px;
	line-height: 1.75;
	color: var(--lhr-ink-soft, #6e675c);
}

.lhr-review .lhr-rev-overview__content p:last-child {
	margin-bottom: 0;
}

.lhr-review .lhr-rev-overview__content h2,
.lhr-review .lhr-rev-overview__content h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
	color: var(--lhr-ink, #22201c);
	margin: 1.6em 0 0.6em;
}

.lhr-review .lhr-rev-overview__content a {
	color: var(--lhr-ink, #22201c);
	text-decoration: underline;
	text-decoration-color: var(--lhr-gold-soft, #cbb48d);
	text-underline-offset: 3px;
	transition: color 0.25s ease;
}

.lhr-review .lhr-rev-overview__content a:hover {
	color: var(--lhr-gold, #a9885a);
}

.lhr-review .sym-hosted-stay {
	margin: 26px 0 0;
	padding: 14px 20px;
	border-left: 2px solid var(--lhr-gold, #a9885a);
	background: var(--lhr-panel, #f1ede4);
	font-size: 13px;
	line-height: 1.6;
	font-style: italic;
	color: var(--lhr-ink-soft, #6e675c);
}

/* Pull quote */

.lhr-rev-quote {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	column-gap: 20px;
	margin: 48px 0 0;
	padding-top: 44px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-rev-quote__glyph {
	grid-row: 1 / span 2;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 88px;
	line-height: 0.55;
	color: var(--lhr-gold, #a9885a);
	transform: translateY(14px);
}

.lhr-rev-quote__text {
	margin: 0;
	padding: 0;
	border: 0;
}

.lhr-review .lhr-rev-quote__text p {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(19px, 1.8vw, 23px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-quote__cite {
	grid-column: 2;
	margin-top: 16px;
	font-size: 10.5px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917f);
}

/* Section grid */

.lhr-rev-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 64px 40px;
	margin-top: 56px;
	padding-top: 56px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-rev-cell {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lhr-review .lhr-rev-cell__title {
	margin: 0 0 14px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--lhr-ink, #22201c);
}

.lhr-review .lhr-rev-cell__body p {
	margin: 0 0 1.3em;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6e675c);
}

.lhr-review .lhr-rev-cell__body p:last-child {
	margin-bottom: 0;
}

/* Clamp is JS-gated: without the lhr-rev-js flag the full text shows. */
html.lhr-rev-js .lhr-rev-cell:not(.is-open) .lhr-rev-cell__body--clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}

html:not(.lhr-rev-js) .lhr-rev-cell__more {
	display: none;
}

.lhr-rev-cell__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
	transition: color 0.25s ease;
}

.lhr-rev-cell__more:hover {
	color: var(--lhr-gold, #a9885a);
}

.lhr-rev-cell__more-arrow {
	color: var(--lhr-gold, #a9885a);
	font-size: 13px;
	letter-spacing: 0;
	transition: transform 0.25s ease;
}

.lhr-rev-cell__more:hover .lhr-rev-cell__more-arrow {
	transform: translateX(4px);
}

.lhr-rev-cell__media {
	width: 100%;
	margin: 24px 0 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.lhr-rev-cell__img,
.lhr-rev-cell__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.lhr-rev-cell__media:hover img {
	transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   4. Sidebar rail
   -------------------------------------------------------------------------- */

.lhr-rev-rail {
	position: sticky;
	top: 116px;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 36px;
	min-width: 0;
}

/* Fact card */

.lhr-rev-fact {
	background: var(--lhr-card, #fff);
	border: 1px solid var(--lhr-hairline, #e5dfd2);
	padding: 34px 30px;
	box-shadow: var(--lhr-shadow, 0 18px 50px rgba(34, 32, 28, 0.1));
}

.lhr-rev-fact__name {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-fact__place {
	margin: 10px 0 0;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917f);
}

.lhr-rev-fact__rows {
	margin: 24px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-rev-fact__row {
	margin-bottom: 18px;
}

.lhr-rev-fact__row:last-child {
	margin-bottom: 0;
}

.lhr-review .lhr-rev-fact__label {
	display: block;
	margin: 0 0 5px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917f);
}

.lhr-rev-fact__value {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-fact__value--tier {
	letter-spacing: 0.22em;
	font-weight: 600;
}

/* Editor rating: Playfair numeral + gold stars */

.lhr-rev-rating {
	display: flex;
	align-items: baseline;
	gap: 7px;
}

.lhr-rev-rating__num {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 27px;
	line-height: 1;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-rating__scale {
	font-size: 12px;
	color: var(--lhr-ink-faint, #98917f);
}

.lhr-rev-stars {
	display: inline-flex;
	gap: 3px;
	margin-left: 6px;
	transform: translateY(-1px);
}

.lhr-rev-stars__star svg {
	display: block;
	fill: none;
	stroke: var(--lhr-gold-soft, #cbb48d);
}

.lhr-rev-stars__star.is-filled svg {
	fill: var(--lhr-gold, #a9885a);
	stroke: var(--lhr-gold, #a9885a);
}

/* CTA + partner block */

.lhr-rev-fact__cta {
	margin-top: 26px;
}

/* Contract-literal safety for the gold CTA (base.css owns .lhr-btn--gold). */
.lhr-review .lhr-rev-fact__button,
.lhr-review .lhr-rev-dark__cta {
	display: block;
	width: 100%;
	padding: 16px 28px;
	background: var(--lhr-gold, #a9885a);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	transition: background 0.25s ease;
}

.lhr-review .lhr-rev-fact__button:hover,
.lhr-review .lhr-rev-dark__cta:hover {
	background: var(--lhr-gold-deep, #8d6f44);
	color: #fff;
}

.lhr-rev-fact__partner {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-rev-fact__partner-text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--lhr-ink-soft, #6e675c);
}

/* Key facts + notable highlights (quiet, on the cream) */

.lhr-rev-keyfacts {
	padding: 0 30px;
}

.lhr-review .lhr-rev-keyfacts__heading {
	margin: 0 0 18px;
	font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
}

.lhr-review .lhr-rev-keyfacts__heading--highlights {
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-rev-keyfacts__list,
.lhr-rev-highlights {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhr-rev-keyfacts__row,
.lhr-rev-highlights__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 13px;
}

.lhr-rev-keyfacts__row:last-child,
.lhr-rev-highlights__item:last-child {
	margin-bottom: 0;
}

.lhr-rev-keyfacts__icon,
.lhr-rev-highlights__check {
	flex: 0 0 auto;
	color: var(--lhr-gold, #a9885a);
	transform: translateY(2px);
}

.lhr-rev-keyfacts__text,
.lhr-rev-highlights__text {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--lhr-ink-soft, #6e675c);
}

/* Dark Blackbook card */

.lhr-rev-dark {
	background: var(--lhr-dark, #191713);
	padding: 34px 30px;
}

.lhr-review .lhr-rev-dark__title {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
	color: #fff;
}

.lhr-rev-dark__text {
	margin: 12px 0 0;
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.62);
}

.lhr-review .lhr-rev-dark__cta {
	margin-top: 22px;
}

/* --------------------------------------------------------------------------
   5. Related reviews band
   -------------------------------------------------------------------------- */

.lhr-rev-related {
	padding: 96px 0 104px;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
	margin-top: 72px;
}

.lhr-rev-related__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 44px;
}

.lhr-review .lhr-rev-related__eyebrow {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-gold, #a9885a);
}

.lhr-review .lhr-rev-related__title {
	margin: 10px 0 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(26px, 2.4vw, 32px);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0;
	color: var(--lhr-ink, #22201c);
}

.lhr-rev-related__all {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
	transition: color 0.25s ease;
}

.lhr-rev-related__all span {
	color: var(--lhr-gold, #a9885a);
}

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

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

.lhr-rev-card {
	background: var(--lhr-card, #fff);
	border: 1px solid var(--lhr-hairline, #e5dfd2);
	display: flex;
	flex-direction: column;
	min-width: 0;
}

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

.lhr-rev-card__img,
.lhr-rev-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: none;
	transition: transform 0.7s ease;
}

.lhr-rev-card:hover .lhr-rev-card__media img {
	transform: scale(1.04);
}

.lhr-rev-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 26px 26px 24px;
}

.lhr-rev-card__eyebrow {
	margin: 0 0 12px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-gold, #a9885a);
}

.lhr-review .lhr-rev-card__title {
	margin: 0 0 10px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
}

.lhr-review .lhr-rev-card__title a {
	color: var(--lhr-ink, #22201c);
	transition: color 0.25s ease;
}

.lhr-review .lhr-rev-card__title a:hover {
	color: var(--lhr-gold, #a9885a);
}

.lhr-rev-card__dek {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--lhr-ink-soft, #6e675c);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.lhr-rev-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 20px;
}

.lhr-rev-card__meta time {
	font-size: 12px;
	color: var(--lhr-ink-faint, #98917f);
}

.lhr-rev-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
	transition: color 0.25s ease;
}

.lhr-rev-card__more span {
	color: var(--lhr-gold, #a9885a);
}

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

/* Sparse related sets — never an empty column (double-class beats the
   breakpoint overrides below at equal cascade position). */

.lhr-rev-related__grid.lhr-rev-related__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lhr-rev-related__grid--two .lhr-rev-card__media {
	aspect-ratio: 3 / 2;
}

/* Single sibling: full-width editorial banner — image left, body right. */

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

.lhr-rev-related__grid--one .lhr-rev-card {
	flex-direction: row;
	align-items: stretch;
}

.lhr-rev-related__grid--one .lhr-rev-card__media {
	flex: 0 0 46%;
	aspect-ratio: 16 / 10;
}

.lhr-rev-related__grid--one .lhr-rev-card__body {
	flex: 1 1 auto;
	justify-content: center;
	padding: 40px 48px;
}

.lhr-review .lhr-rev-related__grid--one .lhr-rev-card__title {
	font-size: clamp(24px, 2.3vw, 30px);
}

.lhr-rev-related__grid--one .lhr-rev-card__dek {
	-webkit-line-clamp: 3;
}

.lhr-rev-related__grid--one .lhr-rev-card__meta {
	margin-top: 28px;
}

/* --------------------------------------------------------------------------
   6. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
	.lhr-rev-layout {
		grid-template-columns: minmax(0, 1fr) 336px;
		column-gap: 40px;
	}
}

/* 900–1199px the six-section grid drops to two columns (three ~190px
   columns beside the sidebar clipped every summary); the same two columns
   carry down to 681px. Multicol packing keeps each image glued to its own
   section — a cell whose row-partner has no image can never strand its
   photo in a lopsided grid row. */
@media (min-width: 681px) and (max-width: 1199px) {
	.lhr-rev-grid {
		display: block;
		columns: 2;
		column-gap: 32px;
	}

	.lhr-rev-cell {
		display: block;
		width: 100%;
		margin-bottom: 48px;
		break-inside: avoid;
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
	}

	.lhr-rev-cell:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 1023px) {
	.lhr-rev-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.lhr-rev-rail {
		position: static;
		margin-top: 64px;
		max-width: 560px;
	}

	.lhr-rev-shell--overlap {
		margin-top: -72px;
	}

	.lhr-rev-hero__content {
		padding-block: 56px 108px;
	}

	.lhr-rev-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lhr-rev-related {
		padding: 72px 0 80px;
	}
}

@media (max-width: 899px) {
	/* Gallery strip: full-bleed white card. Thumbs live in an inner snap
	   scroller with a trailing edge fade; the VIEW GALLERY tile stays
	   outside the scroller as a pinned right cap, so the only gallery
	   entry point is always on screen. Bleed mirrors the container gutter
	   (40px here, 20px ≤680). */
	.lhr-review .lhr-rev-strip {
		margin-inline: -40px;
		padding: 12px;
		gap: 12px;
	}

	.lhr-rev-strip__scroller {
		display: flex;
		gap: 12px;
		flex: 1 1 auto;
		min-width: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		-webkit-mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent 100%);
		mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent 100%);
	}

	.lhr-rev-strip__scroller::-webkit-scrollbar {
		display: none;
	}

	.lhr-rev-strip__thumb {
		flex: 0 0 clamp(196px, 30vw, 248px);
		scroll-snap-align: start;
	}

	.lhr-rev-strip__more {
		flex: 0 0 clamp(118px, 26vw, 140px);
		min-width: 0;
		aspect-ratio: auto;
		align-self: stretch;
	}
}

@media (max-width: 680px) {
	.lhr-review .lhr-container {
		padding-inline: 20px;
	}

	.lhr-rev-hero {
		min-height: 420px;
	}

	.lhr-rev-hero__content {
		padding-block: 48px 96px;
	}

	.lhr-rev-crumbs {
		margin-bottom: 20px;
	}

	.lhr-rev-shell--overlap {
		margin-top: -56px;
	}

	.lhr-rev-overview {
		margin-top: 48px;
	}

	.lhr-rev-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
		margin-top: 48px;
		padding-top: 48px;
	}

	.lhr-rev-quote {
		grid-template-columns: 40px minmax(0, 1fr);
		column-gap: 14px;
		margin-top: 40px;
		padding-top: 36px;
	}

	.lhr-rev-quote__glyph {
		font-size: 64px;
	}

	.lhr-rev-rail {
		margin-top: 56px;
		max-width: none;
	}

	.lhr-rev-fact,
	.lhr-rev-dark {
		padding: 28px 22px;
	}

	.lhr-rev-keyfacts {
		padding: 0 22px;
	}

	.lhr-review .lhr-rev-strip {
		margin-inline: -20px;
	}

	.lhr-rev-related__grid,
	.lhr-rev-related__grid.lhr-rev-related__grid--two {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.lhr-rev-related__grid--two .lhr-rev-card__media {
		aspect-ratio: 4 / 3;
	}

	/* Banner card folds back to the stacked pattern on phones. */
	.lhr-rev-related__grid--one .lhr-rev-card {
		flex-direction: column;
	}

	.lhr-rev-related__grid--one .lhr-rev-card__media {
		flex: 0 1 auto;
		aspect-ratio: 4 / 3;
	}

	.lhr-rev-related__grid--one .lhr-rev-card__body {
		padding: 26px 26px 24px;
	}

	.lhr-review .lhr-rev-related__grid--one .lhr-rev-card__title {
		font-size: 22px;
	}

	.lhr-rev-related__grid--one .lhr-rev-card__meta {
		margin-top: auto;
	}

	.lhr-rev-related__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lhr-rev-strip__img,
	.lhr-rev-cell__img,
	.lhr-rev-card__img,
	.lhr-rev-strip__thumb img,
	.lhr-rev-cell__media img,
	.lhr-rev-card__media img {
		transition: none;
	}
}
