.feature-banner {
	position: relative;
	overflow: hidden;
	color: #fff;
	max-width: 1216px;
	margin: 0 auto;
}

/*Background image */
.feature-banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.feature-banner__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*Clickable overlay link */
.feature-banner__overlay-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	text-indent: -9999px;
}

/*Content */
.feature-banner__inner {
	position: relative;
	z-index: 2;
	display: inline-block;
	max-width: 40%;
	width: 100%;
	padding: var(--os-spacing-content-m, 36px);
	background-color: rgba(49, 49, 49, 0.6);
	margin: 0;
	transition: background-color 0.3s ease;
}

.feature-banner:hover .feature-banner__inner {
	background-color: rgba(49, 49, 49, 0.9);
}

.feature-banner__description {
	margin: 2rem 0 4rem;
}

/*Responsive width */
@media (max-width: 1023px) {
	.feature-banner__inner {
		max-width: 100%;
	}
}