.henkilot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 8rem auto 3rem;
}
.henkilot .henkilo {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    padding: 1rem;
    position: relative;
    text-align: center;
    font-size: .9rem;
    font-style: italic;
    width: 30%;
}

.henkilot img, .henkilot .placeholder-image {
    width: 188px;
    max-width: 100%;
    height: 188px;
    position: relative;
    margin-top: -110px;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
    border-radius: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.henkilot .placeholder-image {
    background-image: url('picture-coming.png');
    background-position: 50% 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.henkilot h3 {
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    font-style: normal;
}

.henkilot .title {
    margin-top: .1rem;
    font-size: 1rem;
    font-style: normal;
}

.henkilot .henkilo a {
    font-size: 1rem;
    font-style: normal;
}

@media screen and (max-width: 45rem) {
    .henkilot {
        flex-direction: column;
    }
    .henkilot .henkilo {
        width: 100%;
    }
    .henkilot .henkilo:not(:last-child) {
        margin-bottom: 5rem;
    }
}
