.header-links {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    @media (min-width: 1024px) {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0;
        border: 0;
    }
}

.header-links-mobile {
    display: contents;
    @media (min-width: 1024px) {
        display: none;
    }
}

.header-links-desktop {
    display: none;
    @media (min-width: 1024px) {
        display: contents;
    }
}

.header-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0;
    line-height: 1;
    font-size: 1rem;

    @media (min-width: 1024px) {
        padding: 0;
    }


    &:hover .link-text {
        text-decoration: underline;
    }
}

.header-link:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 0.75rem;
}

.authorization-link:before {
    content: "\f007";
}

.account-link:before {
    content: "\f015";
}

.support-link:before {
    content: "\f059";
}
