/* Das ist neu und sorgt für die Reihe */
.team_container {
    display: flex;
    flex-direction: row;  /* Erzwingt die Reihe */
    flex-wrap: wrap;      /* Falls der Bildschirm zu schmal wird, rutschen sie untereinander */
    justify-content: center; /* Zentriert die Boxen auf der Seite */
    gap: 16px;            /* Der Abstand zwischen den Boxen */
    width: 100%;
}

.team_frame {
    width: 380px;
    background: #161616 url(/images/MysticSeas/bg.png);
    border: 5px #111111 solid;
    height: 470px;
    margin-bottom: 53px;
    display: flex;
    flex-direction: column;
}

.team_oben {
    background: #111111;
    height: 50px;
    width: 100%;
    border-bottom: 1px dashed #8b7d43;
}

.team_bild {
    margin: -35px auto 0 auto; /* Zentriert das Bild perfekt in der Mitte */
    background: #111;
    width: 171px;
}

img.team_bildIMG {
    border: 1px #8b7d43 dashed;
    padding: 10px;
    background: #101c1d;
    opacity: 0.5;
    width: 150px;
}

.team_name {
    color: #8b7d43;
    font-family: 'Cyberpunk';
    font-size: 40px;
    /* font-weight: 600; */
    text-align: center;
    letter-spacing: 0px;
    /* text-transform: uppercase; */
}

.team_text {
    background: #111111;
    padding: 10px;
    height: 100px;
    font-size: 12px;
    text-align: justify;
    overflow: auto;
    color: #737373;
}

/* Die Aufgaben auch auf Flexbox umgestellt für saubere Spalten */
.team_aufgaben {
    margin-top: 7px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team_tasks {
    background: #111111;
    margin: 2px;
    width: 48%; /* Sorgt für zwei Spalten nebeneinander */
    padding: 2px 5px;
    color: #656565;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    height: 16px;
    box-sizing: border-box;
}

.team_kontakt {
    background: #111111;
    padding: 5px;
    height: 15px;
    margin-top: auto; /* Schiebt die Kontaktzeile immer ganz nach unten, egal wie kurz der Text ist */
    text-align: center;
    color: #8b7d43;
}