.team-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 100px;
}

@media only screen and (max-width: 767px) {
    .team-grid {
        row-gap: 30px;
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card__image-wrapper {
    margin-bottom: 24px;
    width: 100%;
    display: block;
    overflow: hidden;
}

.team-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@supports (aspect-ratio: 1 / 1) {
    .team-card__image {
        aspect-ratio: 1 / 1;
    }
}

.team-card__name {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    margin: 0 0 6px 0;
}

.team-card__desc {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #888;
    margin: 0;
}
