#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: 400px;	
	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;
	border-radius: 20px;
}

#blog_teaser .link .title-description-container
{
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: calc(100% - 20px);
	padding: 25px;
	background-color: rgba(255,255,255,0.9);	
	border-radius: 0 0 20px 20px;	
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	transition: all 200ms;
}

#blog_teaser .link .title-description-container.full-height
{
	height: 100% !important;
	border-radius: 20px;
}

#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: 170px;
}

#blog_teaser .link .title-description-container .date
{
	font-size: 13px;
	font-weight: normal;
	color: #2E2E2E;
}

#blog_teaser .link .title-description-container .title
{
	font-family: league_spartan, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #197195;
	margin-top: 10px;
	margin-bottom: 10px;
}

#blog_teaser .link .title-description-container .teaser-text
{
	font-size: 16px;
	font-weight: normal;
	color: #2E2E2E;
}

#blog_teaser .link .title-description-container .read-more-text
{
	position: absolute;
	display: flex;
	align-self: center;
	bottom: 15px;
	right: 15px;
	font-size: 16px;
	font-weight: 700;
	color: #51558F;
	font-family: montserrat, sans-serif;
	opacity: 0;
	transition: opacity 200ms;
	text-decoration: none;
}

#blog_teaser .link:hover .title-description-container .read-more-text
{
	opacity: 1;
}

#blog_teaser .link .title-description-container .read-more-text::after
{
	content: "\f054";
    position: relative;
    display: block;
    bottom: -2px;
    right: 0;
    height: 0px;
    font-family: font_awesome;
    font-size: 16px;
    background-color: #51558F;
    font-weight: 700;
    transform: scaleX(0);
    transition: transform 200ms;
	margin-left: 5px;
}

#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;
}

