/* Header phone + email stack */
.header-contact-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    flex: 0 0 auto;
    text-align: right;
    line-height: 1.15;
}

.header-contact-stack .phone {
    display: block;
    white-space: nowrap;
}

.header-contact-stack__mail,
.mobile-header-contact__mail {
    display: block;
    width: max-content;
    margin-left: auto;
    color: #0b4065;
    font-size: 12px;
    line-height: 1.15;
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.header-contact-stack__mail:hover,
.mobile-header-contact__mail:hover {
    color: #0069b6;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 760px) {
    .header-contact-stack {
        display: none !important;
    }

    .mobile-header-contact {
        align-items: flex-end !important;
        text-align: right !important;
    }

    .mobile-header-contact__phone,
    .mobile-header-contact__mail {
        width: max-content;
        margin-left: auto;
        text-align: right;
    }
}


/* Header email v2 */
.header-contact-stack__mail,
.mobile-header-contact__mail {
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 400;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    cursor: pointer;
}

.header-contact-stack__mail:hover,
.mobile-header-contact__mail:hover {
    color: #0069b6 !important;
    text-decoration: none !important;
}

@media (max-width: 760px) {
    .mobile-header-contact__mail {
        font-size: 12px !important;
    }
}
