.header-links {
    display: none;
}

.header-links ul li a:hover {
    text-decoration: none;
}

@media (min-width: 64em) {
    .header-links {
        display: block;
        margin-right: var(--space-4);
    }

    .header-links ul{
        display: flex;
        flex-direction: row;
    }
    
    .header-links ul li a {
        color: #fff;
        text-transform: uppercase;
        font-size: calc(13px + (16 - 13) * ((100vw - 1024px) / (1400 - 1024)));
        font-weight: 500;
        font-family: 'Red Hat Display';
        letter-spacing: 0.05em;
        margin-left: calc(20px + (33 - 20) * ((100vw - 1024px) / (1400 - 1024)));
        flex-wrap: nowrap;
        align-items: center;
        white-space: nowrap;
    }
}

@media (min-width: 1440px) {
    .header-links ul li a {
        font-size: var(--text-base);
        margin-left: 33px;
    }
}
