.grid_news {
	display: grid;
	grid-template-columns: 33.33% 33.33% 33.33%;
	grid-template-rows: auto;
	grid-auto-flow: row;
	grid-gap: 0;
	column-gap: 20px;
	row-gap: 40px;
	margin-bottom: 50px;
}

.news_content_text {
	float: left;
	width: 100%;
}

/*.aside_news_content {
	float: left;
	width: 70%;
	height: 70px;
	padding-top: 5px;
	padding-left: 10px;
	line-height: 20px;
	font-weight: bold;
	text-align: left;
	align-items: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}*/
.news_item {
	border-radius: 20px;
	background-color: #e9e9e9;
}
.news_item time {
	padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 0;
	border-top: 4px solid white;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.news_content {
	padding: 50px 20px;
	webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.news_item a {
	text-decoration: underline;
}

.news_image {
	float: left;
	width: 100%;
	height: 150px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.news_image_details {
	float: left;
	width: 100%;
	height: 300px;
	margin-top: 10px;
	margin-bottom: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

@media only screen and (max-width: 959px) {
	.grid_news {
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto;
	}
}

@media only screen and (max-width: 767px) {	
	.grid_news {
		column-gap: 10px;
		row-gap: 20px;
	}
	.news_image_details {
		height: 200px;
	}
}

@media only screen and (max-width: 479px) {	
	.grid_news {
		grid-template-columns: 100%;
		grid-template-rows: auto;
	}
}