.article-ns {
    --ns-navy:   #0e2c47;
    --ns-orange: #fe6c3b;

    box-sizing: border-box;
    background: var(--ns-navy);
    border-radius: 12px;
    padding: 36px 16px 20px;
    margin: 0 0 24px;
    font-family: Inter, sans-serif;
    color: #fff;
}

.article-ns__inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.article-ns__heading {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
.article-ns__subtext {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.article-ns__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 11px;
}
.article-ns__input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.2;
}
.article-ns__input::placeholder { color: rgba(255, 255, 255, 0.7); }
.article-ns__input:focus-visible { outline: 2px solid var(--ns-orange); outline-offset: 1px; }

.article-ns__submit {
    width: 100%;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    background: var(--ns-orange);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}
.article-ns__submit:hover { filter: brightness(0.96); }

.article-ns__note {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}
.article-ns__note p { margin: 0; }
.article-ns__note a { color: inherit; text-decoration: underline; }

@media (min-width: 768px) {
    .article-ns {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        padding: 40px;
        background: linear-gradient(135deg, #0e2c47 0%, #1b3a5c 100%);
    }

    .article-ns::after {
        content: '';
        position: absolute;
        top: -100px;
        left: 22px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(179, 229, 252, 0.08) 0%, rgba(179, 229, 252, 0) 70%);
        pointer-events: none;
    }
    .article-ns__inner {
        position: relative;
        z-index: 1;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .article-ns__heading {
        font-size: 2.6rem;
        line-height: 1.31;
        max-width: 620px;
    }
    .article-ns__subtext {
        font-family: Merriweather, Georgia, 'Times New Roman', serif;
        font-size: 1.4rem;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.6);
        max-width: 540px;
    }
    .article-ns__form {
        flex-direction: row;
        justify-content: center;
        align-self: center;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
        max-width: 482px;
    }
    .article-ns__input {
        flex: 1 1 auto;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.35);
        padding: 17px 16px;
    }
    .article-ns__submit {
        width: auto;
        flex: 0 0 auto;
        border-radius: 6px;
        padding: 13px 22px;
        font-size: 2rem;
        font-weight: 600;
    }
    .article-ns__note {
        font-size: 1.4rem;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 8px;
    }
}
