/* Newsletter blokkelemek – lokális scope-hoz prefix: nl- */

.nl-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.07);
}

.nl-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.nl-field { flex: 1 1 260px; min-width: 260px; }

.nl-row {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.nl-hint {
  font-size: 12px;
  color: #9ca3af;
  margin-top: .35rem;
}

.nl-switch {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 12px;
  color: #d1d5db;
  user-select: none;
}

.nl-switch input { display: none; }

.nl-switch .track {
  width: 44px;
  height: 24px;
  background: #374151;
  border-radius: 999px;
  position: relative;
  transition: .2s ease;
}

.nl-switch .thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: .2s ease;
}

.nl-switch input:checked + .track { background: #7c2d12; }
.nl-switch input:checked + .track .thumb { left: 23px; }

/* Honeypot elrejtése teljesen vizuálisan, a DOM-ban marad */
.nl-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
