/* Контакты с защитой от спам-ботов */
.contact-masked {
    cursor: pointer;
    border-bottom: 1px dashed currentColor;
    transition: color 0.2s, border-color 0.2s;
}
.contact-masked:hover {
    color: #007aff;
    border-bottom-style: solid;
}
.contact-revealed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.contact-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    border-radius: 4px;
    transition: background 0.15s;
    line-height: 1;
}
.contact-copy-btn:hover {
    background: rgba(0, 122, 255, 0.1);
}
