.leaders {
	display: grid;
	grid-gap: 30px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.leaders.cols-4 {
	grid-template-columns: repeat( 2, 1fr );
}

.leaders.cols-3 {
	grid-template-columns: repeat( 2, 1fr );
}

.leaders.cols-2 {
	grid-template-columns: repeat( 2, 1fr );
}

.leaders.cols-1 {
	grid-template-columns: 1fr;
}

.leader {

}

.leader-photo,
.leader-name,
.leader-title,
.leader-email,
.leader-edit-link {
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.leader-name {
	font-weight: 600;
	font-size: 1em;
}

.leader-title {
	color: #676767;
	font-weight: 600;
	font-size: .90em;
}


.leader-email {
	font-size: 1rem;
}

.leader-edit-link {
	font-size: .85rem;
}

.leader-photo {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	margin-bottom: 10px;
}

.leader-photo .overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right:0;
	height: 100%
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #ed8f49;
	border-radius: 100%;
}

.leader-link:hover .leader-photo .overlay {
	opacity: .25;
}

.leader-link:hover {
	text-decoration: none;
}

@media ( min-width: 692px ) {

	.leaders.cols-4 {
		grid-template-columns: repeat( 3, 1fr );
	}

	.leaders.cols-3 {
		grid-template-columns: repeat( 3, 1fr );
	}

	.leaders.cols-2 {
		grid-template-columns: repeat( 2, 1fr );
	}

	.leaders.cols-1 {
		grid-template-columns: 1fr;
	}

	.leader-photo {
		width: 200px;
		height: 200px;
	}	

}

@media( min-width: 934px ) {

	.leaders.cols-4 {
		grid-template-columns: repeat( 4, 1fr );
	}

	.leaders.cols-3 {
		grid-template-columns: repeat( 3, 1fr );
	}

	.leaders.cols-2 {
		grid-template-columns: repeat( 2, 1fr );
	}

	.leaders.cols-1 {
		grid-template-columns: 1fr;
	}

}

@media ( min-width: 1158px ) {

	.leader-photo {
		width: 200px;
		height: 200px;
	}

}