* { margin: 0 auto; }

.nl-page body {
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg, #ffffff);
    color: var(--text, #111111);
}

.nl-page .newsletter-footer {
    max-width: 560px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 100%;
    border-top: 2px solid var(--border, #d0d0d0);
    display: block;
    box-sizing: border-box;
}

.nl-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent, #1400c8);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 0.7rem 1.8rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}
.nl-page .btn-primary:hover {
    background: var(--accent-dim, #3a2fe0);
}

.nl-content-container {
    overflow: hidden;
}

/* Generic anchor text content */
.nl-page .anchor-text {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-nav);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    background: transparent;
    border: none;
    text-transform: uppercase;
    padding: 0.2em 0.5em;
    cursor: pointer;
    transition: color 0.15s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    line-height: 1.4;
}
.nl-page a.anchor-text:visited {
    color: inherit;
}
