.staff-listings .etg-row--col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.staff-listings ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 1.5rem;
	margin: 0;
}
.staff-listings ul li {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	border-radius: 20px;
	background: #F5F5F5;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 0.5rem 0.5rem 1rem 0.5rem;
	flex: 1 1 100%;
	position: relative;
	margin-top: 5rem;
	color: #000;
}
.staff-listings ul li img {
	margin-top: -90px;
	max-width: 200px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 0.35rem solid #D9D9D9;
	background-color: #fff;
}
.staff-listings ul li > span {
	line-height: 1.4;
}
.staff--name {
	font-weight: 600;
}
.staff--name a {
	margin-left: 0.35rem;
}
.staff--university {
	font-size: calc(var(--font-size__base) - 2px);
}
.staff--region {
	border-radius: 120px;
	background: #EEE;
	padding: 0.25rem 1.35rem;
}
@media screen and (min-width: 700px) {
	.staff-listings ul li {
		flex: 0 1 calc(50% - 1rem);
	}
}
@media screen and (min-width: 900px) {
	.staff-listings ul li {
		flex: 0 1 calc(33.333% - 1rem);
	}
}