/* ── Regionalupdate Newsletter-Box ─────────────────────────────────────────── */
/* Farbe, Schrift und Hintergrund kommen vom Elementor-Container — nichts wird hier überschrieben */

.ru-nl-box {
    padding: 16px 0 8px;
    text-align: center;
    width: 100%;
    color: #ffffff !important;
}

.ru-nl-subline {
    font-size: 14px;
    color: #ffffff !important;
    margin: 0 0 18px;
}

/* ── Formular ──────────────────────────────────────────────────────────────── */

.ru-nl-form {
    max-width: 500px;
    margin: 0 auto;
}

.ru-nl-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

/* Input sieht aus wie die Share-Buttons: weißer Rahmen, transparenter Hintergrund */
.ru-nl-row input[type="email"] {
    flex: 1;
    padding: 9px 16px;
    border: 2px solid currentColor !important;
    border-radius: 4px !important;
    background: transparent !important;
    color: inherit !important;
    font-size: 14px !important;
    font-family: inherit !important;
    outline: none !important;
    box-shadow: none !important;
    min-width: 0;
    opacity: 0.9;
}

.ru-nl-row input[type="email"]::placeholder {
    color: inherit !important;
    opacity: 0.75;
}

.ru-nl-row input[type="email"]:focus {
    opacity: 1;
}

/* Button: weiß gefüllt mit Textfarbe des Containers — wie ein ausgefüllter Share-Button */
.ru-nl-row button {
    padding: 9px 22px;
    background: #ffffff !important;
    color: #249E96 !important;
    border: 2px solid #ffffff !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: none !important;
    transition: opacity 0.2s;
}

.ru-nl-row button:hover {
    opacity: 0.88;
}

.ru-nl-row button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── DSGVO ─────────────────────────────────────────────────────────────────── */

.ru-nl-dsgvo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #ffffff !important;
    opacity: 0.88;
    cursor: pointer;
    text-align: left;
    line-height: 1.5;
}

.ru-nl-dsgvo input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.ru-nl-dsgvo a {
    color: inherit !important;
    text-decoration: underline !important;
    font-weight: 600;
    opacity: 1;
}

/* ── Meldungen ─────────────────────────────────────────────────────────────── */

.ru-nl-msg {
    margin-top: 14px;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.ru-nl-msg.success { background: rgba(255, 255, 255, 0.2); }
.ru-nl-msg.error   { background: rgba(180, 20, 20, 0.25); }

/* ── Mobil ─────────────────────────────────────────────────────────────────── */

@media (max-width: 520px) {
    .ru-nl-row {
        flex-direction: column;
    }
    .ru-nl-row button {
        width: 100% !important;
    }
}
