.ec-widget-card {
  background: #111827;
  border: 0.5px solid #1e2535;
  border-radius: 10px;
  overflow: hidden;
}

.ec-widget-card-header {
  padding: 12px 16px;
  border-bottom: 0.5px solid #1e2535;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ec-widget-card-header::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #2d8cff;
  border-radius: 50%;
  flex-shrink: 0;
}

.ec-widget-card-body { padding: 14px 16px; }

.ec-newsletter-cta {
  background: linear-gradient(135deg, #0f1929 0%, #111827 100%);
  border: 0.5px solid #1a3a5c;
}

.ec-newsletter-cta .ec-widget-card-header::before { background: #f59e0b; }

.ec-newsletter-headline {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ec-newsletter-sub {
  font-size: 12px;
  color: #8892a4;
  margin-bottom: 14px;
  line-height: 1.5;
}

.ec-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ec-newsletter-form input {
  background: #0a0d14;
  border: 0.5px solid #2d3748;
  border-radius: 6px;
  padding: 10px 12px;
  color: #e2e8f0;
  font-size: 13px;
  min-height: 42px;
  outline: none;
  transition: border-color 0.2s;
}

.ec-newsletter-form input:focus { border-color: #2d8cff; }

.ec-newsletter-form button {
  background: #2d8cff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  min-height: 42px;
  transition: background 0.2s;
}

.ec-newsletter-form button:hover { background: #1a7ae8; }

/* Sidebar widget rows */
.ec-sidebar-row { display: flex; flex-direction: column; gap: 16px; }
