.home-banners {
	display: grid;
	gap: 1em;
	grid-template-columns: 5fr 4fr;
	padding-top: 0;
}

.home-banner {
	border-radius: 1rem;
	height: calc(832px / 2);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
	.home-banner#first {
		background-position-x: 70%;
		/* box-shadow: var(--shadow), 0.3em 0.3em 0 var(--primary); */
		background-color: #db342a;
	}

		.home-banner#first .content {
			left: 2rem;
			top: 2.8rem;
			font-size: max(3.3em, calc(0.8em + 1.7cqw));
			color: white;
			line-height: 1;
			padding-right: 1.5rem;
		}

		.home-banner#first .follow-up {
			display: block;
			margin-top: 1em;
			font-size: 34%;
			line-height: 1.1;
		}


	.home-banner#second {
		background-position-x: 60%;
		/* box-shadow: var(--shadow), 6px 6px 0 var(--dark); */
		background-color: #913814;
	}
		.home-banner#second .content {
			left: 2.5rem;
			top: 3.5rem;
		}
			.home-banner#second .content strong {
				font-weight: 760;
				font-size: max(2.2em, calc(1em + 1.1cqw));
				color: white;
				line-height: 1.2;
				background-color: black;
				padding: 0.2em 0.3em;
				box-decoration-break: clone;
				-webkit-box-decoration-break: clone;
			}

	.home-banner .content {
		position: absolute;
		line-height: 1;
	}