.team-overview{
    --columns: 5;
    display:grid;
    grid-template-columns: repeat(var(--columns),1fr);
    justify-items: center;
    row-gap: 4rem;
}
.team-overview .team-item{
    width:100%;
    max-width: 140px;
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-weight: 100;
}
.team-overview .team-item .team-itemImage{
    width:100%;
    height: auto;
    aspect-ratio: 1;
    border-radius:50%;
    border:5px solid #fff;
    box-shadow:0 0 10px 0 rgba(0,0,0,0.1);
}
.team-overview .team-item .team-itemContent{
    /* font-style:italic; */
    text-align: center;
}
.team-overview .team-item .team-itemContent span{
    font-weight:500;
    margin-bottom:5px;
    display:inline-block;
}
.team-overview .team-item .team-itemContent i{
    font-size:0.9rem;
    line-height: 1.2rem;
    display: inline-block;
    color: rgba(0,0,0,0.5);
}


@media screen and (max-width:1200px){
    .team-overview{
        --columns:4;
    }
}

@media screen and (max-width:800px){
    .team-overview{
        --columns:3;
    }
}
@media screen and (max-width:769px){
    .team-overview{
        --columns:2;
    }
}
@media screen and (max-width:440px){
    .team-overview{
        --columns: 2;
    }
}