/* Container-Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Team-Member Box */
.team-member {
    text-align: center;
    max-width: 300px;
}

/* Rundes Bild */
.team-image {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
}

/* Name (h3) Styling */
h3.perso-name {
    font-size: 24px;
    font-weight: 300;
    padding-bottom: 10px;
}

/* Position Highlight */
.highlight {
    font-weight: 700;
    color: #78B833 !important;
    line-height: 1em;
    text-align: center;
}

/* Zusatztext */
.team-text {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}
