.teaser {
	display: flex;
	justify-content: center;
	padding: 25px 0;
	background-color: var(--color-smoke);
}

.teaser[data-slide="false"] .items {
	display: flex;
	flex-wrap: wrap;

	column-gap: 20px;
	row-gap: 20px;
}

.teaser .items .item {
	width: 100%;
	background-color: var(--color-bright);
}

.teaser .items .item .img {
	position: relative;
	display: block;
	width: 100%;
	height: 330px;
	min-height: 70px;
	background-position: center;
	background-size: cover;
	transition: opacity .1s ease;
}

.teaser .items .item .bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}

.teaser[data-items="4"] .items .item .bottom {
	flex-wrap: wrap;
}

.teaser .items .item .bottom .price-h2 {
	font: var(--h2);
	hyphens: auto;
	white-space: nowrap;
}

.teaser .items .item .bottom .button {
	margin-top: 50px;
}

body[data-device="desktop"] .teaser .items .item .img:hover {
	opacity: .7;
}

.teaser .items .item .img .title {
	position: absolute;
	bottom: 20px;
	left: 25px;
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	height: auto;
	max-width: calc(100% - 50px);
	padding: 7px 23px;
	color: var(--color-bright);
	background-color: var(--color-primary);
}

.teaser .items .item .text {
	display: flex;
	flex-direction: column;
	padding: 18px 25px;
}

.teaser .items .item .text .button {
	align-self: flex-end;
	margin-top: 20px;
	white-space: nowrap;
}

.teaser[data-slide="false"][data-items="2"] .items .item {
	width: calc(50% - 10px);
}

.teaser[data-slide="false"][data-items="3"] .items .item {
	width: calc(33.33% - 14px);
}

.teaser[data-slide="false"][data-items="4"] .items .item {
	width: calc(25% - 15px);
}

.teaser[data-slide="false"][data-items="2"] .items .item .img {
	height: auto;
	padding-top: 59%;
}

.teaser[data-slide="false"][data-items="3"] .items .item .img {
	height: auto;
	padding-top: 59%;
}

.teaser[data-slide="false"][data-items="4"] .items .item .img {
	height: auto;
	padding-top: 76%;
}

.teaser[data-slide="true"] {
	position: relative;
}

.teaser[data-slide="true"] .items.main-width.owl-carousel {
	position: static;
}

.teaser .owl-nav {
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	left: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.teaser .owl-nav .owl-prev,
.teaser .owl-nav .owl-next {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	padding-top: 1px;
	color: var(--color-bright);
	font-size: 26px;
	background-color: var(--dimmer-dark);
	border-radius: 50%;
	pointer-events: all;
	transition: background-color .1s ease;
}

.teaser .owl-nav .owl-prev {
	padding-right: 2px;
}

.teaser .owl-nav .owl-next {
	padding-left: 2px;
}

body[data-device="desktop"] .teaser .owl-nav .owl-prev:hover,
body[data-device="desktop"] .teaser .owl-nav .owl-next:hover {
	background-color: var(--color-secondary);
}

@media (max-width: 1560px) {
	.teaser .owl-nav {
		right: 10px;
		left: 10px;
	}

	.teaser .owl-nav .owl-prev,
	.teaser .owl-nav .owl-next {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}
}

@media (max-width: 1420px) {
	.teaser[data-slide="false"][data-items="4"] .items .item {
		width: calc(33.33% - 14px);
	}

	.teaser .items .item .bottom {
		margin-top: 20px;
	}
}

@media (max-width: 1200px) {
	.teaser[data-slide="true"] .items.main-width.owl-carousel {
		display: flex;
		flex-direction: column-reverse;
	}

	.teaser .owl-nav {
		position: static;
		justify-content: flex-end;
		margin-bottom: 10px;
	}

	.teaser .owl-nav .owl-prev {
		margin-right: 5px;
	}
}

@media (max-width: 1040px) {
	.teaser[data-slide="false"][data-items="3"] .items .item,
	.teaser[data-slide="false"][data-items="4"] .items .item {
		width: calc(50% - 10px);
	}
}

@media (max-width: 700px) {
	.teaser[data-slide="false"][data-items="2"] .items .item,
	.teaser[data-slide="false"][data-items="3"] .items .item,
	.teaser[data-slide="false"][data-items="4"] .items .item {
		width: 100%;
	}

	.teaser[data-slide="false"][data-items="2"] .items .item .img,
	.teaser[data-slide="false"][data-items="3"] .items .item .img,
	.teaser[data-slide="false"][data-items="4"] .items .item .img {
		padding-top: 60%;
	}

	.teaser {
		padding: 20px 0;
	}

	.teaser .items .item .img {
		height: auto;
		padding-top: 60%;
	}

	.teaser .items .item .img .title {
		bottom: 14px;
		left: 18px;
	}

	.teaser .items .item .text {
		display: flex;
		flex-direction: column;
		padding: 13px 18px 17px;
	}

	.teaser .items .item .bottom {
		flex-wrap: wrap;
	}
}

@media (max-width: 520px) {
	.teaser .items .item .bottom {
		flex-direction: column;
		margin-top: 20px;
	}

	.teaser .items .item .text .button {
		margin-top: 0;
	}
}
