.home-today-entry {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7.5rem);
	width: min(var(--ieum-content-wide), calc(100% - 3rem));
	margin: 0 auto clamp(4rem, 7vw, 7.5rem);
	padding: clamp(2.5rem, 5vw, 5rem) 0 0;
	border-top: 1px solid rgba(29, 39, 33, 0.28);
}

.home-today-entry__copy {
	position: relative;
	padding-left: clamp(0rem, 3vw, 2rem);
}

.home-today-entry__copy .section-kicker {
	margin: 0 0 3rem;
	color: var(--eg-orange, #eb6d48);
	font-weight: 700;
	text-transform: uppercase;
}

.home-today-entry__index {
	margin: 0 0 1rem;
	color: var(--eg-moss, #315d45);
	font-family: var(--ieum-font-latin);
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 0.9;
}

.home-today-entry h2 {
	margin: 0;
	color: var(--eg-ink, #1d2721);
	font-size: var(--ieum-type-section-title);
	font-weight: 700;
	letter-spacing: var(--ieum-tracking-title);
	line-height: var(--ieum-leading-tight);
}

.home-today-entry__copy > p:not(.section-kicker, .home-today-entry__index) {
	max-width: 31rem;
	margin: 2rem 0 0;
	color: color-mix(in srgb, var(--eg-ink, #1d2721) 70%, transparent);
	font-size: var(--ieum-type-lead);
	line-height: var(--ieum-leading-body);
}

.home-today-entry__cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	min-width: min(100%, 19rem);
	margin-top: 2.4rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid currentColor;
	color: var(--eg-moss, #315d45);
	font-weight: 700;
	text-decoration: none;
}

.home-today-entry__preview {
	position: relative;
	display: block;
	justify-self: end;
	width: min(100%, 36rem);
	overflow: hidden;
	background: #e7e6d5;
	color: #fff;
	text-decoration: none;
}

.home-today-entry__preview img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 500ms ease, filter 500ms ease;
}

.home-today-entry__preview-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.48rem 0.65rem;
	background: rgba(29, 39, 33, 0.88);
	font-family: var(--ieum-font-latin);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.home-today-entry__preview-action {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.4rem;
	background: rgba(29, 39, 33, 0.92);
	font-weight: 700;
	transform: translateY(100%);
	transition: transform 300ms ease;
}

.home-today-entry__preview:hover img,
.home-today-entry__preview:focus-visible img {
	filter: saturate(0.92) brightness(0.78);
	transform: scale(1.015);
}

.home-today-entry__preview:hover .home-today-entry__preview-action,
.home-today-entry__preview:focus-visible .home-today-entry__preview-action {
	transform: translateY(0);
}

.home-today-entry__preview:focus-visible,
.home-today-entry__cta:focus-visible {
	outline: 3px solid var(--eg-orange, #eb6d48);
	outline-offset: 5px;
}

@media (max-width: 820px) {
	.home-today-entry {
		grid-template-columns: 1fr;
		gap: 3rem;
		width: min(100% - 2rem, var(--ieum-content-wide));
		margin-block: 5rem;
		padding-block: 3rem 0;
	}

	.home-today-entry__copy {
		padding-left: 0;
	}

	.home-today-entry__copy .section-kicker {
		margin-bottom: 2rem;
	}

	.home-today-entry__preview {
		justify-self: stretch;
		width: 100%;
		max-width: 34rem;
	}

	.home-today-entry__preview-action {
		position: relative;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-today-entry__preview img,
	.home-today-entry__preview-action {
		transition: none;
	}
}
