.nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    min-height: 43px;
    border-radius: 24px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.nl-btn:focus-visible {
    outline: 3px solid rgba(23, 55, 80, 0.22);
    outline-offset: 3px;
}

.nl-btn--outline {
    color: #173750;
    background: rgba(23, 55, 80, 0.04);
    border: 1px solid rgba(23, 55, 80, 0.22);
}

.nl-btn--outline:hover {
    background: #173750;
    border-color: rgba(23, 55, 80, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.nl-btn--outline:active {
    transform: translateY(0);
    box-shadow: none;
}

.nl-btn--invert {
    color: #ffffff;
    background: #173750;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nl-btn--invert:hover {
    background: #ffffff;
    border-color: rgba(23, 55, 80, 0.22);
    color: #173750;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.nl-btn--invert:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.news-nav__cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .nl-btn {
        padding: 9px 19px;
        font-size: 17px;
        min-height: 41px;
    }
}
