/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* remove vertical spacing below elements */
img, video, svg {
	display: block;
}
/* fix webfont issues */
html {
	-webkit-font-smoothing: antialiased;
}
/* allow styling of individual svg symbol instances */
svg path {
	fill: inherit;
}









/*
/
/	COLORS & FONTS
/
*/

:root {
	--color-offblack: #101010;
	--color-offblack-rgb: 16,16,16;
	--color-offwhite: #F2F2F2;
	--color-offwhite-rgb: 242,242,242;
	--color-graydark: #7F7F7F;
	--color-graylight: #E8E8E8;
	--color-live: #B60505;
	--color-live-rgb: 182,5,5;
}

@font-face {
	font-family: "ProximaNova-Regular";
	src: url('../../fonts/proximanova-regular-webfont.eot'); 
	src: url('../../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-regular-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-regular-webfont.woff') format('woff');
}
@font-face {
	font-family: "ProximaNova-Bold";
	src: url('../../fonts/proximanova-bold-webfont.eot'); 
	src: url('../../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-bold-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-bold-webfont.woff') format('woff');
}

@font-face {
	font-family: "PublicoHeadline-Bold";
	src: url('../../fonts/PublicoHeadline-Bold-Web.eot'); 
	src: url('../../fonts/PublicoHeadline-Bold-Web.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/PublicoHeadline-Bold-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoHeadline-Bold-Web.woff') format('woff');
}

@font-face {
	font-family: "PublicoHeadline-Black";
	src: url('../../fonts/PublicoHeadline-Black-Web.eot'); 
	src: url('../../fonts/PublicoHeadline-Black-Web.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/PublicoHeadline-Black-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoHeadline-Black-Web.woff') format('woff');
}

@font-face {
	font-family: "PublicoText-Roman";
	src: url('../../fonts/PublicoText-Roman-Web.eot'); 
	src: url('../../fonts/PublicoText-Roman-Web.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/PublicoText-Roman-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoText-Roman-Web.woff') format('woff');
}













/*
/
/	BASIC STYLES
/
*/

body {
	background-color: white;
}












/*
/
/	ARTICLE GRID
/
*/

.body-copy {
	margin: 20px;
}

@media only screen and (min-width: 768px) {
	.body-copy {
		margin: 40px;
	}
}
@media only screen and (min-width: 1020px) {
	.article {
		margin: 0 auto;
		width: 980px;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-gap: 40px;
	}
	.body-copy {
		margin: 40 0;
		grid-column: 2/10;
	}
}
@media only screen and (min-width: 1360px) {
	.article {
		width: 1320px;
	}
	.body-copy {
		grid-column: 2/10;
	}

}








/*
/
/	ARTICLE STYLES
/
*/

.body-copy p {
	margin: 0 0 20px 0;
	font-family: "PublicoText-Roman", serif;
	font-size: 18px;
	line-height: 25px;
	color: var(--color-offblack);
}
@media only screen and (min-width: 768px) {
	.body-copy p {
		margin: 0 0 25px 0;
		font-size: 21px;
		line-height: 31px;
	}
}













/*
/
/	BREAKING NEWS
/
*/

#breaking-news {
	/*
	top: 0;
	box-shadow: 0 4px 12px 0 rgba(0,0,0,0.25);
	*/
	position: fixed;
	bottom: 0;
	width: 100%;
	background: linear-gradient(to right, #B60505 160px, #DE3D05 100%);
	box-shadow: 0 -4px 12px 0 rgba(0,0,0,0.25);
}
#breaking-wrapper {
	height: 90px;
	cursor: pointer;
	display: flex;
	align-items: center;
}
#breaking-news .video-container {
	position: relative;
}
#breaking-news .video-overlay {
	position: absolute;
	width: 160px;
	height: 90px;
	top: 0;
	left: 0;
	background-image: linear-gradient(to right, rgba(0,0,0,.2) 0%, rgba(166,6,6,.5) 50%, #B60505 100%);
	z-index: 2;
}
#breaking-news video {
	position: relative;
	width: 160px;
	height: 90px;
	z-index: 1;
}
#breaking-news .hgroup {
	margin: 0 20px 0 0;
}
#breaking-news .metadata {
	display: flex;
	align-items: center;
}
#breaking-news .metadata li {
	margin: 0 20px 5px 0;
	font-family: "ProximaNova-Bold", sans-serif;
	font-style: normal;
	font-size: 10px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--color-offwhite);
}
#breaking-news .metadata li:first-child {
	display: none;
}
#breaking-news .metadata li:first-child::before {
	display: inline-block;
	margin: 0 5px 1px 0;
	content: '';
	background-color: var(--color-offwhite);
	border-radius: 100%;
	width: 6px;
	height: 6px;
}
#breaking-news h1 {
	font-family: "ProximaNova-Bold", sans-serif;
	font-style: normal;
	font-size: 13px;
	line-height: 15px;
	letter-spacing: 0.3px;
	color: var(--color-offwhite);
}
#breaking-wrapper:hover h1 {
	text-decoration: underline;
}
.novideo #breaking-wrapper {
	height: auto;
}
.novideo .hgroup {
	padding: 20px 0 20px 20px;
}

@media only screen and (min-width: 768px) {
	#breaking-news {
		background: linear-gradient(to right, #B60505 192px, #DE3D05 100%);
	}
	#breaking-wrapper {
		height: 108px;
	}
	#breaking-news .video-overlay,
	#breaking-news video {
		width: 192px;
		height: 108px;
	}
	#breaking-news .metadata li {
		font-size: 12px;
		letter-spacing: 2px;
	}
	#breaking-news .metadata li:first-child {
		display: initial;
	}
	#breaking-news h1 {
		font-family: "PublicoHeadline-Bold", serif;
		font-size: 17px;
		line-height: 20px;
		letter-spacing: normal;
	}
}

@media only screen and (min-width: 1020px) {
	#breaking-news {
		/*
		top: auto;
		bottom: 0;
		box-shadow: 0 -4px 12px 0 rgba(0,0,0,0.25);
		*/
		background: linear-gradient(to right, #B60505 240px, #DE3D05 100%);
	}
	#breaking-wrapper {
		height: 135px;
	}
	#breaking-news .video-overlay,
	#breaking-news video {
		width: 240px;
		height: 135px;
	}
	#breaking-news .hgroup {
		margin: 0 40px 0 0;
	}
	#breaking-news h1 {
		font-family: "PublicoHeadline-Black", serif;
		font-size: 32px;
		line-height: 1;
		letter-spacing: normal;
	}
}

@media only screen and (min-width: 1360px) {
}









/*
/
/	VIDEO BUTTON
/
*/

#breaking-news .video-button {
	position: absolute;
	left: 60px;
	top: 25px;
	width: 40px;
	height: 40px;
	z-index: 3;
	background: rgba(var(--color-live-rgb),.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#breaking-news .video-button svg {
	position: relative;
	left: 2px;
	width: 16px;
	height: 16px;
	fill: var(--color-offwhite);
}
#breaking-wrapper:hover .video-button {
	background: rgba(var(--color-offwhite-rgb),1);
	fill: var(--color-offwhite);
}
#breaking-wrapper:hover .video-button svg {
	fill: rgba(var(--color-live-rgb),1);
	fill: var(--color-live);
}

@media only screen and (min-width: 768px) {
	#breaking-news .video-button {
		top: 34px;
		left: 76px;
	}
}

@media only screen and (min-width: 1020px) {
	#breaking-news .video-button {
		top: 42px;
		left: 95px;
		width: 50px;
		height: 50px;
	}
	#breaking-news .video-button svg {
		width: 20px;
		height: 20px;
	}
}







/*
/
/	CLOSE BUTTON
/
*/

#button-close {
	padding: 5px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
#button-close div {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#button-close svg {
	width: 10px;
	height: 10px;
	fill: var(--color-offwhite);
}
#button-close:hover div {
	background: var(--color-offwhite);
}
#button-close:hover svg {
	fill: var(--color-live);
}

@media only screen and (min-width: 1020px) {
	#button-close {
		padding: 10px;
		top: 0;
		right: 0;
	}
	#button-close div {
		width: 30px;
		height: 30px;
	}
	#button-close svg {
		width: 14px;
		height: 14px;
	}
}













/*
/
/	TOGGLE
/
*/

#toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	/*
	bottom: 20px;
	*/
}
#toggle ul {
	display: flex;
	align-items: center;
	border-radius: 10px;
}
#toggle ul li {
	padding: 10px 15px 9px 15px;
	font-family: sans-serif;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid black;
}
#toggle ul li:first-child {
	border-radius: 8px 0 0 8px;
	background: black;
	color: white;
	cursor: default;
}
#toggle ul li:last-child {
	border-radius: 0 5px 5px 0;
	background: white;
	color: black;
	cursor: pointer;
}

@media only screen and (min-width: 1020px) {
	#toggle {
		/*
		top: 20px;
		bottom: auto;
		height: 40px;
		*/
	}
}











/*
/
/	Z-INDICIES
/
*/


#toggle {
	z-index: 99;
}
#breaking-news {
	z-index: 98;
}














