/* ──────────────────────────────────────────────────────────────
   v2 personenraster — [showTeam] en [showPartner]
   ────────────────────────────────────────────────────────────── */

.v2-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 22px;
    margin: 24px 0;
}

@media (max-width: 900px) {
    .v2-people-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .v2-people-grid {
        grid-template-columns: 1fr;
    }
}

.v2-people-card {
    text-align: center;
    background: #F8F9FA;
    border: 1px solid #D5D5D5;
    border-radius: 12px;
    padding: 3em 2em;
}

.v2-people-card__photo {
    display: flex;
    justify-content: center;
}

.v2-people-card__photo img,
.v2-people-card__placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.v2-people-card__placeholder {
    display: block;
    background: #e3e5ea;
}

.v2-people-card__name {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.v2-people-card__role {
    margin-top: 4px;
    font-size: 16px;
    color: #555;
}
