.related-persons h2 {
	font-size: 20px;
}

.related-persons .team-wrapper {
	display: flex;
	gap: 36px;
	justify-content: center;
	padding-top: 30px;
	flex-wrap: wrap;
}
.related-persons .team-wrapper a:hover {
	color: inherit;
}
.related-persons .team-wrapper picture {
	overflow: hidden;
	display: block;
	max-width: 108px;
	width: 108px;
	height: 108px;
	border-radius: 108px;
	position: relative;
	margin: 0 auto;
}
.related-persons .team-wrapper picture img {
	max-width: 108px;
	transform: scale(1);
	transition: all 0.3s ease;	
}
.related-persons .team-wrapper picture:after {
	background: rgba(0,0,0,0);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all 0.3s ease;
} 
.related-persons .team-wrapper picture:hover:after {
	background: rgba(0,0,0,0.4);
	transition: all 0.3s ease;
}
.related-persons .team-wrapper span {
	display: block;
	width: 100%;
	padding-top: 18px;
	max-width: 108px;
	font-size: 18px;
}
.related-persons .team-wrapper picture:hover img {
	transform: scale(1.05);
	transition: all 0.3s ease;
}