.team .wpb_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* Abstand zwischen den Elementen */
    margin: 0 -10px; /* Optional: Ausgleich für padding */

}


.th3_member{
	text-align: center;
	    flex: 0 0 calc(33.333% - 60px); /* Exakt 3 pro Reihe */
    max-width: calc(33.333% - 60px);
    box-sizing: border-box;
 

}


.th3_member .img{
	position: relative;
	text-align: center;
	margin-bottom: 30px;
	    width: 100%;
    overflow: hidden;

}

.th3_member .img img {
	position: relative;
    width: 100%;
		left:50%;
		transform: translateX(-50%);
    max-width: 400px;
    height: auto;
    display: block;
}	

.th3_member .person{
	font-size: 1.5em;
	   padding: 50px;
	   line-height: 1.3em;
}
.th3_member .person strong{
	font-size: 1.1em;
	font-family: var(--strongfontFamily);
}


@media screen and (max-width: 1124px) {

	.th3_member {
  flex: 0 0 calc(50% - 60px);
  max-width: calc(50% - 60px);
}
	

}



@media screen and (max-width: 840px) {

	.th3_member {
  flex: 0 0 100%;
  max-width: 100%;
	}
	

}

