body * {
	box-sizing: border-box;
}

.container-1366 {
	max-width: 1366px;
	width: 100%;
	margin: 120px auto;
	padding: 0 15px;
}

.category-page .category-title {
	font-size: 3rem;
    letter-spacing: 1px;
    margin: 0 0 15px;
}

.category-page .heading {
	margin-bottom: 50px;
}

.category-page .posts-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}

.category-page .post img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.category-page .post .post-title {
	margin: 15px 0;
	font-size: 1.7rem;
}

.category-page .post .content {
	color: #797979;
	line-height: 22px;
	text-align: justify;
}

.category-page .post .read-more {
	color: #00A8C6;
	margin-top: 15px;
	display: block;
}

@media (max-width: 1023px) {
	.category-page .posts-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.category-page .posts-list {
		grid-template-columns: 1fr;
	}
}