/* ================================================
	News Listing Styles
=================================================== */

.itemList.news-listing .item {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.itemList.news-listing .item:nth-child(even):hover,
.itemList.news-listing .item:hover,
.itemList.news-listing .item:focus {
	background: #212121;
}

.itemList.news-listing .item > a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
}

.itemList.news-listing .item .content {
	display: block;
}

.itemList.news-listing .item .content .title {
	margin: 0;
	text-transform: uppercase;
	color: #fff;
}

.itemList.news-listing .item .content .date {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .15em;
}

.itemList.news-listing .item .content .more {
	color: #DA2128;
}

@media (min-width: 48em) {
	.itemList.news-listing .item .columns {
		table-layout: fixed;
	}
}


/* ================================================
 	News Detail Styles
=================================================== */

.news-detail .heading {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #1E1C1D;
	overflow: hidden;
	z-index: 1;
}

.news-detail .heading .media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.news-detail .heading .media:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(29, 29, 29, 0.7);
}

.news-detail .heading .media img {
	position: relative;
	min-width: 100%;
	max-width: none;
	min-height: 100%;
}

.news-detail .heading .title {
	padding: 175px 20px 20px;
	margin: 0;
	font-size: 2em;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.1;
	color: #fff;
}

@media (min-width: 48em) {
	.news-detail .heading .title {
		font-size: 5vw;
	}
}

@media all and (min-width: 80em) {
	.news-detail .heading .title {
		padding: 200px 12% 2%;
	}
}

.news-detail .content {
	padding: 5%;
}

.news-detail .content .date {
	margin-bottom: 20px;
	font-family: 'Oswald', sans-serif;
	font-size: 16pt;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

.news-detail .content .media {
	text-align: center;
	margin: 0 0 1% 2%;
}

@media all and (min-width: 80em) {
	.news-detail .content .media {
		float: right;
		margin: 0 0 1% 2%;
	}
}

.news-detail .content .media img {
	display: block;
	margin: 0 auto 10px;
	border: 1px solid rgba(65, 65, 65, 0.5);
}

.news-detail .content .media figcaption {
	text-align: left;
}