.news-list .title{
	text-align: center;
	font-size: 38px;
	margin-bottom: 20px;
}
.news-flex{
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	display: grid;
	gap: 20px;
	padding: 0px 20px;
	max-width: none;
	text-align: center;
}
.item-news{
	height: 100%;
	position: relative;
}
.w-25{
	width: 25%;
}
.img-block{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.name_news{
	display: none;
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	top: 0%;
	color: white;
}
.name_news p{
	font-size: 16px;
}
.item-news:hover .img-block{
	filter: blur(10px);
}
.item-news:hover .name_news{
	background-color: #93b7bbe6;
	transition: opacity .2s
	linear 0s;
	display: flex;
	font-size: 16px;
	align-items: center;
	justify-content: center;
}
@media  (max-width: 1024px){
	.news-flex {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media  (max-width: 768px){
	.news-flex {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media  (max-width: 420px){
	.news-flex {
		grid-template-columns: repeat(1, 1fr);
	}
}