/* News Components
----------------------------------------------- */
.newsItem {
	display: grid;
	grid-template-columns: 0.25fr 0.75fr;
	grid-template-rows: auto;
	grid-gap: 3em;
	justify-content: space-evenly;
	margin-bottom: 3em
	}

.newsItem:hover .relFrame {
	opacity: 0.8;
	transition: all 0.3s ease; 
	}
	
.niLink {
	margin-top: 3em;
	}
	
.nHeadline {
	margin-bottom: 0.25em;
	}
	
.posted {
	margin-bottom: 2em;
	border-bottom: 1px solid rgb(239,76,35);
	}
		
.article {
	padding-bottom: 2em;
	}
		
.related {
	padding: 2em 0;
	border-top: 1px solid rgb(239,76,35);
	}
		
.related h3 {
	margin-bottom: 1em;
	}
		
.relatedGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-gap: 5em;
	justify-content: space-evenly;
	overflow: hidden;
	padding-bottom: 2em;
	}
		
.relItem {
	display: block;
	}
		
.relHeadline {
	font-weight: 500;
	padding: 1em 0 0.5em 0;
	}
		
.relDate {
	font-weight: 500;
	font-size: 0.8em;
	}
	
.viewAll {
	padding: 2em 0;
	border-top: 1px solid rgb(239,76,35);
	}
	
@media handheld, only screen and (max-width: 820px) {
.newsItem {
	grid-template-columns: 1fr;
	grid-gap: 0;
	margin-bottom: 3em
	}
	
.newsItem.contentPad {
	padding: 0;
	}
	
.newsItem .newsPreview {
	padding: 2em;
	}
}