/* ── Newsletter Subscription Widget ── */
.nl-widget {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 420px;
  box-shadow: 0 2px 16px rgba(17,70,168,.07);
}
.nl-widget .nl-icon {
  width: 38px;
  height: 38px;
  background: #eef2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #1146A8;
  font-size: 17px;
}
.nl-widget h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
}
.nl-widget p {
  margin: 0 0 14px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.nl-form {
  display: flex;
  gap: 8px;
}
.nl-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #d1d9e8;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  background: #f8fafc;
  color: #1a202c;
  min-width: 0;
}
.nl-form input[type="email"]:focus {
  border-color: #1146A8;
  background: #fff;
}
.nl-form button {
  padding: 10px 18px;
  background: #1146A8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nl-form button:hover { background: #0d3a8e; transform: translateY(-1px); }
.nl-form button:disabled { background: #94a3b8; cursor: default; transform: none; }
.nl-msg {
  margin-top: 10px;
  font-size: 12px;
  min-height: 16px;
  transition: opacity .3s;
}
.nl-msg.ok  { color: #1e7e34; }
.nl-msg.err { color: #c0392b; }

/* Section-level layout (homepage strip) */
.nl-section {
  background: #f4f7fc;
  padding: 48px 0;
  border-top: 1px solid #e8ecf2;
}
.nl-section .nl-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.nl-section .nl-copy { flex: 1; min-width: 220px; }
.nl-section .nl-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
}
.nl-section .nl-copy p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.nl-section .nl-widget {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
}
@media (max-width: 700px) {
  .nl-section .nl-inner { flex-direction: column; gap: 24px; }
  .nl-section .nl-widget { width: 100%; }
  .nl-form { flex-direction: column; }
}
