/*  div wrapped around entire staff list  */
    div.staff-member-listing {
}
/*  div wrapped around each staff member  */
div.staff-member {
    padding-bottom: 2em;
    border-bottom: thin dotted #aaa;
}
/*  Even staff member  *//* 2x2 Grid Layout */
.simple-staff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Team-Mitglied Karte */
.simple-staff-list .staff-member {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover Effekt */
.simple-staff-list .staff-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Profilbild als Kreis */
.simple-staff-list .staff-member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Optional: Bild leicht vergrößern beim Hover */
.simple-staff-list .staff-member:hover img {
    transform: scale(1.05);
}

/* Responsive: 1 Spalte auf Mobil */
@media (max-width: 768px) {
    .simple-staff-list {
        grid-template-columns: 1fr;
    }
}
div.staff-member.even {
}
/*  Odd staff member  */
div.staff-member.odd {
    margin-top: 2em;
}
/*  Last staff member  */
div.staff-member.last {
    padding-bottom: 0;
    border: none;
}
/*  Wrap around staff info  */
.staff-member-info-wrap {
    float: left;
    width: 70%;
    margin-left: 3%;
}
/*  [staff-bio-formatted]  */
div.staff-member-bio {
}
/*  p tags within [staff-bio-formatted]  */
div.staff-member-bio p {
}
/*  [staff-photo]  */
img.staff-member-photo {
    float: left;
}
/*  [staff-email-link]  */
.staff-member-email {
}
/*  [staff-name-formatted]  */
div.staff-member-listing h3.staff-member-name {
    margin: 0;
}
/*  [staff-position-formatted]  */
div.staff-member-listing h4.staff-member-position {
    margin: 0;
    font-style: italic;
}
/* Clearfix for div.staff-member */
div.staff-member:after {
    content: "";
    display: block;
    clear: both;
}
/* Clearfix for <= IE7 */
* html div.staff-member { height: 1%; }
div.staff-member { display: block; }
