.latest-blog-section {
	padding: 40px 0;
	text-align: center;
}

.latest-blog-section .container {
    max-width: 1140px;
}

.latest-blog-list {
	width: 100%;
	margin-bottom: 40px;
}

.latest-blog-list:last-of-type {
	margin-bottom: 0;
}

.latest-blog-image {
	position: relative;
	display: block;
	background-color: #000;
	height: 250px;
	margin-bottom: 20px;
}

.latest-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.latest-blog-date,
.latest-blog-category {
	position: absolute;
}

a.latest-blog-date {
    top: 10px;
    left: 10px;
    background-color: #fff;
    box-shadow: 0 0 9px rgb(0 0 0 / 10%);
    z-index: 2;
    display: inline-block;
    width: 53px;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
    color: #1B1919;
    padding: 5px;
    text-decoration: none;
    display: block;
}

.latest-blog-date .day {
	font-size: 24px;
}

.latest-blog-date .month {
	font-size: 12px;
    font-weight: 600;
}

.latest-blog-category,
.latest-blog-category:visited {
	background-color: #fc5c04;
    color: #fff;
    padding: 5px 10px;
    bottom: -14px;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    left: 50%;
    transform: translate(-50%, -50%);
}

.latest-blog-category:hover {
	background-color: #000;
	color: #fff;
}

.latest-blog-list h3 {
	font-size: 15px;
}

.latest-blog-list h3 a {
	text-decoration: none;
	font-weight: 600;
    text-transform: uppercase;
    color: #1B1919;
}

.latest-blog-list h3 a:hover {
	color: #fc5c04;
}

a.latest-blog-read-more {
	font-size: 15px;
    text-decoration: none;
    color: #6D6D6D;
    border-bottom: 1px solid #B5B5B5;
}

a.latest-blog-read-more:hover {
	color: #4e4e4e;
	border-color: #4e4e4e;
}

@media (min-width: 600px) {
	.latest-blog-grid {
		display: flex;
	    flex-wrap: wrap;
		margin: 0 -15px;
		align-content: center;
		justify-content: center;
	}

	.latest-blog-list {
		width: 45%;
		margin: 0 15px 40px;
	}
}


@media (min-width: 1200px) {
	.latest-blog-list {
		width: 30.07%;
	}

	.latest-blog-image {
		height: 342px;
	}
}





