.people-container {

    max-width: 75vw;

}

.person {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;

    width: 100%;
    max-width: 500px;

    height: fit-content;

    box-sizing: border-box;
    text-align: center;
}

.person-info {
    padding: 0 1rem 1rem 1rem;
    box-sizing: border-box;
    width: 100%;
    flex-direction: column;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .person {
        flex-direction: row;
        width: 100%;
        max-width: 1200px;
    }
}

.person img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    border-radius: 3px;
    padding: 0.5rem;
    box-sizing: border-box;
}

.person h3 {
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.2em;
    font-weight: 600;
}

.person div,
.person p {

    margin: 0.1em 0;
    font-size: 1em;

}

.person a {
    color: var(--font-color);
    text-decoration: none;
    word-break: break-all;
}