.mdc-custom__banner-full-width__container {
	display: grid;
	grid-template-areas: "banner";
	background-size: cover;
	background-position: center;
}

.mdc-custom__banner-full-width__container > *{
	grid-area: banner;
}

.mdc-custom__banner-full-width__container .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mdc-custom__banner-full-width__text {
	padding-block: 3.5rem;
	text-align: center;
	color: #fff;
	max-width: 72ch;

	& .mdc-custom__button {
		justify-content: center;
	}
}

.mdc-custom__banner-full-width__tint {
	background-color: hsl(0 0% 0% / 50%);
}