.blog {
	margin-top: 97px;
}
.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog-title {
	font-family: Inter;
	font-weight: 600;
	font-size: 32px;
}
.blog-categories {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.blog-category-selector {
	border-radius: 100px;
	background: rgba(245, 245, 245, 1);
	padding: 4px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
    top: 3px;
    left: 4px;
}
.blog-category {
	font-family: Inter;
	font-weight: 500;
	font-size: 16px;
	border-radius: 100px;
	cursor: pointer;
	color: rgba(1, 1, 1, 0.6);
	padding: 9px 20px 11px 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.blog-category:hover {
	background: rgba(255, 107, 0, 1);
	color: #fff;
}
.blog-category.active {
	background: rgba(251, 142, 0, 1);
	color: #fff;
}
.blog-category-link {
	background: rgba(209, 46, 40, 1);
	font-family: Inter;
	font-weight: 500;
	font-size: 16px;
	border-radius: 100px;
	text-decoration: none;
	color: #fff;
	margin-left: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 139px;
	height: 49px;
    position: relative;
    top: 1px;
    left: 4px;
}
.blog-items {
	margin-top: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.blog-items:not(.active) {
	display: none;
}
.blog-post {
	width: calc((100% - (18px * 3)) / 4);
	text-decoration: none;
	display: block;
}
.blog-post:not(:last-child) {
	margin-right: 20px;
}
.blog-post-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 252px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-post-date {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	color: rgba(1, 1, 1, 0.6);
	margin-top: 18px;
}
.blog-post-name {
	font-family: Inter;
	font-weight: 500;
	font-size: 16px;
	margin-top: 6px;
    line-height: 19px;
    color: #000;
}

@media (max-width: 576px) {
	.blog {
		margin-top: 30px;
	}
	.blog-header {
		flex-wrap: wrap;
	}
	.blog-title {
		width: 100%;
		font-size: 22px;
		line-height: 26px;
	}
	.blog-category-selector {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
	}
	.blog-categories {
		width: 100%;
		margin-top: 15px;
	}
	.blog-category {
		white-space: nowrap;
	}
	.blog-items {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		margin-top: 20px;
	}
	.blog-post {
		min-width: 271px;
	}
	.blog-category-link {
		margin-top: 15px;
		width: 100%;
		margin-left: 0;
	}
}