section#news-section {
	background: #111;
}

#news {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(calc(33.333% - 32px), 1fr));
	grid-gap: 32px;	
}

.news-article {
	opacity: 0;
	animation-name: fade-in-down;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	min-height: 300px;
	overflow: hidden;
}

.article-container {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
}

.article-background {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	transition: transform 0.6s ease-out;
}

.article-container:hover .article-background {
	transform: scale(1.1);
}

.article-container:hover .article-title {
	animation: bump-up 0.5s ease-out forwards;
}

.article-title {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 16px;
	text-transform: uppercase;
	background: #000;
	animation: bump-down 0.5s ease-out forwards;
}

.article-headline {
	font-weight: 900;
}

.article-subject {
	
}