#blog_teaser
{
	position: relative;
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
}

#blog_teaser .swiper-container
{
	max-width: 1170px;
	margin: 0 auto;
	overflow: hidden;
}

#blog_teaser .link:link,
#blog_teaser .link:active,
#blog_teaser .link:visited
{
	position: relative;
	display: block;
	height: 400px;
	background-color: #c5c5c5;
	text-decoration: none;
}

#blog_teaser .link img
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100% !important;
	width: 100% !important;
	max-width: none !important;
	object-fit: cover;
}

#blog_teaser .link .title-description-container
{
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: block;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	padding: 25px;
	background-color: rgba(255,255,255,0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	transition: all 200ms;
}

#blog_teaser .link.has-image:hover .title-description-container
{
	bottom: 20px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

#blog_teaser .link.has-image .title-description-container
{
	height: 215px;
}

#blog_teaser .link .title-description-container .date
{
	font-size: 11pt;
	font-weight: normal;
	color: #2c2c2c;
}

#blog_teaser .link .title-description-container .title
{
	font-size: 16pt;
	font-weight: normal;
	color: #1d1d1d;
}

#blog_teaser .link .title-description-container .teaser-text
{
	font-size: 12pt;
	font-weight: normal;
	color: #1d1d1d;
}

#blog_teaser .link .title-description-container .read-more-text
{
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 11pt;
	font-weight: normal;
	color: #1d1d1d;
	opacity: 0;
	transition: opacity 200ms;
}

#blog_teaser .link:hover .title-description-container .read-more-text
{
	opacity: 1;
}

#blog_teaser .link .title-description-container .read-more-text::after
{
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #1d1d1d;
	transform: scaleX(0);
	transition: transform 200ms;
}

#blog_teaser .link:hover .title-description-container .read-more-text::after
{
	transform: scaleX(1);
}

#blog_teaser .next,
#blog_teaser .previous
{
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: rgba(255,255,255,0.5);
	border: none;
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	border-radius: 50%;
}

#blog_teaser .next.swiper-button-disabled,
#blog_teaser .previous.swiper-button-disabled
{
	display: none;
}

#blog_teaser .next::before,
#blog_teaser .previous::before
{
	position: relative;
    top: -1px;
	font-family: font_awesome;
	font-size: 16pt;
	color: #1d1d1d;
}

#blog_teaser .previous
{
	left: 0;
}

#blog_teaser .previous::before
{
	content: "\f053";
	right: 1px;
}

#blog_teaser .next
{
	right: 0;
}

#blog_teaser .next::before
{
	content: "\f054";
	left: 1px;
}

