.box_mitarbeiter {
	position: relative;
}

.box_mitarbeiter_line {
	position: relative;	
}

.box_mitarbeiter_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px 20px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 15px;
}

.box_mitarbeiter_item {
	float: none;
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0;
	box-sizing: border-box;
}

.mitarbeiter_img {
	width: 100%;
	max-width: 200px;
	height: auto;
	aspect-ratio: 175 / 131;
	background: #ffffff;
	border: 1px solid #bfbfbf;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.mitarbeiter_img img {
	position: static;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mitarbeiter_titel {
	font-size: 14px;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
	color: #073C6D;
	width: 100%;
	margin-top: 4px;
	position: relative;
	box-sizing: border-box;
}

.mitarbeiter_text {
	font-size: 13px;
	line-height: 1.3;
	font-weight: normal;
	text-align: center;
	color: #555555;
	width: 100%;
	margin-top: 2px;
	position: relative;
	box-sizing: border-box;
}

.mitarbeiter_trenner_vertical,
.mitarbeiter_trenner_horizontal {
	display: none !important;
}