.staff-member-listing {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 24px 0 10px;
}

.staff-member {
	box-sizing: border-box;
	margin: 0;
	padding: 22px 24px;
	background: #f9fafb;
	border: 1px solid #e2e7ec;
	border-left: 4px solid #0066cc;
	border-radius: 4px;
}

.staff-member:nth-child(3n+2) {
	border-left-color: #e77a20;
}

.staff-member:nth-child(3n) {
	border-left-color: #72a927;
}

.staff-member-info-wrap {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
}

.staff-member-name {
	margin: 0 0 7px;
	color: #344454;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.staff-member-position {
	margin: 0;
	color: #687582;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

@media screen and (max-width: 650px) {
	.staff-member-listing {
		grid-template-columns: 1fr;
	}

	.staff-member {
		padding: 19px 20px;
	}
}
