div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* Фильтр по категориям */
.articles-filter {
	margin: -20px 0 40px;
}
.articles-filter__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.articles-filter__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid #d5dde6;
	border-radius: 20px;
	color: #032D5B;
	font-size: 15px;
	line-height: 1.2;
	white-space: nowrap;
	text-decoration: none;
	transition: background-color .2s, border-color .2s, color .2s;
}
.articles-filter__link:hover,
.articles-filter__link:focus {
	border-color: #032D5B;
	color: #032D5B;
	text-decoration: none;
}
.articles-filter__link.is-active {
	background: #032D5B;
	border-color: #032D5B;
	color: #fff;
}
.articles-filter__count {
	font-size: 13px;
	opacity: .6;
}

/* Сетка карточек: flex вместо float, чтобы ряды не «застревали» */
.articles-grid {
	display: flex;
	flex-wrap: wrap;
}
.articles-grid:before,
.articles-grid:after {
	display: none;
}
.articles-grid__img {
	overflow: hidden;
}
.articles-grid__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

@media only screen and (max-width: 767px) {
	.articles-filter {
		margin: -20px -15px 30px;
	}
	.articles-filter__list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0 15px 6px;
	}
	.articles-grid__img {
		height: auto;
	}
	.articles-grid__img img {
		height: auto;
	}
}
