.news_item{	
	display: block;
	margin-bottom: 30px;
}
.news_item_image{
	height:  151px;
	position: relative;
}
.news_item_image::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.85);
	transition: 0.4s;
	opacity: 0;
	z-index: 5;
}
.news_item_image img{
	width:  100%;
	height: 100%;
}
.news_item_name{
	font-family: 'Source Sans Pro';	
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	color: #343434;
	margin-bottom: 17px;
	transition: 0.4s;
}
.news_description{
	margin-bottom: 33px;
}
.news_item_text{
	padding: 20px 25px 33px;
	border: 2px solid #DFDFDF;
	border-top: none;
}

.news_item:hover .news_item_image::after{	
	opacity: 1;
}
.news_item:hover .news_item_name{	
	color: var(--color-v1);
}
.button.button_news{
	margin: 20px auto 0; 
}
@media(max-width: 991px){
	.news_item{
		margin-bottom: 20px;
	}
}