.home-hero {
	position: relative;
	display: flex;
	width: 100vw;
	height: calc(100vh - 155px);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: var(--color-ink, #111);
}

.home-hero__cta {
	position: absolute;
	left: 50%;
	bottom: clamp(32px, 5vh, 48px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 54px;
	padding: 14px 32px;
	border: 1px solid var(--action-light, #fff);
	background: var(--action-light, #fff);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
	color: var(--action-light-text, #111);
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transform: translateX(-50%);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.home-hero__cta:hover {
	border-color: var(--action-dark, #111);
	background: var(--action-dark, #111);
	color: var(--action-dark-text, #fff);
	text-decoration: none;
}

.home-hero__cta:active {
	border-color: var(--action-dark-active, #505050);
	background: var(--action-dark-active, #505050);
	color: var(--action-dark-text, #fff);
}

.home-hero__cta:focus {
	outline: 2px solid var(--focus-on-dark, #fff);
	outline-offset: 3px;
	box-shadow: 0 0 0 5px var(--focus-on-light, #111), 0 8px 24px rgba(0, 0, 0, .28);
}

.home-hero__banner {
	flex: 1 1 50%;
	width: 50%;
	min-width: 0;
	overflow: hidden;
}

.home-hero__banner > a,
.home-hero__banner picture {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero__banner img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.home-hero__banner--right img {
	object-position: var(--desktop-position, center center);
}

@media (max-width: 767px) {
	.home-hero__cta {
		bottom: calc(24px + env(safe-area-inset-bottom));
		min-width: 170px;
		min-height: 50px;
		padding: 13px 26px;
		font-size: 14px;
	}

	.home-hero__banner--left {
		display: none;
	}

	.home-hero__banner--right {
		flex-basis: 100%;
		width: 100%;
	}

	.home-hero__banner--right img {
		object-position: var(--mobile-position, center center);
	}
}
