/* ==========================================================================
   Newsletter CTA — isolated Atlantic Trade panel
   ========================================================================== */

.at-newsletter-section {
  position: relative;
  padding: 40px 0 100px;
  background: #ffffff;
}

.at-newsletter-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 48px 48px;
  background:
    linear-gradient(145deg, #0B1F3A 0%, #132b4a 48%, #0B1F3A 100%);
  box-shadow: 0 28px 60px rgba(7, 20, 38, 0.18);
}

.at-newsletter-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 176, 8, 0.28), transparent 68%);
  pointer-events: none;
}

.at-newsletter-panel::after {
  content: "";
  position: absolute;
  bottom: -45%;
  left: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.at-newsletter-copy,
.at-newsletter-form {
  position: relative;
  z-index: 1;
}

.at-newsletter-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.62) !important;
  margin-bottom: 14px;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

.at-newsletter-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #E8B008;
  flex-shrink: 0;
}

.at-newsletter-title {
  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(28px, 3.2vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.025em !important;
}

.at-newsletter-lead {
  margin: 0 !important;
  color: rgba(217, 222, 229, 0.82) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.65 !important;
  max-width: 34rem;
}

.at-newsletter-field {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.at-newsletter-field input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  color: #ffffff !important;
  padding: 0 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

.at-newsletter-field input::placeholder {
  color: rgba(217, 222, 229, 0.55) !important;
}

.at-newsletter-field button {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 22px;
  border: 0 !important;
  border-radius: 12px !important;
  background: #E8B008 !important;
  color: #0B1F3A !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.at-newsletter-field button:hover {
  background: #ffffff !important;
  color: #0B1F3A !important;
}

@media (max-width: 991px) {
  .at-newsletter-section {
    padding: 24px 0 72px;
  }

  .at-newsletter-panel {
    padding: 32px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  .at-newsletter-field {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }

  .at-newsletter-field input,
  .at-newsletter-field button {
    width: 100%;
  }
}
