.view-liste-equipe {
    .view-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 32px;
        grid-auto-rows: 1fr;
        width: 327px;
        margin: 0 auto;
    }
}

.team-card{
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    height: 100%;

    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;

    img {
        margin:0;
        clip-path: circle(50px);
    }

    h3 {
        margin-top: 12px;
        margin-bottom: 24px;
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        line-height: 130%; /* 41.6px */
    }

    p {
        margin:0;
        text-align: center;
        font-size: 14px;
        line-height: 140%; /* 19.6px */
    }
}

@media all and (min-width: 800px) {
    .view-liste-equipe {
        .view-content {
            width: 700px;
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media all and (min-width: 1600px) {
    .view-liste-equipe {
        .view-content {
            width: 100%;
            grid-template-columns: repeat(4, 1fr);
        }
    }
}