.team-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.team-cards__wrapper {
    display: flex;
    flex-direction: column;
}

.team-card:not(:last-of-type) {
    margin-bottom: 25px;
}

.team-card {
    position: relative;
}

.team-card__image-wrapper {
    margin-bottom: 20px;
    aspect-ratio: 0.79;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}

.team-card__image-wrapper img {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.team-card__text-wrapper * {
    color: #7B7B7B;
}

.team-card__description {
    font: 400 14px/1.5 'Pluto Sans DPD', sans-serif;
    letter-spacing: 0.01em;
}

.team-card__name {
    margin-bottom: 2px;
    font: 400 24px/1.3 'Pluto Sans DPD', sans-serif;
}

.team-card__position {
    margin-bottom: 18px;
    font: 400 24px/1.5 'Pluto Sans DPD', sans-serif;
}

.team-cards__button {
    display: inline-block;
    width: auto;
    margin-top: 20px;
    padding: 12px 15px;
    font: 400 12px / 1.42 'Pluto Sans DPD', sans-serif;
    text-transform: capitalize;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.team-cards__button:hover {
    opacity: 0.9;
}

@media screen and (min-width: 768px) {
    .team-cards__wrapper {
        max-width: 1100px;
        margin: 0 auto;
        flex-direction: row;
    }

    .team-card {
        width: calc(33.33% - 30px);
        margin: 0 auto!important;
    }
}