@import url(http://cdn.theatlantic.com/assets/static/common/fonts/proxima-nova.css);
@import url(http://cdn.theatlantic.com/assets/static/common/fonts/lyon.css);
@import url(http://cdn.theatlantic.com/assets/static/common/fonts/rajdhani.css);

body {
	font-family: "Lyon Text", serif;
	margin: 0;
}

.people {
	font-size: 14pt;
	margin: auto;
}

.people .header {
	font-family: Rajdhani, sans-serif;
	text-transform: uppercase;
	font-size: 80pt;
	display: none;
}

.person {
	margin-bottom: 400px;
	position: relative;
	border-bottom: 20px solid red;
	padding: 0 0 20px 0;
	vertical-align: top;
}

.person td {
	padding-bottom: 75px;
	position: relative;
}

.person .portrait {
	width: 125px;
	height: 125px;
	border-radius: 50%;
	background-color: red;
	margin: auto;
	display: block;
	vertical-align: top;
	margin-right: 30px;
	background-position: center;
	background-size: contain;
	background-blend-mode: screen;
	overflow: hidden;
	position: relative;
	border: 5px solid;
	border-color: rgba(255,255,255,0);
	background-color: rgba(255,255,255,0);
	
}

	.person .portrait img {
		width: 100%;
		z-index: 2;
		top: 0;
		left: 0;
	}

	
	.portrait:after {
		content: "1";
		position: absolute;
		bottom: 0;
		right: 0;
		background-color: black;
		width: 30px;
		height: 30px;
		display: none;
	}


.person .name {
	font-family: Rajdhani, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 35pt;
	text-align: left;
	margin: 0px 0px 5px;
	padding-top: 35px;
	line-height: .85em;
}

.person .text {
	font-size: 15pt;
	line-height: 1.4em;
	font-family: Proxima Nova, sans-serif;
	color: #444;
}

.person .line {
	width: 5%;
	height: 100%;
	position: absolute;
	top: 10px;
	left: 40%;
	background-color: red;
	z-index: -1;
}

.person:last-of-type .line {
	display: none;
}

@media screen and (max-width: 600px) {
	
	html {
		overflow-x: hidden;
	}
	
	td:first-child {
		display: none;
	}
	
	td {
		width: 100%;
		display: block;
	}
	
	.text {
		font-size: 13pt;
	}
	
	.header span {
	
	}
	
	.header span:first-child {
	//	display: block;
	}
	
}