.newsletter-invite {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(4.5rem, 8vw, 8rem) max(24px, calc((100% - 1500px) / 2));
  background: #593888;
  color: #fcfbff;
}

.newsletter-copy h2 {
  max-width: 11ch;
  margin: .18em 0 .35em;
}

.newsletter-copy > p:last-child {
  max-width: 48ch;
  margin-bottom: 0;
  font-family: "Fraunces", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}

.newsletter-form {
  align-self: center;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 1rem;
}

.newsletter-form label > span:first-child {
  display: block;
  margin-bottom: .45rem;
  color: #e8e0ed;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 0;
  background: rgba(31,18,66,.28);
  color: #fcfbff;
  font: inherit;
}

.newsletter-form input:focus-visible {
  border-color: #fcfbff;
  outline: 3px solid #eadffd;
  outline-offset: 3px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .75rem;
  align-items: start;
  margin: 1.2rem 0 1.5rem;
  cursor: pointer;
  font-size: .88rem;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: .15rem 0 0;
  accent-color: #e8e0ed;
}

.newsletter-consent > span:first-of-type {
  margin: 0;
  color: #fcfbff;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.newsletter-form button[disabled] {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.newsletter-status {
  min-height: 1.5em;
  margin: 0;
  font-size: .9rem;
}

.newsletter-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .newsletter-invite {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }
}
