.blog_latestpost .gridpost {
	display: grid;
}
.blog_latestpost .gridpost .griditem,
.blog_latestpost .slidepost .slideitem {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.blog_latestpost img.featured_image {
	display: block;
	object-fit: cover;
	transition: all .6s ease;
	width: 100%;
}
.blog_latestpost .overlay {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: flex-end;
	pointer-events: none;
}
.blog_latestpost .overlay a.latestpost_link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	pointer-events: auto;
}
{# Responsive Css #}
@media (max-width: 1200px){
	.blog_latestpost .gridpost.lt-3,
	.blog_latestpost .gridpost.lt-4 {
		grid-template-columns: repeat(2, 1fr)!important;
		grid-auto-rows: auto !important;
	}
}
@media (max-width: 767px){
	.blog_latestpost .gridpost.lt-2,
	.blog_latestpost .gridpost.lt-3,
	.blog_latestpost .gridpost.lt-4 {
		grid-template-columns: 1fr !important;
	}
}
.owl-dots {
	margin-top: 40px !important;
}