/*
Theme Name: Hineni Child
Theme URI: https://hinenilife.com
Description: Child theme for Blocksy — custom homepage, series navigation and branding for Hineni Life (hinenilife.com).
Author: Donny Kurien
Author URI: https://hinenilife.com
Template: blocksy
Version: 1.0.0
Text Domain: hineni-child
*/

/* ==========================================================================
   Bump the Version above whenever you change CSS or JS. Assets are enqueued
   with wp_get_theme()->get('Version'), so a bump busts the browser cache.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	--hnl-ink:        #16203a;   /* headings */
	--hnl-body:       #47516480; /* (unused placeholder, see --hnl-text) */
	--hnl-text:       #414b5e;   /* body copy */
	--hnl-muted:      #77808f;   /* meta, dates */
	--hnl-brand:      #b4531f;   /* ember — primary action */
	--hnl-brand-dark: #8f3f14;
	--hnl-accent:     #d99b3f;   /* amber — highlights, eyebrow */
	--hnl-deep:       #101a30;   /* night — hero, footer */
	--hnl-paper:      #fffdf9;   /* page background */
	--hnl-sand:       #f7f2e9;   /* soft band background */
	--hnl-line:       #e8e0d3;   /* hairlines */

	--hnl-radius:     14px;
	--hnl-radius-lg:  22px;
	--hnl-shadow:     0 10px 30px rgba(22, 32, 58, .08);
	--hnl-shadow-lg:  0 24px 60px rgba(22, 32, 58, .16);
	--hnl-max:        1180px;
	--hnl-serif:      "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

	/* Per-section accent; each section overrides --sec. */
	--sec:            var(--hnl-brand);
	--hnl-motif-w:    460px;
	--hnl-motif-op:   .09;
}

/* --------------------------------------------------------------------------
   2. Homepage shell
   -------------------------------------------------------------------------- */
.hnl-home {
	background: var(--hnl-paper);
	color: var(--hnl-text);
	overflow-x: hidden;
}

.hnl-home img { max-width: 100%; height: auto; }

/* Blocksy wraps the content area; let our sections bleed edge to edge. */
.hnl-home .ct-container,
.hnl-home .ct-container-full { max-width: none; padding: 0; }

/* Every section is full-width (so tints and motifs reach the screen edges);
   only the inner wrapper is constrained. This is the rule that makes coloured
   bands work — constraining the section itself would box the background in. */
.hnl-sec {
	position: relative;
	overflow: hidden;
	padding: clamp(48px, 6vw, 82px) 0;
}
.hnl-sec__inner {
	position: relative;
	z-index: 1;
	max-width: var(--hnl-max);
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 28px);
}
.hnl-sec--tint { background: color-mix(in srgb, var(--sec) 5%, var(--hnl-paper)); }
.hnl-sec--sand { background: var(--hnl-sand); }
.hnl-sec--deep { background: var(--hnl-deep); color: #dfe5f0; }

/* Faint decorative motif, tinted to the section colour via mask. */
.hnl-sec[data-motif]::after {
	content: "";
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: var(--hnl-motif-w, 460px);
	height: var(--hnl-motif-w, 460px);
	background: var(--sec);
	opacity: var(--hnl-motif-op, .09);
	-webkit-mask: var(--motif) no-repeat center / contain;
	mask: var(--motif) no-repeat center / contain;
	pointer-events: none;
	z-index: 0;
}

/* Section head */
.hnl-sec__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
.hnl-sec__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--sec);
	margin: 0 0 8px;
}
.hnl-sec__eyebrow::before {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--sec);
	border-radius: 2px;
}
.hnl-sec__title {
	font-family: var(--hnl-serif);
	font-size: clamp(26px, 3.2vw, 38px);
	line-height: 1.15;
	color: var(--hnl-ink);
	margin: 0;
	font-weight: 700;
}
.hnl-sec--deep .hnl-sec__title { color: #fff; }
.hnl-sec__sub {
	margin: 8px 0 0;
	color: var(--hnl-muted);
	font-size: 15.5px;
	max-width: 62ch;
}
.hnl-sec--deep .hnl-sec__sub { color: #aab6cc; }
.hnl-sec__all {
	flex: none;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--sec);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
}
.hnl-sec__all:hover,
.hnl-sec__all:focus-visible { border-bottom-color: currentColor; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.hnl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15.5px;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.hnl-btn--primary {
	background: var(--hnl-brand);
	color: #fff;
	box-shadow: 0 10px 24px rgba(180, 83, 31, .34);
}
.hnl-btn--primary:hover { background: var(--hnl-brand-dark); color: #fff; transform: translateY(-1px); }
.hnl-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .5);
}
.hnl-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.hnl-btn--quiet {
	background: #fff;
	color: var(--hnl-ink);
	border-color: var(--hnl-line);
	box-shadow: var(--hnl-shadow);
}
.hnl-btn--quiet:hover { border-color: var(--sec); color: var(--sec); }

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hnl-hero {
	position: relative;
	/* Above the sections below, so the search dropdown is never painted over. */
	z-index: 30;
	padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
	background:
		linear-gradient(180deg, rgba(16, 26, 48, .58), rgba(16, 26, 48, .84)),
		var(--hero-img, url("assets/hero-bg.svg")) center / cover no-repeat;
	color: #fff;
	text-align: center;
	overflow: visible;
}
.hnl-hero__inner {
	max-width: 900px;
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 28px);
}
.hnl-hero__eyebrow {
	font-family: var(--hnl-serif);
	font-style: italic;
	font-size: clamp(15px, 1.9vw, 18px);
	color: var(--hnl-accent);
	margin: 0 0 18px;
	line-height: 1.5;
}
.hnl-hero__title {
	font-family: var(--hnl-serif);
	font-weight: 700;
	font-size: clamp(38px, 6.4vw, 68px);
	line-height: 1.05;
	letter-spacing: -.01em;
	margin: 0 0 18px;
	color: #fff;
}
.hnl-hero__title em { font-style: italic; color: var(--hnl-accent); }
.hnl-hero__sub {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.6;
	color: #ccd5e6;
	margin: 0 auto 28px;
	max-width: 60ch;
}
.hnl-hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

/* Search — the input keeps a solid white background even over a dark hero
   image, otherwise typed text is invisible. */
.hnl-search {
	position: relative;
	max-width: 560px;
	margin: 0 auto 22px;
}
.hnl-search__field {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 999px;
	padding: 6px 6px 6px 20px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}
.hnl-search__icon { flex: none; color: var(--hnl-muted); line-height: 0; }
.hnl-search input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: #fff;
	color: var(--hnl-ink);
	font-size: 16px;
	padding: 10px 0;
	box-shadow: none;
}
.hnl-search input[type="search"]::placeholder { color: #98a1b0; }
.hnl-search__go {
	flex: none;
	border: 0;
	cursor: pointer;
	background: var(--hnl-brand);
	color: #fff;
	border-radius: 999px;
	min-height: 40px;
	padding: 0 20px;
	font-weight: 700;
	font-size: 14.5px;
}
.hnl-search__go:hover { background: var(--hnl-brand-dark); }

.hnl-search__results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 10px);
	background: #fff;
	color: var(--hnl-text);
	border-radius: var(--hnl-radius);
	box-shadow: var(--hnl-shadow-lg);
	text-align: left;
	padding: 8px;
	max-height: 62vh;
	overflow-y: auto;
	z-index: 40;
}
.hnl-sr__label {
	margin: 8px 10px 4px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--hnl-muted);
}
.hnl-sr__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--hnl-ink);
	font-size: 15px;
}
.hnl-sr__item:hover { background: var(--hnl-sand); color: var(--hnl-brand); }
.hnl-sr__item img,
.hnl-sr__ph {
	width: 46px;
	height: 34px;
	flex: none;
	object-fit: cover;
	border-radius: 6px;
	background: var(--hnl-sand);
}
.hnl-sr__empty { margin: 14px; color: var(--hnl-muted); font-size: 14.5px; }

/* Topic chips */
.hnl-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hnl-chips a {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	color: #eef2fa;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
}
.hnl-chips a:hover { background: rgba(255, 255, 255, .24); color: #fff; }

/* Language switcher (Polylang) */
.hnl-langs {
	display: flex;
	gap: 6px;
	justify-content: center;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.hnl-langs a {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #c8d2e6;
	text-decoration: none;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .2);
}
.hnl-langs .is-current a,
.hnl-langs a:hover { background: var(--hnl-accent); color: #24180a; border-color: transparent; }

/* --------------------------------------------------------------------------
   5. Today — featured latest + recent list
   -------------------------------------------------------------------------- */
.hnl-today { --sec: #b4531f; }
.hnl-today__grid {
	display: grid;
	grid-template-columns: 1.25fr .85fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: start;
}
.hnl-feat {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid var(--hnl-line);
	border-radius: var(--hnl-radius-lg);
	overflow: hidden;
	box-shadow: var(--hnl-shadow);
	transition: transform .18s ease, box-shadow .18s ease;
}
.hnl-feat:hover { transform: translateY(-3px); box-shadow: var(--hnl-shadow-lg); }
.hnl-feat__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #1d2b4a, #b4531f);
}
.hnl-feat__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hnl-feat__body { padding: 22px 24px 26px; }
.hnl-feat__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--hnl-muted);
	margin-bottom: 10px;
}
.hnl-feat__title {
	font-family: var(--hnl-serif);
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.22;
	color: var(--hnl-ink);
	margin: 0 0 10px;
	font-weight: 700;
}
.hnl-feat:hover .hnl-feat__title { color: var(--hnl-brand); }
.hnl-feat__excerpt { margin: 0 0 16px; font-size: 15.5px; line-height: 1.65; }
.hnl-feat__more { font-weight: 700; color: var(--hnl-brand); font-size: 15px; }

.hnl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hnl-list__item {
	background: #fff;
	border: 1px solid var(--hnl-line);
	border-radius: var(--hnl-radius);
	transition: border-color .16s ease, transform .16s ease;
}
.hnl-list__item:hover { border-color: var(--sec); transform: translateX(2px); }
.hnl-list__link {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
}
.hnl-list__thumb {
	width: 74px;
	height: 56px;
	flex: none;
	border-radius: 9px;
	object-fit: cover;
	background: var(--hnl-sand);
}
.hnl-list__title {
	margin: 0 0 4px;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--hnl-ink);
	font-family: var(--hnl-serif);
}
.hnl-list__link:hover .hnl-list__title { color: var(--sec); }
.hnl-list__date { margin: 0; font-size: 12.5px; color: var(--hnl-muted); }

/* --------------------------------------------------------------------------
   6. Series — the sequential journey (Exodus etc.)
   -------------------------------------------------------------------------- */
.hnl-series { --sec: #2b6c66; }
.hnl-series__bar {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--hnl-line);
	border-radius: var(--hnl-radius-lg);
	padding: 18px 22px;
	margin-bottom: 26px;
	box-shadow: var(--hnl-shadow);
}
.hnl-series__count {
	font-family: var(--hnl-serif);
	font-size: 30px;
	font-weight: 700;
	color: var(--sec);
	line-height: 1;
}
.hnl-series__label { flex: 1 1 220px; font-size: 15px; margin: 0; }
.hnl-series__label strong { color: var(--hnl-ink); }
.hnl-series__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hnl-series__track {
	height: 6px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--sec) 18%, #fff);
	flex: 1 1 100%;
	overflow: hidden;
}
.hnl-series__fill { display: block; height: 100%; background: var(--sec); border-radius: 999px; }

/* --------------------------------------------------------------------------
   7. Card carousel — ONE renderer, reused for every row
   -------------------------------------------------------------------------- */
.hnl-carousel { position: relative; }
.hnl-carousel__track {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 4px 2px 14px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.hnl-carousel__track::-webkit-scrollbar { height: 6px; }
.hnl-carousel__track::-webkit-scrollbar-thumb {
	background: color-mix(in srgb, var(--sec) 35%, transparent);
	border-radius: 999px;
}
.hnl-carousel__nav {
	position: absolute;
	top: 38%;
	z-index: 3;
	width: 44px;
	height: 44px;      /* ≥44px tap target */
	border-radius: 50%;
	border: 1px solid var(--hnl-line);
	background: #fff;
	color: var(--hnl-ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--hnl-shadow);
	display: grid;
	place-items: center;
}
.hnl-carousel__nav:hover { background: var(--sec); color: #fff; border-color: transparent; }
.hnl-carousel__nav--prev { left: -14px; }
.hnl-carousel__nav--next { right: -14px; }
.hnl-carousel__nav[hidden] { display: none; }

.hnl-card {
	flex: 0 0 clamp(230px, 27vw, 288px);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--hnl-line);
	border-radius: var(--hnl-radius);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hnl-card:hover { transform: translateY(-4px); box-shadow: var(--hnl-shadow-lg); border-color: transparent; }
.hnl-card__link { display: block; text-decoration: none; color: inherit; height: 100%; }
.hnl-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--hnl-sand);
	overflow: hidden;
}
.hnl-card--square .hnl-card__media { aspect-ratio: 1 / 1; }
.hnl-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hnl-card__img--ph {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--sec) 45%, #fff), transparent 60%),
		linear-gradient(135deg, color-mix(in srgb, var(--sec) 22%, #fff), var(--hnl-sand));
}
.hnl-card__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 17px;
}
.hnl-card__badge {
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: rgba(0, 0, 0, .68);
	color: #fff;
	font-size: 11.5px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 999px;
}
.hnl-card__num {
	position: absolute;
	left: 8px;
	top: 8px;
	background: var(--sec);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
	letter-spacing: .04em;
}
.hnl-card__body { padding: 14px 16px 18px; }
.hnl-card__title {
	font-family: var(--hnl-serif);
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.32;
	color: var(--hnl-ink);
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hnl-card__link:hover .hnl-card__title { color: var(--sec); }
.hnl-card__meta { margin: 0; font-size: 12.5px; color: var(--hnl-muted); }
.hnl-card__lang {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .1em;
	padding: 2px 7px;
	border-radius: 999px;
	margin-bottom: 7px;
	background: var(--hnl-sand);
	color: var(--hnl-muted);
}
.hnl-card__lang--ml { background: #efe3f5; color: #6b3f83; }
.hnl-card__lang--en { background: #e2ecf7; color: #2b5c8a; }

/* --------------------------------------------------------------------------
   8. Start Here
   -------------------------------------------------------------------------- */
.hnl-start { --sec: #3b5aa6; }
.hnl-start__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.hnl-step {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid var(--hnl-line);
	border-radius: var(--hnl-radius);
	padding: 22px 20px 24px;
	position: relative;
	transition: transform .18s ease, box-shadow .18s ease;
}
.hnl-step:hover { transform: translateY(-4px); box-shadow: var(--hnl-shadow-lg); }
.hnl-step__n {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--sec) 12%, #fff);
	color: var(--sec);
	font-weight: 800;
	font-size: 14.5px;
	margin-bottom: 12px;
}
.hnl-step__title {
	font-family: var(--hnl-serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--hnl-ink);
	margin: 0 0 8px;
}
.hnl-step:hover .hnl-step__title { color: var(--sec); }
.hnl-step__excerpt { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--hnl-muted); }

/* --------------------------------------------------------------------------
   9. About band
   -------------------------------------------------------------------------- */
.hnl-about { --sec: #7a4a7d; }
.hnl-about__grid {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: clamp(22px, 4vw, 46px);
	align-items: center;
}
.hnl-about__photo {
	width: 210px;
	height: 210px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--hnl-shadow-lg);
	border: 5px solid #fff;
}
.hnl-about__photo--ph {
	background: linear-gradient(140deg, color-mix(in srgb, var(--sec) 35%, #fff), var(--hnl-sand));
}
.hnl-about__text { font-size: 16.5px; line-height: 1.72; }
.hnl-about__text p { margin: 0 0 14px; }

/* --------------------------------------------------------------------------
   10. Subscribe band
   -------------------------------------------------------------------------- */
.hnl-subscribe { --sec: var(--hnl-accent); }
.hnl-subscribe .hnl-sec__inner { max-width: 760px; text-align: center; }
.hnl-subscribe .hnl-sec__title { color: #fff; }
.hnl-subscribe__embed { margin-top: 22px; }
.hnl-subscribe__embed input[type="email"],
.hnl-subscribe__embed input[type="text"] {
	border-radius: 999px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, .3);
}
.hnl-subscribe__note {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px dashed rgba(255, 255, 255, .35);
	border-radius: var(--hnl-radius);
	font-size: 14.5px;
	color: #ccd5e6;
}

/* --------------------------------------------------------------------------
   11. Read — tabbed categories (one carousel, panels swap)
   -------------------------------------------------------------------------- */
.hnl-read { --sec: #2e5f8a; }
.hnl-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.hnl-tab {
	appearance: none;
	cursor: pointer;
	border: 1px solid var(--hnl-line);
	background: #fff;
	color: var(--hnl-text);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 14.5px;
	font-weight: 600;
	min-height: 40px;
}
.hnl-tab:hover { border-color: var(--sec); color: var(--sec); }
.hnl-tab.is-active {
	background: var(--sec);
	border-color: transparent;
	color: #fff;
}
.hnl-tab__count { opacity: .7; font-weight: 500; margin-left: 5px; }
/* Hidden panels keep their lazy images unloaded until the tab is opened. */
.hnl-panel[hidden] { display: none; }

/* --------------------------------------------------------------------------
   12. Scripture band
   -------------------------------------------------------------------------- */
.hnl-verse { --sec: var(--hnl-accent); text-align: center; }
.hnl-verse blockquote {
	font-family: var(--hnl-serif);
	font-size: clamp(21px, 3vw, 32px);
	line-height: 1.45;
	font-style: italic;
	color: #fff;
	margin: 0 auto 14px;
	max-width: 24ch;
	max-width: 62ch;
	border: 0;
	padding: 0;
}
.hnl-verse cite {
	display: block;
	font-style: normal;
	font-size: 13.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--hnl-accent);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. Watch (optional YouTube row)
   -------------------------------------------------------------------------- */
.hnl-watch { --sec: #a8322b; }

/* --------------------------------------------------------------------------
   14. Custom footer
   -------------------------------------------------------------------------- */
.hnl-footer {
	background: var(--hnl-deep);
	color: #aab6cc;
	padding: 58px 0 30px;
	font-size: 15px;
}
.hnl-footer__inner {
	max-width: var(--hnl-max);
	margin-inline: auto;
	padding-inline: clamp(16px, 4vw, 28px);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 34px;
}
.hnl-footer h3 {
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 14px;
	font-weight: 700;
}
.hnl-footer__brand {
	font-family: var(--hnl-serif);
	font-size: 24px;
	color: #fff;
	margin: 0 0 10px;
	font-weight: 700;
}
.hnl-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hnl-footer a { color: #c3cde0; text-decoration: none; }
.hnl-footer a:hover { color: var(--hnl-accent); }
.hnl-footer__bottom {
	max-width: var(--hnl-max);
	margin: 34px auto 0;
	padding: 18px clamp(16px, 4vw, 28px) 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: #8794ab;
}
/* We render our own footer just before Blocksy's; hide the default one. */
.hnl-has-custom-footer .ct-footer { display: none; }

/* --------------------------------------------------------------------------
   15. Lightbox
   -------------------------------------------------------------------------- */
.hnl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(6, 10, 20, .88);
	display: grid;
	place-items: center;
	padding: 20px;
}
.hnl-lightbox[hidden] { display: none; }
.hnl-lightbox__body { width: min(960px, 100%); }
.hnl-lightbox__video { position: relative; aspect-ratio: 16 / 9; }
.hnl-lightbox__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 12px; }
.hnl-lightbox__close {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   16. Scroll reveal + motion preferences
   -------------------------------------------------------------------------- */
.hnl-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s ease, transform .5s ease;
}
.hnl-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.hnl-reveal { opacity: 1; transform: none; transition: none; }
	.hnl-card, .hnl-feat, .hnl-step { transition: none; }
	.hnl-card:hover, .hnl-feat:hover, .hnl-step:hover { transform: none; }
	.hnl-carousel__track { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   17. Focus visibility (accessibility)
   -------------------------------------------------------------------------- */
.hnl-home a:focus-visible,
.hnl-home button:focus-visible,
.hnl-home input:focus-visible {
	outline: 3px solid var(--hnl-accent);
	outline-offset: 3px;
	border-radius: 6px;
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
	.hnl-today__grid { grid-template-columns: 1fr; }
	.hnl-about__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.hnl-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
	.hnl-carousel__nav { display: none; }   /* touch users swipe */
	.hnl-carousel__track { padding-inline: 2px; }
	.hnl-footer__inner { grid-template-columns: 1fr; }
	.hnl-sec[data-motif]::after { --hnl-motif-w: 260px; opacity: calc(var(--hnl-motif-op, .09) * .7); }
	.hnl-search__go { padding: 0 15px; }
	.hnl-about__photo { width: 160px; height: 160px; }
}

/* --------------------------------------------------------------------------
   19. Single-post polish (reading comfort for daily meditations)
   -------------------------------------------------------------------------- */
.single-post .entry-content {
	font-size: 17.5px;
	line-height: 1.78;
}
.single-post .entry-content h2,
.single-post .entry-content h3 {
	font-family: var(--hnl-serif);
	color: var(--hnl-ink);
}
.single-post .entry-content blockquote {
	border-left: 4px solid var(--hnl-accent);
	background: var(--hnl-sand);
	padding: 16px 20px;
	border-radius: 0 var(--hnl-radius) var(--hnl-radius) 0;
	font-family: var(--hnl-serif);
	font-style: italic;
}
