#blog_teaser
{
	position: relative;
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
}

#blog_teaser .swiper-container
{
	max-width: 2000px;
	margin: 0 auto;
	overflow: hidden;
}

#blog_teaser .link:link,
#blog_teaser .link:active,
#blog_teaser .link:visited
{
	position: relative;
	display: block;
	height: 420px;
	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: 20px;
	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;
}

@media screen and (max-width: 576px)
{
	#blog_teaser .link .title-description-container
	{
		padding: 15px;
	}
}

#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
{
	max-height: 220px;
}

@media screen and (max-width: 576px)
{
	#blog_teaser .link.has-image .title-description-container
	{
		max-height: 230px;
	}
	
}

#blog_teaser .link .title-description-container .date
{
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 17px;
}

#blog_teaser .link .title-description-container .title
{
	font-size: 21px;
	font-weight: 700;
	color: #0D312E;
	font-family: 'InstrumentSans', sans-serif;
}

#blog_teaser .link .title-description-container .teaser-text
{
	font-size: 16px;
	font-weight: normal;
	line-height: 1.3;
}

#blog_teaser .link .title-description-container .read-more-text
{
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 16px;
	font-weight: 700;
	color: #0D312E;
	opacity: 1;
	transition: opacity 200ms;
	font-family: 'SourceSans3';
}

#blog_teaser .link .title-description-container .read-more-text::after
{
	content: '\f178';
	font-family: 'font_awesome';
	position: relative;
	width: 100%;
	left: 0;
	bottom: 0px;
	color: #508769;
}

/* #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: transparent;
	border: none;
	border-radius: 50%;
}

@media screen and (max-width: 991px)
{
	#blog_teaser .next,
	#blog_teaser .previous
	{
		width: auto;
	}
	
}

#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: url('/images/previous-arrow.svg');
	right: 1px;
}

#blog_teaser .next
{
	right: 0;
}

#blog_teaser .next::before
{
	content: url('/images/next-arrow.svg');
	left: 1px;
}

