/* MODULE: newsletter – Public Subscribe-Widget (Footer-Spalte + Standalone-Strip)
════════════════════════════════════════════════════════════════ */

/* Gemeinsame Form-Styles */
.nlw-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}

.nlw-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text, #1A1A2E);
  margin: 0;
}

.nlw-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted, #6B6B80);
  margin: 0 0 4px;
}

.nlw-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nlw-input {
  flex: 1 1 180px;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  background: var(--bg-card, #FFFFFF);
  color: var(--text, #1A1A2E);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
}
.nlw-input:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}
.nlw-input:disabled { opacity: .6; cursor: not-allowed; }

.nlw-btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #FF6B00;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, transform .05s;
}
.nlw-btn:hover:not(:disabled) { background: #FF8C3A; }
.nlw-btn:active:not(:disabled) { transform: translateY(1px); }
.nlw-btn:disabled { opacity: .55; cursor: not-allowed; }

.nlw-status {
  min-height: 1em;
  font-size: 13px;
  line-height: 1.45;
}
.nlw-status-info { color: var(--text-muted, #6B6B80); }
.nlw-status-ok   { color: #16a34a; }
.nlw-status-err  { color: #dc2626; }

.nlw-privacy {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-faint, #ABABBA);
  margin: 0;
}
.nlw-privacy a {
  color: var(--text-muted, #6B6B80);
  text-decoration: underline;
}

/* Variante: Spalte im bestehenden Footer-Grid (index.html) */
.footer .nlw-footer-col .nlw-title {
  color: var(--text, #1A1A2E);
  margin-bottom: 6px;
}
.footer .nlw-footer-col .nlw-sub {
  color: var(--text-muted, #6B6B80);
}

/* Variante: Standalone-Strip auf Seiten ohne Footer */
.nlw-strip {
  background: var(--bg-2, #F7F7F9);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 40px 20px;
  margin-top: 48px;
}
.nlw-strip-inner {
  max-width: 520px;
  margin: 0 auto;
}
.nlw-strip .nlw-title {
  font-size: 26px;
  margin-bottom: 4px;
}

@media (max-width: 480px) {
  .nlw-row { flex-direction: column; }
  .nlw-btn { width: 100%; }
}
