/* ==========================================================================
   LionHeart TV — Midnight Mane
   Tokens come from theme.json; this file maps them to short names and builds
   the components. Nothing here hardcodes a colour that theme.json also defines.
   ========================================================================== */

:root {
	--lhtv-bg: var(--wp--preset--color--bg, #0A0A0B);
	--lhtv-surface: var(--wp--preset--color--surface, #141416);
	--lhtv-surface-2: var(--wp--preset--color--surface-2, #1E1E21);
	--lhtv-border: var(--wp--preset--color--border, #2A2A2E);
	--lhtv-text: var(--wp--preset--color--text, #F5F2EC);
	--lhtv-text-dim: var(--wp--preset--color--text-dim, #A3A099);
	--lhtv-accent: var(--wp--preset--color--accent, #C9A227);
	--lhtv-accent-hot: var(--wp--preset--color--accent-hot, #E8BE3D);
	--lhtv-live: var(--wp--preset--color--live, #E23636);
	--lhtv-success: var(--wp--preset--color--success, #3FA96B);

	--lhtv-font-display: var(--wp--preset--font-family--display);
	--lhtv-font-ui: var(--wp--preset--font-family--interface);
	--lhtv-font-body: var(--wp--preset--font-family--body);
	--lhtv-font-accent: var(--wp--preset--font-family--accent);

	--lhtv-fs-hero: var(--wp--preset--font-size--hero);
	--lhtv-fs-h1: var(--wp--preset--font-size--h1);
	--lhtv-fs-h2: var(--wp--preset--font-size--h2);
	--lhtv-fs-h3: var(--wp--preset--font-size--h3);
	--lhtv-fs-body: var(--wp--preset--font-size--body);
	--lhtv-fs-small: var(--wp--preset--font-size--small);
	--lhtv-fs-micro: var(--wp--preset--font-size--micro);

	--lhtv-s-1: 0.25rem;
	--lhtv-s-2: 0.5rem;
	--lhtv-s-3: 0.75rem;
	--lhtv-s-4: 1rem;
	--lhtv-s-5: 1.5rem;
	--lhtv-s-6: 2rem;
	--lhtv-s-7: 3rem;
	--lhtv-s-8: 4rem;
	--lhtv-s-9: 6rem;
	--lhtv-s-10: 8rem;

	--lhtv-r-chip: 4px;
	--lhtv-r-card: 8px;
	--lhtv-r-panel: 12px;
	--lhtv-r-badge: 999px;

	--lhtv-t-micro: 160ms;
	--lhtv-t-hover: 240ms;
	--lhtv-t-panel: 320ms;
	--lhtv-ease: cubic-bezier(0.2, 0, 0.2, 1);

	--lhtv-track-micro: 0.06em;
	--lhtv-track-lockup: 0.18em;

	--lhtv-shell: 1400px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--lhtv-bg);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-body);
	font-size: var(--lhtv-fs-body);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
video,
iframe { max-width: 100%; }

img { height: auto; }

:focus-visible {
	outline: 2px solid var(--lhtv-accent-hot);
	outline-offset: 2px;
	border-radius: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.lhtv-skip-link {
	position: absolute;
	top: -100px;
	left: var(--lhtv-s-4);
	z-index: 100;
	padding: var(--lhtv-s-3) var(--lhtv-s-5);
	background: var(--lhtv-accent);
	color: var(--lhtv-bg);
	font-family: var(--lhtv-font-ui);
	font-weight: 600;
	border-radius: var(--lhtv-r-card);
	text-decoration: none;
}

.lhtv-skip-link:focus {
	top: var(--lhtv-s-4);
}

.lhtv-main { display: block; }

.lhtv-shell {
	max-width: var(--lhtv-shell);
	margin-inline: auto;
	padding-inline: var(--lhtv-s-5);
}

.lhtv-shell--narrow { max-width: 760px; }

.lhtv-section {
	margin-block: var(--lhtv-s-9);
}

.lhtv-section__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--lhtv-s-4);
	margin-bottom: var(--lhtv-s-5);
}

.lhtv-section__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h2);
	line-height: 1.05;
	text-transform: uppercase;
	margin: 0;
}

.lhtv-section__more {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	color: var(--lhtv-accent);
	text-decoration: none;
	white-space: nowrap;
}

.lhtv-section__more:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.lhtv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--lhtv-s-2);
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--lhtv-r-card);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--lhtv-t-hover) var(--lhtv-ease),
				border-color var(--lhtv-t-hover) var(--lhtv-ease),
				color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-button--large { padding: 16px 32px; font-size: var(--lhtv-fs-body); }

.lhtv-button--primary {
	background: var(--lhtv-accent);
	color: var(--lhtv-bg);
}

.lhtv-button--primary:hover { background: var(--lhtv-accent-hot); color: var(--lhtv-bg); text-decoration: none; }

.lhtv-button--secondary {
	background: transparent;
	border-color: var(--lhtv-border);
	color: var(--lhtv-text);
}

.lhtv-button--secondary:hover { border-color: var(--lhtv-accent); color: var(--lhtv-text); text-decoration: none; }

.lhtv-button--onaccent {
	background: var(--lhtv-bg);
	color: var(--lhtv-text);
}

.lhtv-button--onaccent:hover { background: var(--lhtv-surface); color: var(--lhtv-text); text-decoration: none; }

.lhtv-button--ghost {
	background: none;
	color: var(--lhtv-accent);
	padding-inline: 0;
}

.lhtv-button--ghost:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Badges, pills, chips
   -------------------------------------------------------------------------- */

.lhtv-live-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--lhtv-s-2);
	padding: 4px 10px;
	background: var(--lhtv-live);
	color: #fff;
	border-radius: var(--lhtv-r-badge);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
}

.lhtv-live-badge[hidden] { display: none; }

.lhtv-live-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	animation: lhtv-pulse 1.6s ease-in-out infinite;
}

@keyframes lhtv-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.35); opacity: 0.5; }
}

.lhtv-pill {
	display: inline-block;
	padding: 3px 8px;
	border-radius: var(--lhtv-r-chip);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
}

.lhtv-pill--duration {
	position: absolute;
	right: var(--lhtv-s-2);
	bottom: var(--lhtv-s-2);
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
}

.lhtv-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-2);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-chip {
	display: inline-block;
	padding: 7px 14px;
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 500;
	text-decoration: none;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease),
				background-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-chip:hover { border-color: var(--lhtv-accent); text-decoration: none; }

.lhtv-chip.is-active {
	background: var(--lhtv-accent);
	border-color: var(--lhtv-accent);
	color: var(--lhtv-bg);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.lhtv-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 10, 11, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--lhtv-border);
}

.lhtv-header__inner {
	display: flex;
	align-items: center;
	gap: var(--lhtv-s-5);
	max-width: var(--lhtv-shell);
	margin-inline: auto;
	padding: var(--lhtv-s-3) var(--lhtv-s-5);
}

.lhtv-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--lhtv-s-3);
	text-decoration: none;
	color: var(--lhtv-text);
	flex: 0 0 auto;
}

.lhtv-brand:hover { text-decoration: none; }

.lhtv-brand__mark { display: block; width: 44px; height: 44px; color: var(--lhtv-accent); }

/*
 * Placeholder only. The Lionheart FM lion mark is the parent of this identity;
 * drop the SVG at assets/img/lion-mark.svg and this rule stops applying.
 */
.lhtv-brand__mark--placeholder {
	border: 2px dashed var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
}

.lhtv-brand__words { display: flex; flex-direction: column; line-height: 1; }

.lhtv-brand__name {
	font-family: var(--lhtv-font-display);
	font-size: 1.5rem;
	letter-spacing: 0.01em;
}

.lhtv-brand__sub {
	font-family: var(--lhtv-font-ui);
	font-size: 0.5rem;
	font-weight: 600;
	letter-spacing: var(--lhtv-track-lockup);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
	margin-top: 3px;
}

.lhtv-brand--stacked { flex-direction: column; align-items: flex-start; gap: var(--lhtv-s-2); }

.lhtv-header__nav { margin-left: auto; }

.lhtv-nav__list {
	display: flex;
	gap: var(--lhtv-s-5);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-nav__link,
.lhtv-nav__list a {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text);
	text-decoration: none;
	padding-block: var(--lhtv-s-2);
	border-bottom: 2px solid transparent;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease), color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-nav__link:hover,
.lhtv-nav__list a:hover {
	color: var(--lhtv-accent);
	border-bottom-color: var(--lhtv-accent);
	text-decoration: none;
}

.lhtv-header__live { flex: 0 0 auto; }

.lhtv-live-pill {
	display: inline-flex;
	align-items: center;
	gap: var(--lhtv-s-2);
	padding: 7px 14px;
	background: var(--lhtv-live);
	color: #fff;
	border-radius: var(--lhtv-r-badge);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 700;
	letter-spacing: var(--lhtv-track-micro);
	text-decoration: none;
}

.lhtv-live-pill:hover { color: #fff; text-decoration: none; filter: brightness(1.1); }
.lhtv-live-pill[hidden] { display: none; }

.lhtv-live-pill__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	animation: lhtv-pulse 1.6s ease-in-out infinite;
}

.lhtv-header__toggle {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	background: none;
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
	color: var(--lhtv-text);
	cursor: pointer;
}

.lhtv-header__toggle-bars,
.lhtv-header__toggle-bars::before,
.lhtv-header__toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	margin-inline: auto;
	transition: transform var(--lhtv-t-micro) var(--lhtv-ease);
}

.lhtv-header__toggle-bars::before { content: ""; transform: translateY(-6px); }
.lhtv-header__toggle-bars::after { content: ""; transform: translateY(4px); }

@media (max-width: 900px) {
	.lhtv-header__toggle { display: block; }

	.lhtv-header__nav {
		display: none;
		position: absolute;
		inset-inline: 0;
		top: 100%;
		margin: 0;
		padding: var(--lhtv-s-4) var(--lhtv-s-5);
		background: var(--lhtv-surface);
		border-bottom: 1px solid var(--lhtv-border);
	}

	.lhtv-header__nav.is-open { display: block; }

	.lhtv-nav__list { flex-direction: column; gap: var(--lhtv-s-3); }

	.lhtv-header__inner { position: relative; flex-wrap: wrap; }

	/* The live pill stays visible outside the drawer — it is the highest value
	   piece of navigation on the site. */
	.lhtv-header__live { order: 2; margin-left: var(--lhtv-s-3); }
	.lhtv-header__toggle { order: 3; margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Player frames
   -------------------------------------------------------------------------- */

.lhtv-player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	/* Square edges: the player is a screen, not a widget. */
	border-radius: 0;
	overflow: hidden;
}

.lhtv-player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.lhtv-hero { position: relative; }

.lhtv-hero__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 70vh;
	background: #000;
	overflow: hidden;
}

.lhtv-hero__frame .lhtv-player { height: 100%; aspect-ratio: auto; }

.lhtv-hero__placeholder {
	position: absolute;
	inset: 0;
	background-color: var(--lhtv-surface);
	background-size: cover;
	background-position: center;
}

.lhtv-hero__overlay {
	position: absolute;
	top: var(--lhtv-s-4);
	left: var(--lhtv-s-4);
	display: flex;
	align-items: center;
	gap: var(--lhtv-s-3);
	pointer-events: none;
	z-index: 2;
}

.lhtv-hero__channel {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.lhtv-hero__unmute,
.lhtv-watch__unmute,
.lhtv-episode__unmute {
	position: absolute;
	right: var(--lhtv-s-4);
	bottom: var(--lhtv-s-8);
	z-index: 3;
	padding: 10px 18px;
	background: var(--lhtv-accent);
	color: var(--lhtv-bg);
	border: 0;
	border-radius: var(--lhtv-r-badge);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	cursor: pointer;
}

.lhtv-hero__unmute[hidden],
.lhtv-watch__unmute[hidden],
.lhtv-episode__unmute[hidden] { display: none; }

.lhtv-hero__body {
	max-width: var(--lhtv-shell);
	margin-inline: auto;
	padding: var(--lhtv-s-6) var(--lhtv-s-5) 0;
}

.lhtv-hero__eyebrow {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-accent);
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-hero__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-hero);
	line-height: 1.02;
	margin: 0 0 var(--lhtv-s-4);
	max-width: 18ch;
}

.lhtv-hero__blurb {
	color: var(--lhtv-text-dim);
	max-width: 60ch;
	margin: 0 0 var(--lhtv-s-4);
}

.lhtv-hero__viewers,
.lhtv-watch__viewers {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
	margin: 0 0 var(--lhtv-s-4);
}

.lhtv-hero__viewers[hidden],
.lhtv-watch__viewers[hidden],
.lhtv-hero__ended[hidden],
.lhtv-watch__ended[hidden] { display: none; }

.lhtv-hero__ended,
.lhtv-watch__ended {
	padding: var(--lhtv-s-3) var(--lhtv-s-4);
	background: var(--lhtv-surface);
	border-left: 3px solid var(--lhtv-accent);
	border-radius: var(--lhtv-r-chip);
	margin: 0 0 var(--lhtv-s-4);
}

.lhtv-hero__actions { margin: 0; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.lhtv-card { position: relative; }

.lhtv-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.lhtv-card__link:hover { text-decoration: none; }

.lhtv-card__art {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--lhtv-surface);
	border-radius: var(--lhtv-r-card);
	overflow: hidden;
	margin-bottom: var(--lhtv-s-3);
}

.lhtv-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-card__art-fallback {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--lhtv-surface), var(--lhtv-surface-2));
}

.lhtv-card__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	opacity: 0;
	transition: opacity var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-card__link:hover .lhtv-card__art img { transform: scale(1.04); }
.lhtv-card__link:hover .lhtv-card__play,
.lhtv-card__link:focus-visible .lhtv-card__play { opacity: 1; }

.lhtv-card__link::after {
	content: "";
	display: block;
	height: 2px;
	width: 0;
	background: var(--lhtv-accent);
	transition: width var(--lhtv-t-hover) var(--lhtv-ease);
	margin-top: var(--lhtv-s-3);
}

.lhtv-card__link:hover::after,
.lhtv-card__link:focus-visible::after { width: 100%; }

.lhtv-card__series {
	display: block;
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-accent);
	margin-bottom: var(--lhtv-s-1);
}

.lhtv-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-h3);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: var(--lhtv-s-1);
}

.lhtv-card__meta {
	display: block;
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
}

.lhtv-series-card__link { display: block; color: inherit; text-decoration: none; }
.lhtv-series-card__link:hover { text-decoration: none; }

.lhtv-series-card__art {
	position: relative;
	display: block;
	aspect-ratio: 2 / 3;
	background: var(--lhtv-surface);
	border-radius: var(--lhtv-r-card);
	overflow: hidden;
	margin-bottom: var(--lhtv-s-3);
}

.lhtv-series-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-series-card__link:hover .lhtv-series-card__art img { transform: scale(1.04); }

.lhtv-series-card__art-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: var(--lhtv-s-4);
	background: linear-gradient(160deg, var(--lhtv-surface-2), var(--lhtv-surface));
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h3);
	text-align: center;
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

.lhtv-series-card__title {
	display: block;
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
}

.lhtv-series-card__count {
	display: block;
	font-size: var(--lhtv-fs-micro);
	color: var(--lhtv-text-dim);
}

/* --------------------------------------------------------------------------
   Rails and grids
   -------------------------------------------------------------------------- */

.lhtv-rail { position: relative; }

.lhtv-rail__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 1fr);
	gap: var(--lhtv-s-4);
	list-style: none;
	margin: 0;
	padding: 0 0 var(--lhtv-s-2);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: var(--lhtv-border) transparent;
	/* The gradient signalling more content; removed when scrolled to the end. */
	mask-image: linear-gradient(to right, #000 calc(100% - 64px), transparent 100%);
}

.lhtv-rail.is-at-end .lhtv-rail__track { mask-image: none; }

.lhtv-rail__item { scroll-snap-align: start; }

.lhtv-rail--portrait .lhtv-rail__track { grid-auto-columns: minmax(180px, 1fr); }

@media (min-width: 900px) {
	.lhtv-rail__track { grid-auto-columns: minmax(300px, 1fr); }
	.lhtv-rail--portrait .lhtv-rail__track { grid-auto-columns: minmax(220px, 1fr); }
}

.lhtv-rail__arrow {
	position: absolute;
	top: 28%;
	z-index: 2;
	display: none;
	width: 44px;
	height: 44px;
	background: rgba(20, 20, 22, 0.9);
	border: 1px solid var(--lhtv-border);
	border-radius: 50%;
	color: var(--lhtv-text);
	cursor: pointer;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-rail__arrow:hover { border-color: var(--lhtv-accent); }
.lhtv-rail__arrow--prev { left: calc(var(--lhtv-s-4) * -1); }
.lhtv-rail__arrow--next { right: calc(var(--lhtv-s-4) * -1); }
.lhtv-rail__arrow[disabled] { opacity: 0.3; cursor: default; }

@media (hover: hover) and (pointer: fine) {
	.lhtv-rail__arrow { display: grid; place-items: center; }
}

.lhtv-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--lhtv-s-5);
}

@media (min-width: 700px) { .lhtv-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .lhtv-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.lhtv-grid--single { grid-template-columns: minmax(0, 360px); }

/* --------------------------------------------------------------------------
   Empty state
   -------------------------------------------------------------------------- */

.lhtv-empty {
	display: grid;
	justify-items: center;
	gap: var(--lhtv-s-3);
	padding: var(--lhtv-s-9) var(--lhtv-s-5);
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-panel);
	text-align: center;
}

.lhtv-empty__mark { color: var(--lhtv-accent); }

.lhtv-empty__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h2);
	margin: 0;
}

.lhtv-empty__body {
	color: var(--lhtv-text-dim);
	max-width: 48ch;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Watch page
   -------------------------------------------------------------------------- */

.lhtv-watch__stage { margin-block: var(--lhtv-s-6); }

.lhtv-watch__frame {
	position: relative;
	max-width: 1400px;
	margin-inline: auto;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.lhtv-watch__frame .lhtv-player { height: 100%; aspect-ratio: auto; }

.lhtv-watch__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: var(--lhtv-s-5);
	background: var(--lhtv-surface);
	color: var(--lhtv-text-dim);
	text-align: center;
}

.lhtv-watch__meta {
	display: grid;
	gap: var(--lhtv-s-6);
	margin-bottom: var(--lhtv-s-8);
}

@media (min-width: 1000px) {
	.lhtv-watch__meta { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
}

.lhtv-watch__status {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--lhtv-s-3);
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-watch__channel {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-accent);
}

.lhtv-watch__offline {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

.lhtv-watch__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	line-height: 1.05;
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-watch__notice,
.lhtv-watch__blurb { color: var(--lhtv-text-dim); margin: 0 0 var(--lhtv-s-3); }

.lhtv-watch__description { color: var(--lhtv-text-dim); }

/* Channel switcher — built for many, rendered here for one. */
.lhtv-switcher__list {
	display: grid;
	gap: var(--lhtv-s-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-switcher__chip {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: var(--lhtv-s-3);
	align-items: center;
	padding: var(--lhtv-s-3) var(--lhtv-s-4);
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-card);
	color: var(--lhtv-text);
	text-decoration: none;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease);
}

a.lhtv-switcher__chip:hover { border-color: var(--lhtv-channel-accent, var(--lhtv-accent)); text-decoration: none; }

.lhtv-switcher__chip.is-current { border-color: var(--lhtv-channel-accent, var(--lhtv-accent)); }

.lhtv-switcher__dot {
	grid-row: 1 / span 2;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--lhtv-border);
}

.lhtv-switcher__dot.is-live { background: var(--lhtv-live); animation: lhtv-pulse 1.6s ease-in-out infinite; }

.lhtv-switcher__name {
	font-family: var(--lhtv-font-ui);
	font-weight: 600;
}

.lhtv-switcher__state {
	font-size: var(--lhtv-fs-micro);
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

/* --------------------------------------------------------------------------
   Channel picker
   -------------------------------------------------------------------------- */

.lhtv-picker { margin-block: var(--lhtv-s-8); }

.lhtv-picker__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	margin: 0 0 var(--lhtv-s-6);
}

.lhtv-picker__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--lhtv-s-5);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-picker__link {
	display: block;
	color: inherit;
	text-decoration: none;
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-card);
	overflow: hidden;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-picker__link:hover { border-color: var(--lhtv-channel-accent, var(--lhtv-accent)); text-decoration: none; }

.lhtv-picker__art {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--lhtv-surface);
}

.lhtv-picker__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lhtv-picker__art .lhtv-live-badge { position: absolute; top: var(--lhtv-s-3); left: var(--lhtv-s-3); }

.lhtv-picker__name {
	display: block;
	padding: var(--lhtv-s-4) var(--lhtv-s-4) 0;
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-h3);
	font-weight: 600;
}

.lhtv-picker__state {
	display: block;
	padding-inline: var(--lhtv-s-4);
	font-size: var(--lhtv-fs-micro);
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

.lhtv-picker__tagline {
	display: block;
	padding: var(--lhtv-s-2) var(--lhtv-s-4) var(--lhtv-s-4);
	color: var(--lhtv-text-dim);
	font-size: var(--lhtv-fs-small);
}

/* --------------------------------------------------------------------------
   Episode page
   -------------------------------------------------------------------------- */

.lhtv-episode__stage { margin-block: var(--lhtv-s-6); }

.lhtv-episode__frame {
	position: relative;
	max-width: 1400px;
	margin-inline: auto;
}

.lhtv-episode__header { margin-bottom: var(--lhtv-s-5); }

.lhtv-episode__series {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-3);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-episode__number { color: var(--lhtv-text-dim); }

.lhtv-episode__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	line-height: 1.05;
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-episode__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-3);
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
	margin: 0 0 var(--lhtv-s-4);
}

.lhtv-episode__description { max-width: 70ch; margin-bottom: var(--lhtv-s-6); }

.lhtv-share {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-2);
	padding-block: var(--lhtv-s-4);
	border-block: 1px solid var(--lhtv-border);
	margin-bottom: var(--lhtv-s-6);
}

.lhtv-share__button {
	padding: 8px 14px;
	background: transparent;
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-share__button:hover { border-color: var(--lhtv-accent); text-decoration: none; }
.lhtv-share__button.is-copied { border-color: var(--lhtv-success); color: var(--lhtv-success); }

/* Transcript: server-rendered, collapsed with CSS, never hidden behind JS. */
.lhtv-transcript {
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-panel);
	margin-bottom: var(--lhtv-s-8);
}

.lhtv-transcript__summary {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--lhtv-s-4);
	padding: var(--lhtv-s-4) var(--lhtv-s-5);
	cursor: pointer;
	list-style: none;
}

.lhtv-transcript__summary::-webkit-details-marker { display: none; }

.lhtv-transcript__label {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
}

.lhtv-transcript__label::after {
	content: " ▾";
	color: var(--lhtv-accent);
}

.lhtv-transcript[open] .lhtv-transcript__label::after { content: " ▴"; }

.lhtv-transcript__hint { font-size: var(--lhtv-fs-micro); color: var(--lhtv-text-dim); }

.lhtv-transcript__body {
	max-height: 60vh;
	overflow-y: auto;
	padding: 0 var(--lhtv-s-5) var(--lhtv-s-5);
	color: var(--lhtv-text-dim);
	border-top: 1px solid var(--lhtv-border);
}

.lhtv-transcript__body p { max-width: 70ch; }

/* --------------------------------------------------------------------------
   Library
   -------------------------------------------------------------------------- */

.lhtv-library { margin-block: var(--lhtv-s-7); }

.lhtv-library__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	margin: 0;
}

.lhtv-library__count { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); margin: 0 0 var(--lhtv-s-5); }

.lhtv-filters {
	position: sticky;
	top: 72px;
	z-index: 20;
	padding: var(--lhtv-s-4) 0;
	background: var(--lhtv-bg);
	border-bottom: 1px solid var(--lhtv-border);
	margin-bottom: var(--lhtv-s-6);
}

.lhtv-filters__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: var(--lhtv-s-3);
	margin-bottom: var(--lhtv-s-3);
}

.lhtv-filters__field { display: grid; gap: var(--lhtv-s-1); }

.lhtv-filters__label {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

.lhtv-filters__input,
.lhtv-filters__select {
	padding: 9px 12px;
	min-width: 180px;
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-body);
	font-size: var(--lhtv-fs-small);
}

.lhtv-filters__topics {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-2);
	border: 0;
	margin: 0;
	padding: 0;
}

.lhtv-library__item.is-hidden { display: none; }

.lhtv-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-2);
	list-style: none;
	margin: var(--lhtv-s-7) 0 0;
	padding: 0;
	justify-content: center;
}

.lhtv-pagination a,
.lhtv-pagination span {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-chip);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	text-decoration: none;
	color: var(--lhtv-text);
}

.lhtv-pagination .current {
	background: var(--lhtv-accent);
	border-color: var(--lhtv-accent);
	color: var(--lhtv-bg);
}

/* --------------------------------------------------------------------------
   Series archive
   -------------------------------------------------------------------------- */

.lhtv-series { margin-block: var(--lhtv-s-7); }

.lhtv-series__header {
	display: grid;
	gap: var(--lhtv-s-6);
	margin-bottom: var(--lhtv-s-8);
}

@media (min-width: 800px) {
	.lhtv-series__header { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
}

.lhtv-series__art img { border-radius: var(--lhtv-r-card); width: 100%; height: auto; display: block; }

.lhtv-series__eyebrow {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-accent);
	margin: 0 0 var(--lhtv-s-2);
}

.lhtv-series__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-series__stats { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); margin: 0 0 var(--lhtv-s-4); }
.lhtv-series__description { color: var(--lhtv-text-dim); margin-bottom: var(--lhtv-s-5); max-width: 65ch; }

.lhtv-series__list { list-style: none; margin: 0; padding: 0; counter-reset: none; }

.lhtv-series__row + .lhtv-series__row { border-top: 1px solid var(--lhtv-border); }

.lhtv-series__row-link {
	display: grid;
	grid-template-columns: 40px 160px minmax(0, 1fr) auto;
	gap: var(--lhtv-s-4);
	align-items: center;
	padding: var(--lhtv-s-4) 0;
	color: inherit;
	text-decoration: none;
	transition: background-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-series__row-link:hover { background: var(--lhtv-surface); text-decoration: none; }

.lhtv-series__row-number {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h3);
	color: var(--lhtv-text-dim);
	text-align: center;
}

.lhtv-series__row-art img { border-radius: var(--lhtv-r-chip); width: 100%; height: auto; display: block; }

.lhtv-series__row-title {
	display: block;
	font-family: var(--lhtv-font-ui);
	font-weight: 600;
	margin-bottom: var(--lhtv-s-1);
}

.lhtv-series__row-excerpt { display: block; color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); }

.lhtv-series__row-duration {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
	white-space: nowrap;
}

@media (max-width: 700px) {
	.lhtv-series__row-link { grid-template-columns: 32px 100px minmax(0, 1fr); }
	.lhtv-series__row-duration { display: none; }
	.lhtv-series__row-excerpt { display: none; }
}

/* --------------------------------------------------------------------------
   Mission, give band, signup, siblings
   -------------------------------------------------------------------------- */

.lhtv-mission {
	display: grid;
	gap: var(--lhtv-s-6);
	align-items: center;
}

@media (min-width: 800px) {
	.lhtv-mission { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); }
}

.lhtv-mission__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h2);
	text-transform: uppercase;
	margin: 0 0 var(--lhtv-s-4);
}

.lhtv-mission__text { color: var(--lhtv-text-dim); max-width: 55ch; margin: 0 0 var(--lhtv-s-5); }
.lhtv-mission__media img { border-radius: var(--lhtv-r-card); width: 100%; height: auto; display: block; }

.lhtv-give-band {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--lhtv-s-5);
	padding: var(--lhtv-s-7) var(--lhtv-s-5);
	background: var(--lhtv-accent);
	color: var(--lhtv-bg);
	text-align: center;
}

.lhtv-give-band__text {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-h3);
	font-weight: 600;
	margin: 0;
	max-width: 50ch;
}

.lhtv-signup {
	padding: var(--lhtv-s-6);
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-panel);
}

.lhtv-signup__title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h2);
	text-transform: uppercase;
	margin: 0 0 var(--lhtv-s-2);
}

.lhtv-signup__body { color: var(--lhtv-text-dim); margin: 0 0 var(--lhtv-s-4); }

.lhtv-signup__form { display: flex; flex-wrap: wrap; gap: var(--lhtv-s-2); }

.lhtv-signup__input {
	flex: 1 1 240px;
	padding: 12px 14px;
	background: var(--lhtv-bg);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-card);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-body);
	font-size: var(--lhtv-fs-body);
}

.lhtv-siblings__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--lhtv-s-4);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-siblings__link {
	display: block;
	padding: var(--lhtv-s-4);
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-card);
	color: inherit;
	text-decoration: none;
	transition: border-color var(--lhtv-t-hover) var(--lhtv-ease);
}

.lhtv-siblings__link:hover { border-color: var(--lhtv-accent); text-decoration: none; }

.lhtv-siblings__name {
	display: block;
	font-family: var(--lhtv-font-ui);
	font-weight: 600;
	margin-bottom: var(--lhtv-s-1);
}

.lhtv-siblings__blurb { display: block; color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); }

/* --------------------------------------------------------------------------
   Give and contact
   -------------------------------------------------------------------------- */

.lhtv-give__primary { margin-block: var(--lhtv-s-6); }
.lhtv-give__pending { color: var(--lhtv-text-dim); font-style: italic; }
.lhtv-give__other h2 { font-family: var(--lhtv-font-display); font-size: var(--lhtv-fs-h2); text-transform: uppercase; }
.lhtv-give__other ul { padding-left: 1.2em; }
.lhtv-give__other address { font-style: normal; color: var(--lhtv-text-dim); }
.lhtv-give__legal { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); margin-top: var(--lhtv-s-6); }

.lhtv-contact {
	display: grid;
	gap: var(--lhtv-s-7);
	margin-block: var(--lhtv-s-6);
}

@media (min-width: 900px) {
	.lhtv-contact { grid-template-columns: minmax(0, 1fr) 260px; align-items: start; }
}

.lhtv-contact__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lhtv-field { display: grid; gap: var(--lhtv-s-2); margin-bottom: var(--lhtv-s-4); }

.lhtv-field label {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
}

.lhtv-field input[type="text"],
.lhtv-field input[type="email"],
.lhtv-field textarea {
	padding: 12px 14px;
	background: var(--lhtv-surface);
	border: 1px solid var(--lhtv-border);
	border-radius: var(--lhtv-r-card);
	color: var(--lhtv-text);
	font-family: var(--lhtv-font-body);
	font-size: var(--lhtv-fs-body);
	width: 100%;
}

.lhtv-field--check {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	column-gap: var(--lhtv-s-3);
}

.lhtv-field--check .lhtv-field__help { grid-column: 2; margin: 0; }
.lhtv-field__help { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); }

.lhtv-contact__aside { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); }

.lhtv-notice {
	padding: var(--lhtv-s-4);
	border-radius: var(--lhtv-r-card);
	border-left: 3px solid;
	margin-bottom: var(--lhtv-s-5);
	background: var(--lhtv-surface);
}

.lhtv-notice--success { border-left-color: var(--lhtv-success); }
.lhtv-notice--error { border-left-color: var(--lhtv-live); }
.lhtv-notice p { margin: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.lhtv-footer {
	margin-top: var(--lhtv-s-10);
	border-top: 1px solid var(--lhtv-border);
	background: var(--lhtv-surface);
}

.lhtv-footer__inner {
	max-width: var(--lhtv-shell);
	margin-inline: auto;
	padding: var(--lhtv-s-8) var(--lhtv-s-5) var(--lhtv-s-6);
	display: grid;
	gap: var(--lhtv-s-7);
}

.lhtv-footer__blurb { color: var(--lhtv-text-dim); font-size: var(--lhtv-fs-small); max-width: 44ch; }

.lhtv-footer__links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--lhtv-s-6);
}

.lhtv-footer__heading {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
	margin: 0 0 var(--lhtv-s-3);
}

.lhtv-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--lhtv-s-2); }
.lhtv-footer__list a { color: var(--lhtv-text); text-decoration: none; font-size: var(--lhtv-fs-small); }
.lhtv-footer__list a:hover { color: var(--lhtv-accent); }

.lhtv-footer-meta { display: grid; gap: var(--lhtv-s-4); }

.lhtv-footer-meta__fm {
	display: inline-flex;
	align-items: center;
	gap: var(--lhtv-s-2);
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	font-weight: 600;
	color: var(--lhtv-accent);
	text-decoration: none;
	justify-self: start;
}

.lhtv-footer-meta__fm-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.lhtv-footer-meta__social,
.lhtv-footer-meta__apps {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lhtv-s-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

.lhtv-social {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
	text-decoration: none;
}

.lhtv-social:hover { color: var(--lhtv-accent); }

.lhtv-footer-meta__legal,
.lhtv-footer-meta__copyright,
.lhtv-footer__policies {
	color: var(--lhtv-text-dim);
	font-size: var(--lhtv-fs-small);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

.lhtv-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity var(--lhtv-t-panel) var(--lhtv-ease), transform var(--lhtv-t-panel) var(--lhtv-ease);
}

.lhtv-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	/* The pulse becomes a plain dot rather than a one-frame flicker. */
	.lhtv-live-badge__dot,
	.lhtv-live-pill__dot,
	.lhtv-switcher__dot.is-live {
		animation: none !important;
		transform: none !important;
		opacity: 1 !important;
	}

	.lhtv-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Editorial
   -------------------------------------------------------------------------- */

.lhtv-lede {
	font-size: var(--lhtv-fs-h3);
	line-height: 1.5;
	color: var(--lhtv-text);
	max-width: 60ch;
}

/* Scripture pull quotes only, and sparingly. */
.lhtv-scripture {
	border-left: 3px solid var(--lhtv-accent);
	padding-left: var(--lhtv-s-5);
	margin-block: var(--lhtv-s-7);
}

.lhtv-scripture p {
	font-family: var(--lhtv-font-accent);
	font-size: var(--lhtv-fs-h2);
	font-style: italic;
	line-height: 1.3;
	margin: 0 0 var(--lhtv-s-2);
}

.lhtv-scripture cite {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-micro);
	font-style: normal;
	font-weight: 600;
	letter-spacing: var(--lhtv-track-micro);
	text-transform: uppercase;
	color: var(--lhtv-text-dim);
}

.lhtv-main .wp-block-post-title {
	font-family: var(--lhtv-font-display);
	font-size: var(--lhtv-fs-h1);
	line-height: 1.05;
	margin-block: var(--lhtv-s-7) var(--lhtv-s-5);
}

.lhtv-library__intro {
	color: var(--lhtv-text-dim);
	max-width: 60ch;
	margin-bottom: var(--lhtv-s-3);
}

.lhtv-main .wp-block-post-date {
	font-family: var(--lhtv-font-ui);
	font-size: var(--lhtv-fs-small);
	color: var(--lhtv-text-dim);
}
