section.news-grid
{
	display: grid;
	width: 100%;

	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0.5rem;
	grid-row-gap: 0.5rem;
}

section.news-grid > a
{
	position: relative;
	overflow: hidden;
}

section.news-grid > a::after
{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* height: 50%;
	background: rgb(177,158,130);
	background: linear-gradient(0deg, rgba(177,158,130,0.9) 0%, rgba(52,45,45,0) 71%);
	transition: all 0.2s ease;
	z-index: 10; */
	top: 0;
	background: rgba(0,0,0,0.2);
	z-index: 10;
	mix-blend-mode: multiply;
	transition: all 0.4s ease;
}

section.news-grid > a:hover::after
{
	height: 100%;
	background: rgba(0,0,0,0.4);
}

section.news-grid > a span
{
	position: absolute;
	top: 2rem;
	left: 2rem;
	font-size: 1.3rem;
	color: #FFF;
}

section.news-grid > a img
{
	display: block;
	width: 100%;
}

section.news-grid > a h3
{
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	margin: 0;
	color: #FFF;
	transition: all 0.2s ease;
	z-index: 15;
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: 1px;
	text-transform: uppercase;
}

section.news-grid > a:hover h3
{
	bottom: 2rem
}


@media screen and (max-width: 1100px) {

	section.news-grid
	{
		grid-template-columns: repeat(2, 1fr);
	}

}

@media screen and (max-width: 768px) {

	section.news-grid
	{
		grid-template-columns: repeat(1, 1fr);
	}

	section.news-grid > a h3
	{
		left: 10px;
		bottom: 10px;
		font-size: 1.2rem; 
	}

	section.news-grid > a:hover h3
	{
		bottom: 20px;
	}

}