/* ==========================================================================
   The Register  |  front page only (assets/css/home.css)
   Scoped under body.home. Adds the hero grid and the register section
   offset (SPEC section 6). Shared rules (filter bar, table, photo strip,
   chip, footer) live in register.css and are not repeated here.
   ========================================================================== */

/* --------------------------------------------------------------------------
   6.1 Hero: statement (span 5) + one photograph (span 7)
   -------------------------------------------------------------------------- */
body.home .home-hero {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: var(--col-gap);
	align-items: stretch;
	padding-top: 72px;
}

body.home .home-hero__text {
	grid-column: 1 / span 5;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

body.home .home-hero__eyebrow { margin: 0; }

body.home .home-hero__statement {
	margin: 28px 0 0;
	font-family: var(--font-serif);
	font-size: 66px;
	line-height: .98;
	font-weight: 300;
	letter-spacing: -.01em;
	text-wrap: balance;
	color: var(--cream);
}

body.home .home-hero__dek {
	margin: 28px 0 48px;
	max-width: 480px;
	font-size: 21px;
	line-height: 1.45;
	font-weight: 300;
	color: var(--stone);
}

body.home .home-hero__latest {
	margin-top: auto;
	border-top: 1px solid var(--rule);
	padding-top: 20px;
}

body.home .home-hero__latest-label { margin: 0; }

body.home .home-hero__latest-link {
	display: inline-block;
	margin-top: 12px;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 400;
	color: var(--cream);
	text-wrap: balance;
}
body.home .home-hero__latest-link:hover { color: var(--brass); }
body.home .home-hero__latest-link .verdict { font-size: inherit; line-height: inherit; }

body.home .home-hero__latest-meta { margin: 12px 0 0; }

body.home .home-hero__figure {
	grid-column: 6 / span 7;
	position: relative;
	margin: 0;
	height: 560px;
	min-width: 0;
	overflow: hidden;
	background: var(--ink-3);
}

body.home .home-hero__link {
	display: block;
	width: 100%;
	height: 100%;
}

body.home .home-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
}
body.home .home-hero__link:hover .home-hero__img { filter: saturate(1); }
body.home .home-hero__chip { pointer-events: none; }

/* --------------------------------------------------------------------------
   6.3 The Register section offset below the filter bar
   -------------------------------------------------------------------------- */
body.home .home-register { padding-top: 20px; }

/* --------------------------------------------------------------------------
   Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 899.98px) {
	body.home .home-hero {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}
	body.home .home-hero__text,
	body.home .home-hero__figure { grid-column: 1 / -1; }
	body.home .home-hero__dek { margin-bottom: 40px; }
	body.home .home-hero__latest { margin-top: 0; }
	body.home .home-hero__figure {
		height: auto;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 719.98px) {
	body.home .home-hero { padding-top: 48px; gap: 32px; }
	body.home .home-hero__statement {
		margin-top: 20px;
		font-size: 44px;
		line-height: 1;
	}
	body.home .home-hero__dek {
		margin: 20px 0 32px;
		font-size: 20px;
	}
	body.home .home-hero__latest-link { font-size: 26px; }
}
