/* two column layout for desktop */

.staff-member-listing {
	display: flex;
	display: -ms-flexbox;
	padding: 0;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: flex-start;
	margin: -28px -25px;
}

.staff-member {
	flex: 0 1 270px;
	padding: 28px 25px;
}

.staff-member-bio {}

.staff-member.even {}

.staff-member.odd {}

/* Staff member image */
.staff-member-photo {
	width: 100%;
	height: auto !important;
	padding-top: 75%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.staff-member-photo>img {
	position: absolute;
	z-index: -1;
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
	pointer-events: none;
}

/* staff description */
.staff-member-name {
	margin-top: 30px;
	font-weight: 400;
	font-size: 20px;
}

.staff-member-bio p {
	margin: 0 !important;
}

@media (max-width:781px) {
	.staff-member-listing {
		margin: -24px -12px;
	}

	.staff-member {
		flex: 1 0 34%;
		padding: 24px 12px;
	}
}

@media (max-width:700px) {
	.staff-member-listing {
		margin: -35px 0;
	}

	.staff-member {
		flex: 1 0 100%;
		padding: 35px 0;
	}
}