/* All PVD pages */
.roosters {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container {
	margin: 0 10rem;
}

.titleArea {
	display: flex;
	align-items: center;
	padding: 1.5rem 1.5rem;
}

.titleLogo {
	height: 6rem;
	margin-right: 1rem;
	cursor: pointer;
}

.titleLogoText {
	font-size: 2rem;
	margin-right: 3rem;
}

.pvdTopNav {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding: 15px 0px;
	border-left: 1px solid black;
}

.pvdTopNav img {
	height: 6rem;
	padding: 0 2rem;
}

.rosterWrapper {
	background: #edeef0;
	padding: 0rem 0 10rem 0;
}

.banner {
	background: #790100;
	background-image: url(../assets/cl-roosters.png);
	background-position: center;
	height: 18rem;
	opacity: 0.5;
}

.pvdTeam {
	text-align: center;
}

.pvdTeam h1 {
	font-size: 4rem;
	font-weight: 100;
}

.pvdTeam p {
	font-size: 1.6rem;
}

.highlight {
	font-weight: bold;
	color: #790100;
}

.pvdLinks {
	color: #004d98;
	font-size: 1.8rem;
	margin: 0 15rem;
	border-bottom: 0.1rem solid lightgray;
}

.pvdLinks ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 3rem 0 1.5rem 0;
}

.pvdLinks a {
	display: block;
	color: #333;
	font-weight: bold;
	padding: 1.5rem 3rem;
	margin: 0 4em;
}

.pvdLinks a:hover {
	transform: scale(1.3);
	color: #004d98;
}

.pvdPlayers {
	display: grid;
	grid-template-columns: 90% 10%;
	background: white;
	border-radius: 3rem;
	margin: 0 15rem;
}

.pvdMainBody {
	display: grid;
	grid-template-columns: 15% 60% 20%;
	grid-gap: 2rem;
	margin: auto;
}

.playerCard {
	border: lightgray;
	border-radius: 1rem;
	max-height: 75rem;
}

.playerCard h3 {
	text-align: center;
	font-size: 1.7rem;
	padding-top: 0.5rem;
}

.playerCard img {
	height: 3rem;
	border-radius: 50%;
}

.card {
	display: flex;
	margin: 1rem 1rem;
	padding: 0.3rem;
	background: white;
	border: 0.08rem solid #790100;
	border-radius: 1rem;
}

.card:hover {
	transform: scale(1.1);
}

.cardInfo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 1rem;
}

.cardInfo a {
	color: #004d98;
	font-size: 1.3rem;
}

.cardInfo p {
	font-size: 1.3rem;
	font-weight: bold;
}

.articles {
	margin: 2rem auto 2rem auto;
}

.articleCard {
	border-radius: 1.5rem 1.5rem 0 0;
	margin: 0 auto 4rem auto;
}

.articleCard img {
	width: 100%;
	border-radius: 1.5rem 1.5rem 0 0;
}

.articleWrap {
	padding: 2rem;
	background: white;
	border: lightgray;
}

.articleWrap h2 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-align: center;
	border-bottom: 0.1rem dotted #790100;
}

.articleWrap p {
	font-size: 1.5rem;
}

.ecblPanel {
	margin-top: 2rem;
	padding-left: 1rem;
	background: white;
	height: auto;
	width: auto;
	display: flex;
	flex-direction: column;
	border-radius: 1rem 1rem 0 0;
	max-height: 70rem;
}

.ecblPanel h3 {
	text-align: center;
	font-size: 1.8rem;
	padding-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.ecblPanel caption {
	font-size: 1.7rem;
	text-align: left;
	font-weight: bold;
}

.ecblPanel th {
	padding-right: 1.5rem;
	font-size: 1.5rem;
	text-align: left;
}

.ecblPanel td {
	padding-right: 1.5rem;
	font-size: 1.1rem;
}

.ecblPanel img {
	height: 1.4rem;
}

/* PVD Roster Table */
.pvdRosterTable {
	border-radius: 1.5rem;
	width: 95%;
	margin: auto;
}

.pvdPlayers caption {
	font-size: 3rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 1.5rem;
}

.pvdPlayers th {
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: underline;
}

.pvdPlayers td {
	font-size: 1.4rem;
	line-height: 1.9rem;
	white-space: nowrap;
}

.pvdPlayers td a {
	color: #004d98;
}

.pvdPlayers tr:nth-child(even) {
	background: #edeef0;
}

.pvdStatsTable tr:nth-child(even) {
	background: #edeef0;
}

.leadersTitle {
	font-size: 3rem;
	padding: 0 0 1.5rem 2rem;
}

.pvdStats {
	display: grid;
	grid-template-areas:
		"leaders ."
		"table social";
	padding: 0 2rem;
}

/* PVD Stats Table */
.pvdStatsTable {
	border-radius: 1.5rem;
	width: 95%;
	margin: auto;
	font-size: 1.8rem;
	grid-area: table;
	background: white;
	padding: 1rem 2rem;
}

.pvdStatsTable th {
	text-align: left;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: underline;
}

.pvdStatsTable td {
	font-size: 1.6rem;
	line-height: 2.5rem;
	white-space: nowrap;
}

.leaders {
	grid-area: leaders;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 3rem;
}

.leaders img {
	height: 7rem;
	border-radius: 50%;
	padding: 1rem;
}

.leaders h4 {
	font-size: 1.3rem;
}

.leaders p {
	font-size: 1.5rem;
}

.leadInfo {
	display: flex;
	flex-direction: column;
	padding: 0.3rem;
}

.ptsLead,
.rebLead,
.asstLead,
.stlLead,
.blkLead {
	display: flex;
	border: 0.1rem solid lightgray;
	background: white;
	border-radius: 1rem;
}

span .headshot {
	vertical-align: middle;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	margin-left: 2rem;
}

.pvdSocialStats {
	grid-area: social;
}

.pvdSocialStats ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.pvdSocialStats li {
	margin: 3rem 3rem;
}

.pvdSocialStats .fa {
	font-size: 4rem;
	cursor: pointer;
}

.pvdSocialHome {
	padding: 3rem 0;
}

.pvdSocialHome ul {
	list-style: none;
	display: flex;
	flex-direction: row;
}

.pvdSocialHome li {
	margin: 3rem 3rem;
}

.pvdSocialHome .fa {
	font-size: 4rem;
	cursor: pointer;
}

.pvdSocial {
	padding: 3rem 0;
}

.pvdSocial ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.pvdSocial li {
	margin: 3rem 3rem;
}

.pvdSocial .fa {
	font-size: 4rem;
	cursor: pointer;
}

.fa-twitter {
	color: #4c90c4;
}

.fa-facebook {
	color: #4267b1;
}

.fa-youtube {
	color: #ff0100;
}

.fa-instagram {
	color: #892498;
}

.pvdSocial .fa:hover {
	transform: scale(1.2);
}

.pvdSocialStats .fa:hover {
	transform: scale(1.2);
}

.pvdSocialHome .fa:hover {
	transform: scale(1.2);
}
