.news-content {
	color: #727272;
    line-height: 1.5;
}
.news-content img {
	display: block;
	max-width: 100%;
	height: auto!important;
}
.news-content ol,
.news-content ul {
	padding: 10px 0px 10px 20px;
}
.news-content p {
	margin-bottom: 10px;
}
.news-content a {
	text-decoration: underline;
}
@media(any-hover: hover){
	.news-content a:hover {
		text-decoration: none;
	}
}
/** NEWS **/
.news-wrapper {
	display: flex;
}
.news-column-left {
    flex: 1;
}
.news-thumb {
	width: 100%;
	margin-bottom: 20px;
	border-radius: 15px;
}
.post-news-date {
    margin-bottom: 20px;
    color: #c4c4c4;
}
.news-column-right {
    width: 270px;
    min-width: 270px;
    margin-left: 30px;
}
.news-items {
	position: sticky;
    top: 20px;
    display: flex;
	flex-wrap: wrap;
    row-gap: 20px;
}
.news-item {
    width: calc(100% - 10px);
    max-width: 270px;
}
.news-item a.img {
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
	position: relative;
}
.news-item a.img: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-pager-title {
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    margin-top: 15px;
    text-transform: uppercase;
}
.news-title {
    font-size: 14px;
    margin-top: 10px;
    color: #727272;
    line-height: 1.3;
	transition: 0.3s;
}
.news-date {
    margin-top: 10px;
    color: #c4c4c4;
    font-size: 14px;
}
@media(min-width: 1001px){
	.news-item:hover img {
		transform: scale(1);
	}
	.news-item:hover .news-title {
		color: #333;
	}
	.news-item:hover a.img:after {
		opacity: 1;
	}
	.news-item:hover .news-pager-title {
		color: #00A651;
	}
}
@media(max-width: 1000px){
	.news-wrapper {
		display: block;
	}
	.news-column-right {
		width: 100%;
		min-width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	.news-items {
		position: none;
		justify-content: center;
		column-gap: 20px;
		row-gap: 0;
	}
	.news-item {
		width: calc(50% - 10px);
	}
	.news-item:first-of-type {
		order: 2;
	}
	.news-item:first-of-type .news-pager-title{
		text-align: right;
	}
	.news-item:last-of-type {
		order: 1;
	}
}
@media(max-width: 600px){
	.news-pager-title {
		font-size: 14px;
	}
}
@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: 10px;
	}
	.news-pager-title {
		font-size: 12px;
	}
}
/** NEWS (END) **/