/* Newsletter Subscribe Styles */

/* ── Banner Variant ── */
.neoh_fn_newsletter_banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  background-color: #16213e;
  border-radius: 12px;
  margin-bottom: 30px;
}

.neoh_fn_newsletter_banner .banner_content {
  flex: 1;
}

.neoh_fn_newsletter_banner .banner_title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #e0e0e0;
}

.neoh_fn_newsletter_banner .banner_desc {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.neoh_fn_newsletter_banner .banner_form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.neoh_fn_newsletter_banner .banner_form input {
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid #374151;
  border-radius: 8px;
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-size: 14px;
  outline: none;
  min-height: 44px;
}

.neoh_fn_newsletter_banner .banner_form input:focus {
  border-color: #60a5fa;
}

.neoh_fn_newsletter_banner .banner_form button {
  min-height: 44px;
  min-width: 44px;
}

.neoh_fn_newsletter_banner .error_message {
  width: 100%;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}

/* ── Section Variant ── */
.neoh_fn_newsletter_section {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.neoh_fn_newsletter_section .section_title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: #e0e0e0;
}

.neoh_fn_newsletter_section .section_desc {
  margin: 0 0 24px;
  font-size: 16px;
  color: #9ca3af;
}

.neoh_fn_newsletter_section .section_form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.neoh_fn_newsletter_section .section_form input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid #374151;
  border-radius: 8px;
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-size: 14px;
  outline: none;
  min-height: 44px;
}

.neoh_fn_newsletter_section .section_form input:focus {
  border-color: #60a5fa;
}

.neoh_fn_newsletter_section .section_form button {
  min-height: 44px;
  min-width: 44px;
}

.neoh_fn_newsletter_section .error_message {
  width: 100%;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  text-align: center;
}

/* ── Sidebar Widget (existing CSS handles most styling) ── */
.neoh_fn_widget_subscribe .error_message {
  font-size: 12px;
  color: #ef4444;
  margin: 4px 0 8px;
  padding: 0 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .neoh_fn_newsletter_banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .neoh_fn_newsletter_banner .banner_form {
    width: 100%;
    justify-content: center;
  }

  .neoh_fn_newsletter_banner .banner_form input {
    min-width: 100%;
  }

  .neoh_fn_newsletter_section {
    padding: 40px 16px;
  }

  .neoh_fn_newsletter_section .section_form input {
    min-width: 100%;
    max-width: 100%;
  }
}
