.contact-persons-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.contact-person {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
}

.person-image {
    max-width: 175px;
    height: 100%;
}

.person-image img {
    max-width: 100%;
    height: inherit;
}

.person-name {
    font-weight: bold;
}

.person-contact {
    color: #666;
}