.latest-posts-wrapper .posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin: 0;
	padding: 0;
}
.news-image-button {
	min-height: 380px;
	display: block;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none;
}
.news-image-button h3 {
	width: calc(100% - 100px);
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 3;
	color: #fff;
	margin: 0;
}
.news-image-button.heading-line-enabled h3:after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background-color: currentColor;
	position: absolute;
	left: 0;
	bottom: -15px;
}
.news-image-button span.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: -moz-linear-gradient(top, rgba(0,0,14,0) 0%, rgba(0,0,14,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,14,0) 0%, rgba(0,0,14,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,14,0) 0%, rgba(0,0,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000000e', endColorstr='#00000e',GradientType=0);
	z-index: 2;
}
.news-image-button:hover span.image {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.news-image-button span.image {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	z-index:1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
	.latest-posts-wrapper .posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.latest-posts-wrapper .posts-grid {
		grid-template-columns: 1fr;
	}
}