/** NEWS **/
.news-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
}
.news-item {
    width: calc(25% - 15px);
}
.news-item a {
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
	position: relative;
}
.news-item a:after {
	content: '\0427\0438\0442\0430\0442\044C\0020\0434\0430\043B\0435\0435';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	opacity: 0;
	background: rgba(0,0,0,0.3);
	-webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
	transform: scale(1.05);
	transition: 0.5s;
}
.news-title {
    font-size: 14px;
    margin-top: 15px;
    color: #727272;
    line-height: 1.3;
	transition: 0.3s;
}
.news-date {
    margin-top: 10px;
    color: #c4c4c4;
    font-size: 14px;
}
.news-content {
	color: #727272;
    line-height: 1.5;
}
.news-content img {
	display: block;
	max-width: 100%;
}
@media(min-width: 1001px){
	.news-item:hover img {
		transform: scale(1);
	}
	.news-item:hover .news-title {
		color: #333;
	}
	.news-item:hover a:after {
		opacity: 1;
	}
}
@media(max-width: 1000px){
	.news-item {
		width: calc(33.33% - 13.33px);
	}
}
@media(max-width: 600px){
	.news-item {
		width: calc(50% - 10px);
	}
}
@media(max-width: 450px){
	.news-item {
		width: calc(50% - 5px);
	}
	.news-item img {
		height: 130px;
	}
	.news-date {
		display: none;
	}
	.news-title {
		margin-top: 10px;
	}
	.news-items {
		column-gap: 10px;
		row-gap: 20px;
	}
}
/** NEWS (END) **/