.blog-detail__footer p{
	color: var(--gray);
	margin-top: 0 !important;
}
.blog-detail__footer p time,
.blog-detail__footer p span{
	color: var(--black);
}
.blog-item{
	margin-bottom: var(--offset);
}
.blog-items-list{
	margin-bottom: calc(var(--offset) * -1);
}
.blog-item__link{
	display: block;
	line-height: 1;
	position: relative;
	border-radius: calc(var(--gx) * 3);
}
.blog-item__link > *:not(img){
	position: absolute;
}
.blog-item__image{
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 380/239;
	object-fit: cover;
	border-radius: calc(var(--gx) * 3);
}
.blog-item__link:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.65);
	border-radius: calc(var(--gx) * 3);
}
.blog-item__heading{
	color: var(--white);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	text-align: center;
	font-size: 18px;
	padding: calc(var(--gx) * 2);
}
@media (min-width: 576px) and (max-width: 767px){
	.blog-item__heading{
		font-size: 16px;
		font-weight: 500;
	}	
}