.simple-bild-stack {
	display: flex;
	flex-direction: column;
	padding: 0 .9em;
	width: 100%;
	max-width: 100%;
}

.simple-bild-stack .img-card {
	position: relative;
	transition: transform 0.4s ease;
}

.simple-bild-stack .img-card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: #059ad4;

}

.simple-bild-stack img {
	height: 120px;
	width: 100%;
	object-fit: cover;
	max-width: 100%;
	vertical-align: middle;
}

.simple-bild-stack:hover .img-card {
	transform: scale(1.05);
}

.simple-bild-stack .content-card {
	overflow: hidden;
	border: 1px solid lightgray;
	margin-left: 1.25em;
	padding: 1.25em;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: auto;
	margin-bottom: 1.25em;
	background-color: #fff;
}

.simple-bild-stack .headline h2, .simple-bild-stack .headline h3, .simple-bild-stack .headline h4, .simple-bild-stack .headline h5, .simple-bild-stack .headline h6 {
	margin-bottom: .56em;
	word-wrap: break-word;
	word-break: break-word;
}

.simple-bild-stack .description {
	margin-bottom: 1.4rem;
	word-wrap: break-word;
	word-break: break-word;
}