/* -----------------------------------------------------------------------
   Homepage (page-homepage.php)
   RTL-first, logical properties only. Builds on the theme variables in
   style.css and adds homepage-local accents below.
   ----------------------------------------------------------------------- */

.home-page {
	--home-ink: #14141b;
	--home-ink-soft: #23232d;
	--home-fb: #1877f2;
	--home-fb-deep: #0b4dbb;
	--home-sun: #ffd43b;
	--home-sun-deep: #f5a623;

	/* Shared motion language for every hover/transition effect on the homepage. */
	--home-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--home-dur-fast: 0.18s;
	--home-dur: 0.3s;
	--home-dur-slow: 0.5s;

	display: grid;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	padding-block-start: 25px;
	padding-block-end: clamp(2.5rem, 5vw, 4.5rem);
}

/*
 * Sections carry .container themselves. Inside a grid, the container's auto
 * inline margins cancel the default stretch, so a section whose cards hold
 * only absolutely-positioned content (e.g. the branded cards) would collapse
 * to zero width. Full width restores stretch; max-width still caps it.
 */
.home-page .container {
	inline-size: 100%;
}

/* -----------------------------------------------------------------------
   Shared pieces
   ----------------------------------------------------------------------- */
.home-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-block-end: 1.5rem;
}

.home-section-head__kicker {
	display: inline-block;
	margin-block-end: 0.35rem;
	padding: 0.2em 0.75em;
	border-radius: 999px;
	background: var(--shivuk-color-accent);
	color: var(--shivuk-color-accent-contrast);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.home-section-head__title {
	margin: 0;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	position: relative;
	padding-inline-start: 0.75rem;
}

.home-section-head__title::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	inset-block: 0.18em;
	inline-size: 4px;
	border-radius: 2px;
	background: var(--shivuk-color-accent);
}

.home-section-head__more {
	white-space: nowrap;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	/* Optically sit on the title's baseline (descender-gap difference). */
	padding-block-end: 0.2em;
}

.home-section-head__more:hover,
.home-section-head__more:focus {
	text-decoration: underline;
}

/* .home-btn base + .home-btn--dark now live in style.css (global) —
   shivuk_dreamjob_banner()'s CTA is reused as-is on single posts, not just
   here. The other variants below stay homepage-local. */

.home-btn--light {
	background: #ffffff;
	color: var(--home-fb-deep);
}

.home-btn--light:hover,
.home-btn--light:focus {
	color: var(--shivuk-color-accent);
}

.home-btn--outline {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #ffffff;
}

.home-btn--outline:hover,
.home-btn--outline:focus {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.home-btn--accent {
	background: var(--shivuk-color-accent);
	color: var(--shivuk-color-accent-contrast);
}

.home-btn--accent:hover,
.home-btn--accent:focus {
	color: var(--shivuk-color-accent-contrast);
}

/* .home-cat and .home-thumb-empty now live in style.css (global) — both are
   reused by shivuk_home_card()'s 'tile' variant on single-post related
   articles, not just here. */

/* Post grids */
.home-grid {
	display: grid;
	gap: var(--shivuk-space);
}

.home-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* -----------------------------------------------------------------------
   Card variants
   ----------------------------------------------------------------------- */

/* .home-tile* now lives in style.css (global) — shivuk_home_card()'s 'tile'
   variant is reused as-is for single-post related articles, not just here. */

/* Row: compact horizontal box — hairline border, larger thumb, and an
   accent bar that slides down the start edge on hover. */
.home-row-card {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	padding: 0.55rem;
	border-radius: var(--shivuk-radius);
	background: var(--shivuk-color-bg);
	border: 1px solid var(--shivuk-color-border);
	box-shadow: var(--shivuk-shadow-sm);
	transition: box-shadow var(--home-dur) var(--home-ease);
}

.home-row-card::before {
	content: "";
	position: absolute;
	inset-block: 0.55rem;
	inset-inline-start: 0;
	inline-size: 3px;
	border-start-end-radius: 999px;
	border-end-end-radius: 999px;
	background: var(--shivuk-color-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform var(--home-dur) var(--home-ease);
}

.home-row-card:hover {
	box-shadow: var(--shivuk-shadow-card-hover);
}

.home-row-card:hover::before,
.home-row-card:focus-within::before {
	transform: scaleY(1);
}

.home-row-card__thumb {
	display: block;
	aspect-ratio: 1;
	border-radius: calc(var(--shivuk-radius) - 4px);
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(20, 20, 25, 0.06);
}

.home-row-card__thumb img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.home-row-card__title {
	margin: 0 0 0.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-row-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-row-card__title a:hover,
.home-row-card__title a:focus {
	color: var(--shivuk-color-accent);
}

.home-row-card__date {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: var(--shivuk-color-muted);
	font-size: 0.78rem;
}

/* Small accent dot in front of the date — ties the light cards to the
   accent language without colouring whole surfaces. */
.home-row-card__date::before {
	content: "";
	inline-size: 5px;
	block-size: 5px;
	border-radius: 50%;
	background: var(--shivuk-color-accent);
	opacity: 0.55;
}

/* Line: numbered text item */
.home-line-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	padding-block: 0.9rem;
	border-block-end: 1px solid var(--shivuk-color-border);
}

.home-line-card:last-child {
	border-block-end: 0;
}

.home-line-card__num {
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
	color: var(--shivuk-color-accent);
	opacity: 0.45;
	min-inline-size: 1.4ch;
	text-align: center;
}

.home-line-card__title {
	margin: 0 0 0.2rem;
	font-size: 1.02rem;
	line-height: 1.45;
}

.home-line-card__title a {
	color: inherit;
	text-decoration: none;
}

.home-line-card__title a:hover,
.home-line-card__title a:focus {
	color: var(--shivuk-color-accent);
}

.home-line-card__date {
	color: var(--shivuk-color-muted);
	font-size: 0.8rem;
}

/* -----------------------------------------------------------------------
   1. Hero
   ----------------------------------------------------------------------- */
.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

/* Right column: the big hero card, with one small row underneath. The column
   is stretched by the grid to exactly match the left column's height, and the
   hero card (flex-grow) fills whatever is left over — no manual sizing, no
   gaps. The left column's own cards/banner are kept compact (see below) so
   that height stays modest instead of ballooning the hero. */
.home-hero__main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.home-hero__main .home-hero-card {
	flex-grow: 1;
	min-block-size: 0;
}

.home-hero__below {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	flex-shrink: 0;
}

/* Left column: four small cards stacked, then the Facebook banner at the
   bottom. Its natural height (four cards + banner) sets the row's height;
   the hero column stretches to match it. */
.home-hero__side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* .home-fb-mini itself now lives in style.css (global) — it's shared with
   the sidebar's community/social widget (SHIVUK_Widget_Community_Social in
   inc/widgets.php), which renders on every template with a sidebar, not
   just the homepage where this file loads. */

@media (prefers-reduced-motion: reduce) {
	.home-row-card::before,
	.home-feed-card::before,
	.home-hero-card__body::before {
		transition: none;
	}
}

.home-hero-card {
	position: relative;
	border-radius: var(--shivuk-radius-lg);
	overflow: hidden;
	box-shadow: var(--shivuk-shadow-md);
	min-block-size: 340px;
	transition: box-shadow var(--home-dur) var(--home-ease);
}

/* Hairline glass ring just inside the edge — separates the photo from the
   page without a heavy frame. Sits above the scrim, below the link. */
.home-hero-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
	pointer-events: none;
	z-index: 1;
}

.home-hero-card:hover {
	box-shadow: var(--shivuk-shadow-card-hover);
}

.home-hero-card__link {
	display: block;
	block-size: 100%;
	color: #ffffff;
	text-decoration: none;
}

.home-hero-card__media,
.home-hero-card__media img {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
}

.home-hero-card__media img {
	object-fit: cover;
}

.home-hero-card__media .home-thumb-empty {
	position: absolute;
	inset: 0;
}

.home-hero-card__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(8, 10, 14, 0.92) 0%, rgba(8, 10, 14, 0.55) 42%, rgba(8, 10, 14, 0.08) 75%, transparent 100%),
		linear-gradient(to bottom, rgba(8, 10, 14, 0.35) 0%, transparent 30%),
		linear-gradient(to top, color-mix(in srgb, var(--shivuk-color-accent) 22%, transparent), transparent 45%);
}

.home-hero-card__body {
	position: absolute;
	inset-block-end: 0;
	inset-inline: 0;
	padding: clamp(1.5rem, 3.2vw, 2.5rem);
}

/* Short accent bar above the headline; stretches a little on hover. */
.home-hero-card__body::before {
	content: "";
	display: block;
	inline-size: 3.25rem;
	block-size: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--shivuk-color-accent), color-mix(in srgb, var(--shivuk-color-accent) 45%, transparent));
	margin-block-end: 0.9rem;
	transition: inline-size var(--home-dur-slow) var(--home-ease);
}

.home-hero-card:hover .home-hero-card__body::before {
	inline-size: 5.5rem;
}

.home-hero-card__title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.6rem, 3.4vw, 2.45rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.08;
	color: #ffffff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.home-hero-card__excerpt {
	margin: 0 0 0.9rem;
	max-inline-size: 60ch;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Category + publish date sit together as one meta row now (previously the
   category floated as its own badge in the card's top-left corner). */
.home-hero-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
}

/* Glass pill, matching the category chip beside it. */
.home-hero-card__date {
	display: inline-flex;
	align-items: center;
	padding: 0.35em 0.9em;
	border-radius: 999px;
	background: rgba(20, 20, 27, 0.45);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.82rem;
	letter-spacing: 0.01em;
}

.home-hero-card__meta .home-cat {
	background: rgba(20, 20, 27, 0.55);
	backdrop-filter: blur(8px) saturate(160%);
	-webkit-backdrop-filter: blur(8px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.35em 0.95em;
}

/* -----------------------------------------------------------------------
   2. Facebook banner
   ----------------------------------------------------------------------- */
/* (The standalone Facebook banner moved into the hero as .home-fb-mini.) */

/* -----------------------------------------------------------------------
   3. Branded community section
   ----------------------------------------------------------------------- */
/* The light counterpart of the page's dark panels: same dot-texture
   language, in a whisper of the accent over a soft gradient. */
.home-community__inner {
	background:
		radial-gradient(color-mix(in srgb, var(--shivuk-color-accent) 8%, transparent) 1px, transparent 1.5px),
		linear-gradient(165deg, var(--shivuk-color-accent-soft), #ffffff 85%);
	background-size: 16px 16px, auto;
	border: 1px solid var(--shivuk-color-border);
	border-radius: var(--shivuk-radius-lg);
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	box-shadow: var(--shivuk-shadow-sm);
}

.home-community__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: start;
}

/* Community profile card */
.home-member {
	position: relative;
	background: var(--shivuk-color-bg);
	border: 1px solid var(--shivuk-color-border);
	border-radius: var(--shivuk-radius-lg);
	box-shadow: var(--shivuk-shadow-sm);
	overflow: hidden;
	text-align: center;
	transition: box-shadow var(--home-dur) var(--home-ease);
}

/* Staggered rhythm: every second card sits a step lower. */
@media (min-width: 1025px) {
	.home-member:nth-child(even) {
		margin-block-start: 1.75rem;
	}
}

.home-member:hover {
	box-shadow: var(--shivuk-shadow-card-hover);
}

.home-member__cover {
	display: block;
	block-size: clamp(170px, 15vw, 220px);
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.home-member__cover img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.home-member__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	padding: 1rem 1rem 1.25rem;
}

/* Solid accent chip (the tile cards' language) pulled up to bridge the
   diagonal cut between the photo and the body, with a bg ring so it reads
   as its own layer over either surface. */
.home-member__body .home-cat {
	position: relative;
	z-index: 1;
	margin-block-start: -1.4rem;
	background: var(--shivuk-color-accent);
	color: var(--shivuk-color-accent-contrast);
	border: 2px solid var(--shivuk-color-bg);
	padding: 0.2em 0.85em;
	box-shadow: var(--shivuk-shadow-sm);
}

.home-member__title {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.45;
	font-weight: 700;
	color: var(--shivuk-color-text);
}

.home-member__title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--home-dur-fast) ease;
}

.home-member__title a:hover,
.home-member__title a:focus {
	color: var(--shivuk-color-accent);
}

/* -----------------------------------------------------------------------
   4. More articles
   ----------------------------------------------------------------------- */
/* .home-dreamjob itself now lives in style.css (global) — shivuk_dreamjob_banner()
   is reused as-is on single posts, not just here. This file still positions
   it via .home-grid--3 > .home-dreamjob below. */

/* -----------------------------------------------------------------------
   5+7. Duo columns
   ----------------------------------------------------------------------- */
.home-duo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}

/* Each column can be hidden independently from Settings → SHIVUK → תוכן
   ומדורים — if only one is enabled, don't leave the other's fixed track
   as a dead empty gap. */
.home-duo:has(.home-duo__col:only-child) {
	grid-template-columns: 1fr;
}

.home-duo__list {
	display: grid;
	gap: 0.85rem;
}

/* Opinions panel — editorial op-ed column. */
.home-opinions {
	--opinions-pad: 1.4rem;
	position: relative;
	background: var(--shivuk-color-bg);
	border: 1px solid var(--shivuk-color-border);
	border-radius: var(--shivuk-radius-lg);
	padding: var(--opinions-pad);
	overflow: hidden;
	box-shadow: var(--shivuk-shadow-sm);
}

/* Giant gershayim watermark. */
.home-opinions__mark {
	position: absolute;
	inset-block-start: -2.2rem;
	inset-inline-end: 0.5rem;
	font-size: 10rem;
	line-height: 1;
	font-weight: 800;
	color: var(--shivuk-color-accent);
	opacity: 0.08;
	pointer-events: none;
}

.home-opinion {
	position: relative;
	padding-block: 1rem;
	border-block-end: 1px dashed var(--shivuk-color-border);
	transition: transform var(--home-dur) var(--home-ease);
}

.home-opinion:last-child {
	border-block-end: 0;
	padding-block-end: 0;
}

/* Lead op-ed bleeds to the panel edges on a soft accent wash. */
.home-opinion--featured {
	margin: calc(-1 * var(--opinions-pad)) calc(-1 * var(--opinions-pad)) 0;
	padding: var(--opinions-pad);
	background: linear-gradient(160deg, var(--shivuk-color-accent-soft) 0%, transparent 80%);
	border-block-end: 1px solid var(--shivuk-color-border);
}

.home-opinion__title {
	margin: 0 0 0.55rem;
	font-size: 1.02rem;
	line-height: 1.5;
	font-weight: 600;
}

.home-opinion--featured .home-opinion__title {
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: 700;
	max-inline-size: 92%;
}

.home-opinion__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-opinion__title a:hover,
.home-opinion__title a:focus {
	color: var(--shivuk-color-accent);
}

/* Author signature row. */
.home-opinion__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
}

.home-opinion__avatar {
	display: grid;
	place-items: center;
	inline-size: 26px;
	block-size: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--shivuk-color-accent), #3b8bff);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 700;
	flex-shrink: 0;
}

.home-opinion__author {
	font-weight: 600;
}

.home-opinion__meta time {
	color: var(--shivuk-color-muted);
}

.home-opinion__meta time::before {
	content: "·";
	margin-inline-end: 0.5rem;
}

/* Guide/resource card — icon tile, badge, reading time, slide arrow. */
.home-guide {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	gap: 0.9rem;
	align-items: center;
	padding: 0.85rem 1rem;
	background: var(--shivuk-color-bg);
	border: 1px solid var(--shivuk-color-border);
	border-inline-start: 3px solid transparent;
	border-radius: var(--shivuk-radius);
	box-shadow: var(--shivuk-shadow-sm);
	transition: box-shadow var(--home-dur) var(--home-ease);
}

.home-guide:hover {
	box-shadow: var(--shivuk-shadow-card-hover);
}

.home-guide__icon {
	display: grid;
	place-items: center;
	inline-size: 52px;
	block-size: 52px;
	border-radius: 14px;
	background: var(--shivuk-color-accent-soft);
	color: var(--shivuk-color-accent);
	transition: background var(--home-dur) var(--home-ease), color var(--home-dur) var(--home-ease), transform var(--home-dur) var(--home-ease);
}

.home-guide:hover .home-guide__icon {
	background: var(--shivuk-color-accent);
	color: #ffffff;
	transform: rotate(-6deg) scale(1.05);
}

.home-guide__icon svg {
	inline-size: 26px;
	block-size: 26px;
}

.home-guide__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-guide__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-guide__title a:hover,
.home-guide__title a:focus {
	color: var(--shivuk-color-accent);
}

.home-guide__meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.78rem;
}

.home-guide__badge {
	padding: 0.12em 0.65em;
	border-radius: 999px;
	background: var(--shivuk-color-accent-soft);
	color: var(--shivuk-color-accent);
	font-weight: 700;
}

.home-guide__time {
	color: var(--shivuk-color-muted);
}

.home-guide__arrow {
	font-size: 1.15rem;
	color: var(--shivuk-color-muted);
	opacity: 0.5;
	transition: transform var(--home-dur) var(--home-ease), color var(--home-dur) var(--home-ease), opacity var(--home-dur) var(--home-ease);
}

.home-guide:hover .home-guide__arrow {
	color: var(--shivuk-color-accent);
	opacity: 1;
	/* Inline-forward nudge (leftwards in RTL). */
	transform: translateX(-4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-guide:hover .home-guide__icon,
	.home-guide:hover .home-guide__arrow {
		transform: none;
	}
}

/* Industry-news timeline. */
.home-newsline {
	position: relative;
	display: grid;
	gap: 1.35rem;
	padding-inline-start: 1.6rem;
}

/* The vertical line, fading out toward the older items. */
.home-newsline::before {
	content: "";
	position: absolute;
	inset-block: 6px;
	inset-inline-start: 5px;
	inline-size: 2px;
	border-radius: 1px;
	background: linear-gradient(to bottom, var(--shivuk-color-accent), var(--shivuk-color-border) 85%, transparent);
}

.home-news {
	position: relative;
}

.home-news__dot {
	position: absolute;
	inset-inline-start: -1.6rem;
	inset-block-start: 0.3rem;
	inline-size: 12px;
	block-size: 12px;
	border-radius: 50%;
	background: var(--shivuk-color-accent);
	border: 2px solid var(--shivuk-color-bg);
	box-shadow: 0 0 0 2px var(--shivuk-color-accent);
	transition: transform var(--home-dur) var(--home-ease);
}

.home-news:hover .home-news__dot {
	transform: scale(1.25);
}

/* Radar ping around the newest item's dot. */
.home-news:first-child .home-news__dot::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid var(--shivuk-color-accent);
	opacity: 0;
	animation: home-ping 2s ease-out infinite;
}

@keyframes home-ping {
	0% { transform: scale(0.5); opacity: 0.7; }
	80%, 100% { transform: scale(1.3); opacity: 0; }
}

.home-news__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: 0.25rem;
}

.home-news__time {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--shivuk-color-accent);
	letter-spacing: 0.02em;
}

.home-news__fresh {
	padding: 0.1em 0.6em;
	border-radius: 999px;
	background: var(--shivuk-color-accent);
	color: var(--shivuk-color-accent-contrast);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.home-news__title {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.45;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-news__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-news__title a:hover,
.home-news__title a:focus {
	color: var(--shivuk-color-accent);
}

@media (prefers-reduced-motion: reduce) {
	.home-news:first-child .home-news__dot::after {
		animation: none;
	}

	.home-news:hover .home-news__dot {
		transform: none;
	}
}

/* Editor's-pick pill — round thumb, category, sparkle. */
.home-pick {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.5rem;
	padding-inline-end: 1.1rem;
	background: var(--shivuk-color-surface);
	border: 1px solid transparent;
	border-radius: 999px;
	transition: background var(--home-dur) var(--home-ease);
}

.home-pick:hover {
	background: var(--shivuk-color-accent-soft);
}

.home-pick__thumb {
	display: block;
	inline-size: 56px;
	block-size: 56px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 0 2px var(--shivuk-color-bg), 0 0 0 4px var(--shivuk-color-border);
	transition: box-shadow var(--home-dur) var(--home-ease);
}

.home-pick:hover .home-pick__thumb {
	box-shadow: 0 0 0 2px var(--shivuk-color-bg), 0 0 0 4px var(--shivuk-color-accent);
}

.home-pick__thumb img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.home-pick__cat {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--shivuk-color-accent);
	letter-spacing: 0.03em;
	margin-block-end: 0.15rem;
}

.home-pick__title {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.4;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-pick__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-pick__title a:hover,
.home-pick__title a:focus {
	color: var(--shivuk-color-accent);
}

.home-pick__star {
	display: grid;
	place-items: center;
	color: var(--shivuk-color-accent);
	opacity: 0.4;
	transition: opacity var(--home-dur) var(--home-ease), transform var(--home-dur-slow) var(--home-ease);
}

.home-pick__star svg {
	inline-size: 18px;
	block-size: 18px;
}

.home-pick:hover .home-pick__star {
	opacity: 1;
	transform: rotate(180deg) scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
	.home-pick:hover .home-pick__star {
		transform: none;
	}
}

/* -----------------------------------------------------------------------
   6. Podcast (full-bleed)
   ----------------------------------------------------------------------- */
.home-podcast {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1200px 500px at 85% -10%, color-mix(in srgb, var(--shivuk-color-accent) 45%, transparent), transparent 60%),
		radial-gradient(900px 420px at 5% 110%, color-mix(in srgb, var(--shivuk-color-accent) 22%, transparent), transparent 60%),
		radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.5px),
		linear-gradient(160deg, #1b1b26, var(--home-ink));
	background-size: auto, auto, 18px 18px, auto;
	color: #ffffff;
	padding-block: clamp(3rem, 7vw, 5.5rem);
	min-block-size: min(78vh, 640px);
	display: grid;
	align-items: center;
}

.home-podcast__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	inline-size: 100%;
}

.home-podcast__badge {
	display: block;
	inline-size: 88px;
	block-size: 88px;
	margin-block-end: 1rem;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 0 0 6px color-mix(in srgb, var(--shivuk-color-accent) 22%, transparent),
		0 10px 26px rgba(0, 0, 0, 0.45);
}

/* Glass pill with a pulsing on-air dot — the podcast's "live" signal. */
.home-podcast__kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-block-end: 0.85rem;
	padding: 0.3em 0.95em;
	border-radius: 999px;
	background: color-mix(in srgb, var(--shivuk-color-accent) 20%, transparent);
	border: 1px solid color-mix(in srgb, var(--shivuk-color-accent) 50%, transparent);
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.home-podcast__kicker-dot {
	inline-size: 7px;
	block-size: 7px;
	border-radius: 50%;
	background: var(--shivuk-color-accent);
	box-shadow: 0 0 8px color-mix(in srgb, var(--shivuk-color-accent) 80%, transparent);
	animation: home-onair 2s ease-in-out infinite;
}

@keyframes home-onair {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
	.home-podcast__kicker-dot {
		animation: none;
	}
}

.home-podcast__title {
	margin: 0 0 0.6rem;
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.1;
	color: #ffffff;
}

/* Short accent rule under the title — same mark the hero and branded
   cards carry. */
.home-podcast__title::after {
	content: "";
	display: block;
	inline-size: 3.25rem;
	block-size: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--shivuk-color-accent), color-mix(in srgb, var(--shivuk-color-accent) 40%, transparent));
	margin-block-start: 0.75rem;
}

.home-podcast__sub {
	margin: 0 0 1.25rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.05rem;
	line-height: 1.65;
	max-inline-size: 46ch;
}

.home-podcast__cta {
	box-shadow: 0 8px 22px color-mix(in srgb, var(--shivuk-color-accent) 40%, transparent);
}

.home-podcast__cta-arrow {
	display: inline-block;
	transition: transform var(--home-dur) var(--home-ease);
}

/* Arrow nudges toward the reading direction (RTL: left). */
.home-podcast__cta:hover .home-podcast__cta-arrow,
.home-podcast__cta:focus .home-podcast__cta-arrow {
	transform: translateX(-4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-podcast__cta-arrow {
		transition: none;
	}
}

/* Background texture: a full-bleed row of equalizer bars behind the content,
   faded so it reads as ambient texture rather than a UI control. */
.home-podcast__wave {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	align-items: flex-end;
	gap: clamp(3px, 0.6vw, 8px);
	padding-inline: 0;
	opacity: 0.16;
	pointer-events: none;
}

.home-podcast__wave span {
	flex: 1 1 0;
	min-inline-size: 2px;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(to top, var(--shivuk-color-accent), transparent);
	animation: home-wave 2.4s ease-in-out infinite;
}

.home-podcast__wave span:nth-child(odd) { block-size: 45%; animation-duration: 2.1s; }
.home-podcast__wave span:nth-child(even) { block-size: 75%; animation-duration: 2.8s; }
.home-podcast__wave span:nth-child(3n) { block-size: 30%; animation-delay: 0.2s; }
.home-podcast__wave span:nth-child(4n) { animation-delay: 0.4s; }
.home-podcast__wave span:nth-child(5n) { block-size: 95%; animation-delay: 0.6s; }
.home-podcast__wave span:nth-child(7n) { animation-delay: 0.9s; animation-duration: 3.2s; }

@keyframes home-wave {
	0%, 100% { transform: scaleY(0.55); }
	50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
	.home-podcast__wave span {
		animation: none;
	}
}

/* The .home-episode card itself now lives in style.css (global) — like
   .home-cat and .home-thumb-empty before it, shivuk_home_card()'s 'episode'
   variant is reused off the homepage (the podcast single's "more episodes"
   rail). Only its homepage layout stays here. */
.home-podcast__episodes {
	display: grid;
	gap: 0.9rem;
}

/* -----------------------------------------------------------------------
   8. Branded content
   ----------------------------------------------------------------------- */
.home-branded__inner {
	background:
		radial-gradient(620px 320px at 88% -5%, rgba(255, 212, 59, 0.1), transparent 60%),
		radial-gradient(rgba(255, 212, 59, 0.05) 1px, transparent 1.5px),
		var(--home-ink-soft);
	background-size: auto, 18px 18px, auto;
	border-radius: var(--shivuk-radius-lg);
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	color: #ffffff;
	box-shadow: var(--shivuk-shadow-md);
}

/* Centered, mirrored header: gold rules of equal length flank the latin
   wordmark, so the whole head reads symmetric from either side. */
.home-branded__head {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 1.25rem;
	row-gap: 0.5rem;
	margin-block-end: 2rem;
}

.home-branded__head::before,
.home-branded__head::after {
	content: "";
	block-size: 1px;
}

/* RTL: grid column 1 renders on the right — each line goes gold beside
   the wordmark and fades toward its outer page edge. */
.home-branded__head::before {
	grid-row: 1;
	grid-column: 1;
	background: linear-gradient(to left, transparent, rgba(255, 212, 59, 0.5));
}

/* Pinned explicitly: in source order ::after follows the h2, so
   auto-placement would push it onto its own row otherwise. */
.home-branded__head::after {
	grid-row: 1;
	grid-column: 3;
	background: linear-gradient(to right, transparent, rgba(255, 212, 59, 0.5));
}

.home-branded__latin {
	grid-column: 2;
	text-align: center;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.14em;
	background: linear-gradient(90deg, var(--home-sun) 0%, #fff3c4 25%, var(--home-sun-deep) 55%, var(--home-sun) 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	direction: ltr;
	animation: home-shimmer 5s linear infinite;
}

@keyframes home-shimmer {
	to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.home-branded__latin {
		animation: none;
	}
}

.home-branded__title {
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1;
	color: rgba(255, 255, 255, 0.7);
}

/* Three identical cards, three equal columns — fully symmetric. */
.home-branded__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

/* Branded-content card — full-bleed cover on a glassy dark surface with a
   hairline border; below it a solid body opened by a short gold rule that
   stretches across the card on hover. Everything is legible at rest —
   hover only warms the border and deepens the shadow. */
.home-sponsor {
	display: flex;
	flex-direction: column;
	border-radius: var(--shivuk-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.09);
	overflow: hidden;
	transition: box-shadow var(--home-dur) var(--home-ease);
}

.home-sponsor:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.home-sponsor__link {
	display: flex;
	flex-direction: column;
	block-size: 100%;
	color: inherit;
	text-decoration: none;
}

.home-sponsor__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

/* Soft fade at the photo's foot so it settles into the body below. */
.home-sponsor__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 20, 27, 0.45), transparent 38%);
	pointer-events: none;
}

.home-sponsor__media img,
.home-sponsor__media .home-thumb-empty {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* Dark glass pill with a gold keyline — quieter than the old solid-gold
   badge, so the photo stays the hero. */
.home-sponsor__tag {
	position: absolute;
	inset-block-start: 0.75rem;
	inset-inline-start: 0.75rem;
	z-index: 1;
	padding: 0.3em 0.9em;
	border-radius: 999px;
	background: rgba(20, 20, 27, 0.72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 212, 59, 0.4);
	color: var(--home-sun);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.home-sponsor__body {
	padding: 1rem 1.15rem 1.2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* Short gold rule that grows across the card on hover. */
.home-sponsor__body::before {
	content: "";
	inline-size: 2.5rem;
	block-size: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--home-sun), var(--home-sun-deep));
	margin-block-end: 0.75rem;
	transition: inline-size var(--home-dur-slow) var(--home-ease);
}

.home-sponsor:hover .home-sponsor__body::before {
	inline-size: 100%;
}

.home-sponsor__title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.45;
	color: #ffffff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: anywhere;
}

.home-sponsor__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	margin-block-start: auto;
	padding-block-start: 0.85rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--home-sun);
	transition: color var(--home-dur-fast) ease;
}

.home-sponsor__arrow {
	display: inline-block;
	transition: transform var(--home-dur) var(--home-ease);
}

.home-sponsor:hover .home-sponsor__more,
.home-sponsor__link:focus .home-sponsor__more {
	color: #fff3c4;
}

/* Arrow nudges toward the reading direction (RTL: left). */
.home-sponsor:hover .home-sponsor__arrow {
	transform: translateX(-4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-sponsor__body::before,
	.home-sponsor__arrow {
		transition: none;
	}
}

/* -----------------------------------------------------------------------
   9. Feed
   ----------------------------------------------------------------------- */
.home-feed__list {
	display: grid;
	gap: 1.1rem;
}

.home-feed-card {
	position: relative;
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: clamp(1rem, 2.5vw, 1.75rem);
	align-items: center;
	padding: 0.9rem;
	border-radius: var(--shivuk-radius-lg);
	background: var(--shivuk-color-bg);
	border: 1px solid var(--shivuk-color-border);
	box-shadow: var(--shivuk-shadow-sm);
	overflow: hidden;
	transition: box-shadow var(--home-dur) var(--home-ease);
}

/* The small hero cards' signature, scaled up for the wide rows: an accent
   bar sliding down the start edge on hover/keyboard focus. */
.home-feed-card::before {
	content: "";
	position: absolute;
	inset-block: 0.9rem;
	inset-inline-start: 0;
	inline-size: 3px;
	border-start-end-radius: 999px;
	border-end-end-radius: 999px;
	background: var(--shivuk-color-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform var(--home-dur) var(--home-ease);
}

.home-feed-card:hover::before,
.home-feed-card:focus-within::before {
	transform: scaleY(1);
}

.home-feed-card:hover {
	box-shadow: var(--shivuk-shadow-card-hover);
}

.home-feed-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: calc(var(--shivuk-radius-lg) - 8px);
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(20, 20, 25, 0.06);
}

.home-feed-card__thumb img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* Solid accent chip, matching the tile and member cards. */
.home-feed-card__body .home-cat {
	margin-block-end: 0.6rem;
	background: var(--shivuk-color-accent);
	color: var(--shivuk-color-accent-contrast);
	padding: 0.2em 0.85em;
}

.home-feed-card__title {
	margin: 0 0 0.45rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.35;
}

.home-feed-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--home-dur-fast) ease;
}

.home-feed-card__title a:hover,
.home-feed-card__title a:focus {
	color: var(--shivuk-color-accent);
}

.home-feed-card__excerpt {
	margin: 0 0 0.6rem;
	color: var(--shivuk-color-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-feed-card__date {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: var(--shivuk-color-muted);
	font-size: 0.82rem;
}

/* The shared accent meta-dot. */
.home-feed-card__date::before {
	content: "";
	inline-size: 5px;
	block-size: 5px;
	border-radius: 50%;
	background: var(--shivuk-color-accent);
	opacity: 0.55;
}

/* -----------------------------------------------------------------------
   Pixel-perfect polish
   ----------------------------------------------------------------------- */

/* Balanced multi-line headings — no orphan word on the second line. */
.home-section-head__title,
.home-hero-card__title,
.home-podcast__title,
.home-dreamjob__title {
	text-wrap: balance;
}

/* Neutral placeholder behind every thumb while the image streams in,
   so cards never flash white/transparent holes. */
.home-tile__thumb,
.home-row-card__thumb,
.home-feed-card__thumb,
.home-member__cover,
.home-pick__thumb,
.home-hero-card__media,
.home-sponsor__media {
	background: var(--shivuk-color-surface);
}

.home-sponsor__media {
	background: rgba(255, 255, 255, 0.06);
}

/* The theme's accent focus ring disappears on dark/colored surfaces —
   switch to white there so keyboard users never lose the ring. */
.home-podcast *:focus-visible,
.home-branded__inner *:focus-visible,
.home-hero-card__link:focus-visible,
.home-sponsor__link:focus-visible {
	outline-color: #ffffff;
}

/* Keep multi-line clamped titles from clipping mid-letter descenders. */
.home-tile__title a,
.home-row-card__title,
.home-guide__title,
.home-news__title,
.home-pick__title,
.home-member__title a {
	overflow-wrap: anywhere;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.home-grid--4,
	.home-community__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-podcast__inner {
		grid-template-columns: 1fr;
	}

	.home-podcast {
		min-block-size: 0;
	}
}

@media (max-width: 900px) {
	.home-hero {
		grid-template-columns: 1fr;
	}

	.home-hero-card {
		min-block-size: 300px;
	}

	/* Below 900px .home-hero__main and .home-hero__side become separate
	   grid rows instead of two columns sharing one row, so the grid no
	   longer stretches .home-hero__main taller than its own content — the
	   "extra" height .home-hero-card's flex-grow relies on (see the
	   unconditional .home-hero__main .home-hero-card rule above) stops
	   existing. Since the card's own content is entirely position:
	   absolute, min-block-size: 0 from that higher-specificity rule then
	   collapses it to 0 height instead of the 300px above — invisible.
	   Same selector here, later in the source, restores it. */
	.home-hero__main .home-hero-card {
		min-block-size: 300px;
	}

	.home-duo {
		grid-template-columns: 1fr;
	}

	/* Three-up would get cramped here; a single centered column keeps the
	   three branded cards identical — still symmetric, just stacked. */
	.home-branded__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.home-hero__below {
		grid-template-columns: 1fr;
	}

	/* .home-community__grid stays at the 2-column layout it already gets
	   at ≤1024px (below) — the community cards are compact enough to read
	   fine two-up even on phones, so it's left out of this single-column
	   drop. */
	.home-grid--4 {
		grid-template-columns: 1fr;
	}

	/* "כתבות נוספות חדשות": lead article alone on its own row, then the
	   Dream Job box alone on its own row, then the remaining articles
	   two-up — instead of everything single-column. */
	.home-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-grid--3 > :first-child,
	.home-grid--3 > .home-dreamjob {
		grid-column: 1 / -1;
	}

	.home-feed-card {
		grid-template-columns: 1fr;
	}

	/* "התפרסמו לאחרונה": alternating rhythm — one full-width article, then
	   two side by side, repeating (1, 2+3, 4, 5+6, …). */
	.home-feed__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-feed__list > .home-feed-card:nth-child(3n + 1) {
		grid-column: 1 / -1;
	}

	/* A 28-word excerpt doesn't fit a half-width phone card — keep it only
	   on the full-width rows of the pattern. */
	.home-feed__list > .home-feed-card:not(:nth-child(3n + 1)) .home-feed-card__excerpt {
		display: none;
	}

	.home-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
	}

	/* Hero card, mobile only: an edge-to-edge, flush-to-header break from
	   the padded container everything else on the homepage keeps. .container
	   is the ONLY ancestor between here and the viewport that insets its
	   content (padding-inline: var(--shivuk-space)) — every other one
	   (site-content, home-page, the grid/flex tracks) is full width with
	   no padding of its own. Cancelling exactly that one padding with a
	   negative margin lands the card flush on both edges without touching
	   viewport units at all, which a 100vw-based version needs and which
	   overshoots by the scrollbar's width whenever the page is tall enough
	   to have one — that mismatch was producing a horizontal scrollbar.
	   The two wrappers responsible for the top gap (site-content's sitewide
	   padding-block, home-page's own extra 25px) are zeroed only when a
	   hero section is actually present, so every other template keeps its
	   normal spacing under the header. */
	.site-content:has(> .home-page > .home-hero) {
		padding-block-start: 0;
	}

	.home-page:has(> .home-hero) {
		padding-block-start: 0;
	}

	.home-hero__main .home-hero-card {
		margin-inline: calc(-1 * var(--shivuk-space));
		border-radius: 0;
		/* Taller than the 900px breakpoint's 300px — now that the card is
		   full-bleed here too, a short banner looked cramped against its
		   new, much wider frame. Capped in px so short phones in landscape
		   still leave room to scroll to the rest of the page. */
		min-block-size: min(62vh, 460px);
	}

	/* Less horizontal inset than the clamp() default (min 1.5rem) now that
	   the card itself is full-bleed — the title column gets to use more of
	   the extra width the edge-to-edge card just gained instead of keeping
	   the same margins it had when the card was still contained. */
	.home-hero__main .home-hero-card__body {
		padding-inline: 1.25rem;
	}

	.home-hero__main .home-hero-card__title {
		font-size: clamp(2rem, 7.5vw, 2.75rem);
	}
}

