.features_wrapper {
	background-color: #005F3A;
	background-position: center;
	background-size: cover;
	padding: 40px 0;
}

.features_wrapper > .inner {
	display: grid;
	row-gap: 47px;
	column-gap: 24px;
}

@media (min-width: 992px) {
	.features_wrapper {
		padding: 78px 0;
	}
}


@media (min-width: 1074px) {
	.features_wrapper > .inner {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}

.features_content {
	color: white;
}	

.features_content > div:first-child {
	/* Titel */
	font-size: clamp(24px, 3vw, 48px);
	line-height: 1.4;
	margin-bottom: 2rem;
	font-weight: bold;
}	

.features_wrapper > .inner > div:last-child > div {
	margin-bottom: 35px;
}

.features_wrapper > .inner > div:last-child > div:last-child {
	margin-bottom: 0;
}

@media (min-width: 600px) {
	.features_wrapper > .inner > div:last-child {
		/* Features Karten Wrapper */
		column-count: 2;
		column-gap: 24px;
	}

	.features_wrapper > .inner > div:last-child > div:nth-child(3) {
		/* Das ist für den coolen Masonry Look. */
		padding-top: 50px;
	}
}

.paragraph--type--features-karten {
	background: white;
	color: #005F3A;
	text-align: center;
	font-size: 22px;
	border-radius: 2px;
	box-shadow: 0 0 20px #00000029;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	height: 218px;
	padding: 1.5rem;
}


