.newsletter-signup {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(480px, 1.4fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, .28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 20%, rgba(251, 191, 36, .2), transparent 32%),
    linear-gradient(135deg, #fffdf7 0%, #ffffff 58%, #f0fdf4 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
  color: #334155;
}
.newsletter-signup--nested {
  width: 100%;
}
.newsletter-signup--article {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(210px, .75fr) minmax(390px, 1.25fr);
}
.newsletter-signup__copy h2 {
  margin: 5px 0 9px;
  color: #172033;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.14;
}
.newsletter-signup__copy > p:not(.newsletter-signup__kicker) {
  margin: 0;
  color: #52637d;
  font-size: 15px;
  line-height: 1.65;
}
.newsletter-signup__kicker {
  margin: 0;
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.newsletter-signup__language {
  display: inline-flex;
  margin-top: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff7df;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
}
.newsletter-form {
  min-width: 0;
}
.newsletter-form__fields {
  display: grid;
  grid-template-columns: minmax(120px, .65fr) minmax(210px, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.newsletter-form__fields label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #475569;
  font-size: 11px;
  font-weight: 900;
}
.newsletter-form__fields input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.newsletter-form__fields input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .14);
}
.newsletter-form__fields button {
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(22, 163, 74, .18);
}
.newsletter-form__fields button:hover {
  background: #15803d;
}
.newsletter-form__fields button:disabled {
  cursor: wait;
  opacity: .68;
}
.newsletter-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 11px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.45;
}
.newsletter-form__consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: #16a34a;
}
.newsletter-form__consent a {
  color: #475569;
  font-weight: 800;
}
.newsletter-form__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.newsletter-form__status {
  min-height: 18px;
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 800;
}
.newsletter-form__status.is-success { color: #15803d; }
.newsletter-form__status.is-error { color: #b91c1c; }
@media (max-width: 880px) {
  .newsletter-signup,
  .newsletter-signup--article {
    grid-template-columns: 1fr;
    gap: 19px;
  }
}
@media (max-width: 640px) {
  .newsletter-signup {
    width: min(100% - 28px, 1040px);
    padding: 21px;
    border-radius: 22px;
  }
  .newsletter-signup--nested,
  .newsletter-signup--article {
    width: 100%;
  }
  .newsletter-form__fields {
    grid-template-columns: 1fr;
  }
  .newsletter-form__fields button {
    width: 100%;
  }
}

