.wp-block-people {
	margin-top: 50px;
	margin-bottom: 50px;
}

.wp-block-people--inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	margin: -1em;
}

.wp-block-person {
	display: block;
	background: #F8F8F8;
	padding: 2em;
	padding-bottom: 5em;
	text-align: center;
	border-radius: 1em;
	box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
	margin: 1em;
	width: calc(100% - 2em);
	position: relative;
}

.wp-block-person--image {
	display: block;
	width: 11em;
	margin: 0 auto 2em;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.wp-block-person--image::before {
	content: "";
	display: block;
	padding: 100% 0 0 0;
}

.wp-block-person--image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0;
}

.wp-block-person--name-job {
	line-height: 1.5em;
	text-align: center;
	font-size: 1.4286em;
}

.wp-block-person--name-job strong {
	display: block;
	margin: 1em 0 0;
	color: #199CCE;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.5em;
}

.wp-block-person--view-bio {
	display: block;
	position: absolute;
	bottom: 2rem;
	left: 0;
	width: 100%;
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	font-size: 1.25em;
}

.wp-block-person--view-bio:hover {
	text-decoration: underline;
}

.wp-block-person .wp-block-person--bio {
	display: none;
}

.wp-block-person--bio {
	text-align: center;
}

.wp-block-person--contact {
	text-align: center;
	margin: 2em 0;
}

.wp-block-person--contact a {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	line-height: 1.5em;
	font-weight: normal;
	color: white;
	text-decoration: none;
	border-radius: 0.25em;
	background: #199CCE;
	margin: 0 0.5em;
	font-size: 2em;
}

.wp-block-person--contact a.linkedin::before {
	font-family: "Font Awesome 6 Brands";
	content: "\f0e1";
}

.wp-block-person--contact a.email::before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	content: "\f0e0";
}

.wp-block-people--inner .acf-block-component {
	width: 33.33%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: stretch;
}

@media (min-width: 768px) {
	.wp-block-people--inner > .wp-block-person {
		width: calc(50% - 2em);
	}
}

@media (min-width: 960px) {
	.wp-block-people {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	.wp-block-people--inner > .wp-block-person {
		width: calc(33.33% - 2em);
	}
}