/* ─── Rot Gallery (Why Wood Rots) ────────────────────────────────────────────
 * Hero, side-by-side photo pairs, differentiator list, and CTA.
 * FAQ and CTA-inner reuse collection rules. */

/* Hero — full-bleed background image with dark overlay */
.liv-rot-gallery__hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	padding-block: 0;
}
.liv-rot-gallery__hero-overlay {
	width: 100%;
	padding-block: clamp(3rem, 10vw, 8rem) clamp(3rem, 8vw, 5rem);
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.15) 100%
	);
}
.liv-rot-gallery__hero-title {
	font-family: var(--wp--preset--font-family--display, "Roboto Slab", serif);
	font-size: clamp(2.5rem, 6vw, 5rem);
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: #fff;
	margin: 0 0 1rem;
	max-width: 18ch;
}
.liv-rot-gallery__hero-sub {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 2vw, 1.25rem);
	max-width: 52ch;
	line-height: 1.5;
	margin: 0;
}

/* Stage sections */
.liv-rot-gallery__stage .liv-section__lead {
	max-width: 65ch;
}

/* Photo pairs — 2-column grid on desktop, stacked on mobile */
.liv-rot-gallery__pairs {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
}
.liv-rot-gallery__pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.75rem, 2vw, 1.5rem);
}
.liv-rot-gallery__side {
	margin: 0;
	position: relative;
}
.liv-rot-gallery__side img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 0.5rem;
}
.liv-rot-gallery__side--wood img {
	border: 2px solid rgba(255, 80, 80, 0.3);
}
.liv-rot-gallery__side--liv img {
	border: 2px solid var(--wp--preset--color--leaf-500, #5BA02E);
}

/* Labels beneath each photo */
.liv-rot-gallery__label {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.liv-rot-gallery__label--wood {
	color: rgba(255, 120, 120, 0.9);
}
.liv-rot-gallery__label--liv {
	color: var(--wp--preset--color--leaf-500, #5BA02E);
}

/* Differentiator list (light section) */
.liv-rot-gallery__diff-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1.5rem;
	max-width: 50rem;
}
.liv-rot-gallery__diff-item {
	display: grid;
	gap: 0.25rem;
}
.liv-rot-gallery__diff-item strong {
	font-size: 1.15rem;
}
.liv-rot-gallery__diff-item span {
	color: var(--liv-ink-400, #666);
}
.liv-rot-gallery__diff-links {
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--liv-ink-400, #666);
}
.liv-rot-gallery__diff-links a {
	color: var(--wp--preset--color--leaf-600, #4a8626);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.liv-rot-gallery__diff-links a:hover {
	color: var(--wp--preset--color--leaf-700, #4F8B3A);
}

/* CTA section */
.liv-rot-gallery__cta .liv-display {
	max-width: 20ch;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 767px) {
	.liv-rot-gallery__hero { min-height: 50vh; }
	.liv-rot-gallery__pair {
		grid-template-columns: 1fr;
	}
}
