.px_team_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.px_team_card {
    border: 0;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.px_team_image_wrap {
    line-height: 0;
}

.px_team_image {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.px_team_image_placeholder {
    background: #f1f1f1;
}

.px_team_content {
    padding: 18px 0 0;
}

.px_team_name {
    margin: 0 0 6px;
}

.px_team_job {
    margin: 0 0 14px;
}

.px_team_email {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--e-global-color-accent);
    color: #fff;
}

.px_team_email svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1024px) {
    .px_team_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .px_team_grid {
        grid-template-columns: 1fr;
    }
}
