.teaser__wrapper_outer {
	/* padding: 20px; */
	max-width: var(--module-wrapper-width);
	margin: 65px auto;
}

/* large */

.teaser__wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	margin: 30px 0;
}

.teaser__wrapper_reversed {
	flex-direction: row-reverse;
}

.teaser__wrapper div {
	width: 47%;
}
.teaser__header {
	font-family: var(--default-font-medium);
	/* font-size: 1.2rem; */
	font-size: var(--font-size-header-small);
}

.teaser__description {
	/* font-size: 0.8rem; */
	font-size: var(--font-size-text);
	margin: 25px 0;
	/* line-height: 1.25rem; */
	line-height: var(--lineheight-text);
	width: 60%;
}

.teaser__image {
	width: 100%;
	min-height: 300px;
	height: auto;
	object-fit: cover;
}

.teaser__textcontent {
	display: flex;
	padding: 0 20px; 
	flex-direction: column;
	justify-content: center !important;
}

.textcontent_centered {
	width: 100% !important;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 30px;
}
.textcontent_centered .teaser__header {
	text-align: center !important;
	display: inline-block;
}
.textcontent_centered .teaser__description {
	padding: 0 20%;
}
.teaser__textcontent div {
	width: 100%;
}
.teaser__wrapper div {
	display: flex;
	justify-content: space-between;
}

.teaser__imagecontent_empty img {
	display: none;
}
.teaser__textcontent .teaser__button {
	width: 300px;
	max-width: 100%;
	padding: 12px;
	background-color: var(--light);
	border: 2px solid var(--default-blue);
	border-radius: 7px;
	color: var(--default-blue);
	font-family: var(--default-font-medium);
	text-align: center !important;
	display: inline-block;
	transition: all 0.15s ease-in;
	cursor: pointer;
}

.teaser__textcontent .teaser__button:hover {
	border: 2px solid var(--default-light-blue);
	color: var(--default-light-blue);
}

/* small */

.teaser__wrapper_small {
	height: 300px;
	width: 550px;
	position: relative;
}

.teaser__wrapper_small .teaser__small_title {
	height: 50px;
	padding: 12px 30px;
	font-family: var(--default-font-medium);
	background-color: var(--light);
	position: absolute;
	bottom: 40px;
	display: inline-block;
	text-align: center;
}

/* with image background */

.teaser__wrapper_background {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
	width: 100%;
	min-width: 600px;
	min-height: 400px;
}
.teaser__wrapper_background .teaser__textcontent {
	background: var(--light);
	height: 80%;
	width: 55% !important;
	color: var(--dark);
}
.teaser__wrapper_background
	.teaser__textcontent.textcontent_centered
	.teaser__description {
	padding: 0 8%;
}
.teaser__wrapper_background .teaser__textcontent .teaser__button {
	background-color: var(--default-blue);
	color: var(--light);
	border: none;
}
.teaser__wrapper_background .teaser__textcontent .teaser__button:hover {
	background-color: var(--default-light-blue);
	color: var(--dark);
}
@media screen and (max-width: 768px) {
	.teaser__wrapper_outer {
		padding: 20px;
		margin: 20px auto;
	}
	.teaser__wrapper {
		flex-direction: column;
		margin: 0;
		padding: 25px 0;
	}
	.teaser__wrapper_reversed {
		flex-direction: column-reverse;
	}
	.teaser__wrapper div {
		width: 100%;
	}
	.teaser__textcontent {
		padding: 15px 10px;
	}
	.textcontent_centered .teaser__description {
		padding: 0;
	}
	.teaser__textcontent .teaser__button {
		width: 100%;
	}
	.teaser__imagecontent_empty {
		display: none !important;
	}
	.teaser__wrapper_small {
		width: 100%;
	}
	.teaser__wrapper_background {
		width: 100%;
		max-width: 100% !important;
		min-width: 100% !important;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.teaser__wrapper_background .teaser__textcontent.textcontent_centered {
		width: 80% !important;
	}
}
