/*--------------------------------------------------------------------------- NEWS */

#news {
	padding-top:  80px;
	padding-bottom: 60px;
	margin-top: 60px;
	background: #ebf7fd;
}

#news .newsList {
	padding: 0 20px;
	margin-top: 30px;
}

#news .newsList li {
	border-bottom: 1px solid #c6d5dc;
}

#news .newsList li a {
	display: block;
	padding: 20px 32px 20px 0;
	position: relative;
}

#news .newsList li a:after {
    content: "";
    display: block;
    width: 10px;
    height: 14px;
    background: url(/common/images/link-gr.svg) center center / 10px 14px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
}

#news .newsList li a.external:after {
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/common/images/external-icon-gr.svg) center center / 20px 20px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

#news .newsList li:first-child a {
	padding-top: 0;
}

#news .newsList li .date {
	display: block;
	font-size: 1.2rem;
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
}

#news .newsList li .date:before {
	content: "";
    display: block;
    width: 14px;
    height: 12px;
    background: url("/common/images/calender-icon.svg") center center / 14px 12px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#news .newsList li .newsTxt {
	line-height: 1.5;
}

#news .btnList {
	margin-top: 40px;
}


/*----------------------------HOVER*/

#news .newsList li .newsTxt {
	transition: color 200ms ease;
}

#news .newsList li a.hover .newsTxt {
	color: #0564c8;
	text-decoration: underline;
}

#news .newsList li a:after {
	transition: all 200ms ease;
}

#news .newsList li a.hover:after {
    background: url(/common/images/link-bl.svg) center center / 10px 14px no-repeat;
	transform: translate(3px,0);
}

#news .newsList li a.external.hover:after {
	background: url(/common/images/external-icon-bl.svg) center center / 20px 20px no-repeat;
	transform: none;
}

