/* Homepage-specific editorial layouts. */
.hero-news {
	padding-top: clamp(1.5rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, .72fr));
	grid-template-rows: repeat(2, minmax(220px, 1fr));
	gap: 1rem;
	min-height: 610px;
}

.hero-story {
	position: relative;
	min-width: 0;
	border-radius: var(--radius-lg);
	background: #111827;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.hero-story--lead {
	grid-row: 1 / 3;
}

.hero-story__media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

.hero-story__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.hero-story:hover .hero-story__image {
	transform: scale(1.045);
}

.hero-story__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 11, 18, .02) 15%, rgba(7, 11, 18, .88) 100%);
}

.hero-story--lead .hero-story__shade {
	background: linear-gradient(180deg, rgba(7, 11, 18, .02) 18%, rgba(7, 11, 18, .94) 100%);
}

.hero-story__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: clamp(1.15rem, 3vw, 2.2rem);
}

.hero-story__content h2 {
	margin: .7rem 0 .5rem;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.3vw, 2.05rem);
	letter-spacing: -.04em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.hero-story--lead .hero-story__content h2 {
	max-width: 760px;
	font-size: clamp(2rem, 4vw, 4.15rem);
	letter-spacing: -.055em;
}

.hero-story__content p {
	max-width: 650px;
	margin: 0 0 .8rem;
	color: rgba(255, 255, 255, .82);
	font-size: .96rem;
}

.hero-story__meta {
	display: flex;
	gap: .8rem;
	color: rgba(255, 255, 255, .72);
	font-size: .7rem;
	font-weight: 700;
}

.category-highlights {
	padding-block: clamp(2.5rem, 5vw, 4rem);
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.category-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.category-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 145px;
	padding: 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background:
		linear-gradient(145deg, color-mix(in srgb, var(--color-accent) 5%, var(--color-surface)), var(--color-surface));
	text-decoration: none;
	overflow: hidden;
}

.category-tile::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -45px;
	width: 140px;
	height: 140px;
	border: 20px solid color-mix(in srgb, var(--color-accent) 10%, transparent);
	border-radius: 50%;
	transition: transform 350ms ease;
}

.category-tile:hover {
	border-color: var(--color-accent);
	color: var(--color-ink);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.category-tile:hover::before {
	transform: scale(1.12);
}

.category-tile__name {
	position: relative;
	z-index: 1;
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: -.035em;
}

.category-tile__count {
	position: relative;
	z-index: 1;
	color: var(--color-muted);
	font-size: .72rem;
	font-weight: 750;
}

.latest-news {
	padding-top: clamp(3rem, 7vw, 6rem);
}

.video-section {
	margin-top: clamp(2rem, 5vw, 4rem);
	background:
		radial-gradient(circle at 10% 20%, rgba(226, 29, 47, .25), transparent 34%),
		linear-gradient(135deg, #111722 0%, #080b10 100%);
	color: #fff;
}

.section-heading--light {
	border-color: rgba(255, 255, 255, .15);
}

.section-heading--light h2,
.section-heading--light .section-heading__link {
	color: #fff;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.video-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.video-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.video-card:hover .video-card__image {
	transform: scale(1.04);
}

.video-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
}

.video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-size: 1rem;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 9px rgba(255, 255, 255, .15);
}

.video-card h3 {
	margin: 1rem 0 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.video-card h3 a {
	text-decoration: none;
}

