article.news {
	position:relative;
	width:100%;
	padding-bottom:32px;
	border-bottom:2px dotted #9d9d95;
	margin-bottom:12px;
}
article.news:last-child,
article.news:nth-last-child(2) {
	border:0;
}
article.news aside.head {
	font-family:'Fira Sans Condensed',sans-serif;
	font-size:14px;
	color:#2dad63;
}
article.news h2 {
	margin-top:0.5em;
}
article.news section.content {
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-template-rows: min-content;
	grid-gap:24px;
	align-items: start;
}
	
article.news div.teaser {
	font-family:'Fira Sans Condensed',sans-serif;
	font-size:18px;
}
article.news div.teaser a.morelink {
	position:relative;
	display:inline-block;
	margin-top:12px;
}
article.news div.text img {
	display:block!important;
	width:100%!important;
	height:auto!important;
	margin-bottom:10px!important;
}	
	
article.news figure {
	display:block;
	position:relative;
	width:100%;
	min-height:150px;
	padding:80% 0 0 0;
	margin:0 !important;
	overflow:hidden;
	line-height:0;
}
#content article.news figure img {
	position:absolute;
	left: 50%;
	top:50%;
    transform: translate(-50%,-50%);
	width:100%;
	height:auto;
	-webkit-transition: all 0.4s 0.1s;
	transition: all 0.4s 0.1s;
}
#content article.news figure img:hover {
	width:110%;
	-webkit-transition: all 0.4s 0.1s;
	transition: all 0.4s 0.1s;
}

/* styles Mobile<1220 px
======================== */
@media only screen and (max-width:1220px) {
	article.news section.content {
		display:block;
	}
	#content article.news {
		margin-bottom:16px;
	}
	#content article.news figure img {
		position:relative;
		left:0;
		top:0;
		transform:none;
	}
	#content article.news figure img:hover {
		width:100%;
	}
}