.blog-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 17px;
}
.blog-post {
	border-radius: 12px;
	border: 1px solid #B0BBCC;
	overflow: hidden;
	text-decoration: none !important;
	color: black;
	display: flex;
	flex-direction: column;
	gap: 7.5px;
	padding: 0 18px 18px 18px;
}
.blog-post:hover {
	border-color: #5893F7;
}
.blog-post__thumb {
	height: 198px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin: 0 -18px 0 -18px;
}
.blog-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.blog-post__tags span {
	padding: 4px;
	border-radius: 16px;
	background-color: #AFF4D9;
	font-weight: 600;
	font-size: 12px;
	color: black;
}
.blog-post__date {
	color: #979797;
	font-size: 12px;
	font-weight: 300;
}
@media screen and (max-width: 1200px) {
	.blog-section {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 991px) {
	.blog-section {
		grid-template-columns: repeat(2, 1fr);
	}
}