.simple-banner-block {
	display: grid;
	grid-template: "banner";
	place-items: center;
	overflow: hidden;
	position: relative;
	background-color: var(--gray-100);
	margin-bottom: 0;
}

.simple-banner-block > * {
	grid-area: banner;
	position: relative;
}

.simple-banner-block img {
	object-fit: cover;
	object-position: var(--focus, center);
	position: absolute;
	height: 100%;
}
.page-banner-caption {
	max-width: var(--width-medium);
	text-align: center;
	letter-spacing: 0.085em;
	color: #fff;
	z-index: 9;
	padding: 10rem 1rem 5rem;
}
.page-banner-caption h1 {
	text-transform: uppercase;
	font-weight: 700;
}
.simple-banner-block:after {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
