﻿.news-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	
	/*Flex for Internet Explorer*/
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: column;
}

.news-container-row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	
	/*Flex for Internet Explorer*/
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: row;
}


/* große Viewports */
@media all and (min-width: 30em) {
.news-container {
  }
}

.news-item{
	flex: auto;
	flex: 1 0 0;
	float: left;
	border-radius: 10px 10px 10px 10px;
	border-style: solid;
	border-color: #c8bdab;
	border-width: 2px;
	margin: 0.5em;
	box-shadow: 3px 3px 5px #d7dae3;
	background-color: #bfd1d2;
}

.ie-news-item{
	flex: 2;
	float: left;
	border-radius: 10px 10px 10px 10px;
	border-style: solid;
	border-color: #c8bdab;
	border-width: 2px;
	margin: 0.5em;
	box-shadow: 3px 3px 5px #d7dae3;
	background-color: #bfd1d2;
}

.news-item-header{
	width: 100%;
	float: left;
	font-size: 18px;
	font-weight: bold;
	background-color: #b5c8d6;
	background: linear-gradient(to bottom, white 50%, #d7dae3);
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 5px 5px 0px 0px;
}


.news-item-header-date{
	font-size: 14px;
	color: black;
	float: right;
	padding-right: 10px;
}

.news-item-header-title{
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #00494b;
	float: left;
	padding-left: 10px;
}

.news-item-header-title a{
	text-decoration: none;
	color: #00494b;
   font-size: 16px;
}

.news-item-image{
	width: 20%;
	float: left;
	padding-left: 5px;
}

.news-item-text{
	width: 100%;
	float: left;
	font-size: 16px;
	padding: 5px;
}

.news-item-text a{
	text-decoration: none;
	color: #00494b;
   font-size: 16px;
}

.news-item-text a ul li{
	text-decoration: none;
	color: black;
   font-size: 16px;
}

.news-item-text ul{
	width: 100%;
	float: left;
}