/************* TEAM PAGE *************************************/

.team-wrapper{
    width: 1100px;
    margin: 60px auto;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;

    font-family: 'Yeseva One', serif;
    text-transform: uppercase;
    box-sizing: border-box;
}

/* Spalte */
.team-column{
    width: 320px;

    background: rgba(200, 195, 180, 0.6);
    border: 1px solid #8b7d6b;
    border-radius: 22px;

    padding: 30px;
    box-sizing: border-box;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
}

.team-column:hover{
    transform: translateY(-4px);
}

/* Überschrift */
.team-heading{
    position: relative;

    margin: 0 auto 18px auto;
    padding-bottom: 10px;

    font-size: 20px;
    letter-spacing: 0.12em;

    color: #4f4438;

    border-bottom: 1px solid #8b7d6b;
}

.team-heading::first-letter{
    color: #b56d52;
}

/* Avatarbereich */
.team-bild{
    width: 100%;
    margin: 25px 0;
    text-align: center;
}

.team-bild img{
    width: 190px;
    height: 190px;

    object-fit: cover;

    border-radius: 100%;

    display: block;
    margin: 0 auto;

    border: 5px solid #b7aa98;

    filter: saturate(0.92) contrast(1.02);
}

/* Aufgabenliste */
.team-tasks{
    background: radial-gradient( ellipse at top, #e3ddd2 0%, #d4cec1 60%, #c9c2b4 100% );

    border: 1px solid #7b6e5e;
    border-radius: 16px;

    padding: 18px 20px;

    height: 170px;
    overflow: auto;

    text-align: left;

    font-size: 11px;
    line-height: 1.9;

    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.08em;

    color: #3f3a34;

    box-sizing: border-box;
}

/* Scrollbar */
.team-tasks::-webkit-scrollbar{
    width: 4px;
}

.team-tasks::-webkit-scrollbar-track{
    background: #b7aa98;
}

.team-tasks::-webkit-scrollbar-thumb{
    background: #7b6e5e;
    border-radius: 10px;
}