/* === Newsletter-Anmeldung, sitzt direkt vor dem Footer === */
.nm-nl {
    --nl-navy: #16233F;
    --nl-gold: #E0AC33;
    --nl-rand: #ECE3CE;
    background: #FBF6E9;
    border-top: 1px solid var(--nl-rand);
    border-bottom: 1px solid var(--nl-rand);
    padding: clamp(24px, 3.2vw, 38px) 20px;
}
.nm-nl-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
}

.nm-nl-text h2 {
    margin: 0;
    color: var(--nl-navy);
    font-size: clamp(18px, 1.9vw, 23px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.008em;
}
.nm-nl-text p {
    margin: 7px 0 0;
    max-width: 46ch;
    color: #5a6270;
    font-size: clamp(13px, 1.05vw, 14.5px);
    line-height: 1.55;
}

.nm-nl-form { margin: 0; }
.nm-nl-zeile {
    display: flex;
    gap: 9px;
}
.nm-nl-zeile input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #d9d2c2;
    border-radius: 9px;
    background: #fff;
    color: var(--nl-navy);
    font-size: 14.5px;
    line-height: 46px;
}
.nm-nl-zeile input[type="email"]::placeholder { color: #9aa0a9; }
.nm-nl-zeile input[type="email"]:focus {
    outline: none;
    border-color: var(--nl-gold);
    box-shadow: 0 0 0 3px rgba(224, 172, 51, .25);
}
.nm-nl-zeile button {
    flex: none;
    height: 46px;
    padding: 0 26px;
    border: 0;
    border-radius: 9px;
    background: var(--nl-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease;
}
.nm-nl-zeile button:hover { background: #0e1830; }
.nm-nl-zeile button:focus-visible { outline: 3px solid rgba(22,35,63,.4); outline-offset: 2px; }

.nm-nl-hinweis {
    margin: 9px 0 0;
    color: #8b929c;
    font-size: 11.5px;
    line-height: 1.5;
}
.nm-nl-hinweis a { color: #6b7280 !important; text-decoration: underline; }

.nm-nl-meldung {
    margin: 10px 0 0;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}
.nm-nl-ok     { background: #e8f4ec; border: 1px solid #b9dfc7; color: #1a6b36; }
.nm-nl-fehler { background: #fdeaea; border: 1px solid #f2c2c2; color: #a02020; }

/* Honigfalle: fuer Menschen unsichtbar, fuer Bots ein ausfuellbares Feld.
   Kein display:none - manche Bots ignorieren genau das. */
.nm-nl-hf {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .nm-nl-zeile button, .nm-nl-zeile button:hover { transition: none; }
}

@media (max-width: 860px) {
    .nm-nl-inner { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 520px) {
    .nm-nl-zeile { flex-direction: column; }
    .nm-nl-zeile button { width: 100%; }
}
