.contacts-page {
    width: 1440px;
    padding: 60px 140px 120px;
}

.contacts-page__title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
}

.contacts-list {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #E7E8E4;
    flex-shrink: 0;
}
.contact-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-card__info {
    display: flex;
    flex-direction: column;
}

.contact-card__name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000;
    margin-bottom: 6px;
}

.contact-card__role {
    font-size: 14px;
    font-weight: 400;
    color: #575856;
    margin-bottom: 22px;
}

.contact-card__tg {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .15s;
}
.contact-card__tg:hover { color: #00862C; }
.contact-card__tg-icon { flex-shrink: 0; }

.contact-card__contact {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color .15s;
}
.contact-card__contact:hover { color: #00862C; }
