.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(14em, 1fr));
    gap: 2rem;
}

.team-item-photobox {
    position: relative;
}

.team-item-namebox {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(26,26,26,.8);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1rem 5%;
    text-transform: uppercase;
}

.team-item-infobox {
    display: flex;
    flex-direction: column;
    background-color: var(--e-global-color-primary);
    color: white;
    padding: 1rem 5%;
}

.team-item-infobox a {
    color: white;
}

.team-item-infobox-function {
    margin-bottom: 1rem;
}