#personen_uebersicht_kompakt {
	width: 100%;
	margin-top: 0.5rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 0.5rem;
}


#personen_uebersicht_kompakt > div.person_kompakt_bild:nth-of-type(1) {
	grid-row-start: 1;
	grid-col-start: 1;
}
#personen_uebersicht_kompakt > div.person_kompakt_bild:nth-of-type(2) {
	grid-row-start: 1;
	grid-col-start: 2;
}
#personen_uebersicht_kompakt > div.person_kompakt_bild:nth-of-type(3) {
	grid-row-start: 1;
	grid-col-start: 3;
}
#personen_uebersicht_kompakt > div.person_kompakt_bild:nth-of-type(4) {
	grid-row-start: 1;
	grid-col-start: 4;
}
#personen_uebersicht_kompakt > div.person_kompakt_bild:nth-of-type(5) {
	grid-row-start: 3;
	grid-col-start: 1;
}
#personen_uebersicht_kompakt > div.person_kompakt_daten:nth-of-type(1) {
	grid-row-start: 2;
	grid-col-start: 1;
}
#personen_uebersicht_kompakt > div.person_kompakt_daten:nth-of-type(2) {
	grid-row-start: 2;
	grid-col-start: 2;
}
#personen_uebersicht_kompakt > div.person_kompakt_daten:nth-of-type(3) {
	grid-row-start: 2;
	grid-col-start: 3;
}
#personen_uebersicht_kompakt > div.person_kompakt_daten:nth-of-type(4) {
	grid-row-start: 2;
	grid-col-start: 4;
}
#personen_uebersicht_kompakt > div.person_kompakt_daten:nth-of-type(5) {
	grid-row-start: 4;
	grid-col-start: 1;
}


.person_kompakt_bild img {
	width: 100%;
}

