section.category .category__title {
	text-align: center;
	display: block;
	margin-bottom: 100px;
}

section.category .category__posts-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
	grid-gap: 100px 30px;
}

section.category .category__posts-list > li {
	display: flex;
	flex-direction: column;
}

section.category .category__post-thumb {
	display: block;
}

section.category .category__tags-block {
	margin-top: 20px;
	margin-bottom: 26px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-right: 40px;
	box-sizing: border-box;
}

section.category .category__tags-list {
	display: flex;
	flex-wrap: wrap;
}

section.category .category__tags-item {
	padding: 7px 10px;
	box-sizing: border-box;
	border-radius: 30px;
	font-weight: 600;
	color: #573CFF;
	background-color: #EAF2FF;
}

section.category .category__tags-item,
section.category .category__post-date {
	font-size: 14px;
	line-height: 1;
	display: block;
	text-align: center;
	min-width: 90px;
	margin-top: 6px;
}

section.category .category__post-date {color: #606884;}

section.category .category__tags-item:not(:last-child) {
	margin-right: 12px;
}

section.category .category__post-img {
	width: 100%;
	height: 280px;
	object-fit: fill;
	object-position: center;
	border-radius: 15px;
}

section.category .category__post-title {
	color: #02015A;
	text-align: left;
	font-size: 28px;
	line-height: 1.3;
	overflow-y: hidden;
	margin-bottom: 0;
	max-height: 75px;
}

section.category .category__post-date-block {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

section.category .category__date {
	margin-right: 20px;
}

section.category .category__date,
section.category .category__views {
	display: grid;
	grid-template-columns: max-content auto;
	grid-gap: 0 10px;
	align-items: center;
}

section.category .category__date svg,
section.category .category__views svg {
	width:24px;
	height: 24px;
}

section.category .category__date svg path,
section.category .category__views svg path {
	fill: #02015A;
}

section.category .category__post-title * {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	line-height: inherit;
}



@media only screen and (max-width: 1080.99px) {
	section.category .category__post-title {
		font-size: 22px;
		max-height: 60px;
	}

	section.category .category__tags-block {
		margin-bottom: 15px;
		margin-top: 12px;
	}

	section.category .category__title {
		margin-bottom: 60px;
	}

	section.category .category__post-img {height: 220px;}

    section.category .category__posts-list {
        grid-gap: 60px 20px;
    }
}

