@charset "utf-8";
/* CSS Document *

/*-------------------------------------------------------------------------------------*/
/*NEWS ONSITE -------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.newsOS {
	margin-top:60px;
	margin-bottom:30px;
}

.newsOS .newsHeader {
	font-family: "rockwell", sans-serif, Calibri, Arial, Verdana, sans-serif; /*-Fallback-*/
	color: #AAAB0D;
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 2rem;
	display:inline-block;
}

.newsOS .newsHeader:hover {
	color: var(--default_color);
	text-decoration: none;
}

.newsOS .newsContentItem {
	background-color: var(--color_light);
	margin: 0 0 30px 0;
	cursor: pointer;
	transition: transform 420ms cubic-bezier(.165,.84,.44,1);
}

.newsOS .newsContentItem:hover {
	transform: scale(1.05);
}

.newsContentWrapper {
	padding: 1rem;
}

.newsOS .newsImage {
	max-height: 220px;
	overflow: hidden;
}

.newsOS .newsImage img {
	width: 100%;
}

.newsOS .newsTitle {
	color: #AAAB0D;
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 1rem;
	text-decoration:none;
	display:inline-block;
	height:52px;
	overflow:hidden;
}

.newsOS .newsTitle:hover {
	color: var(--default_color);
}

.newsOS .newsTeaser {
	margin: 0 0 30px 0;
    height:96px;
    overflow: hidden;
}

.newsOS .readMore {
	color: #AAAB0D;
}

@media(max-width:767px){
	.newsOS {margin-top:30px;}
	.newsOS .newsTitle {margin: 12px 0; height: 25px;}
	.newsOS .newsTeaser {font-size: 1rem; height: auto;}
}