.nw-newsletter {
  padding: clamp(52px, 7vw, 96px) 5vw;
  background: #d9e1d9;
  color: #1f4345;
}

.nw-newsletter__card {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(420px, 1.35fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  border-radius: 36px;
  background: #1f4345;
  color: #d9e1d9;
}

.nw-newsletter__title {
  margin: 0;
  color: #d9e1d9;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: .98;
  text-transform: uppercase;
}

.nw-newsletter__title span {
  display: block;
  margin-top: .14em;
  font-family: "PT Serif", serif;
  letter-spacing: .04em;
  text-transform: none;
}

.nw-newsletter__intro {
  margin: 22px 0 0;
  color: rgba(217, 225, 217, .88);
  line-height: 1.8;
}

.nw-newsletter__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: start;
}

.nw-newsletter__form input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: 0;
  background: #fff;
  color: #1f4345;
  font: inherit;
}

.nw-newsletter__form input:focus {
  border-color: #86ad89;
  box-shadow: 0 0 0 3px rgba(134, 173, 137, .2);
}

.nw-newsletter__form button {
  min-width: 96px;
  height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #86ad89;
  color: #173b3d;
  cursor: pointer;
  font: 800 .88rem/1 "Montserrat", sans-serif;
}

.nw-newsletter__form button:disabled {
  cursor: wait;
  opacity: .7;
}

.nw-newsletter__message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 2px 0 0;
  color: rgba(217, 225, 217, .78);
  font-size: .8rem;
  line-height: 1.55;
}

.nw-newsletter__message.is-error {
  color: #ffd4ce;
}

.nw-newsletter-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  margin-top: 4px;
  padding: 15px 17px;
  border: 1px solid rgba(31, 67, 69, .16);
  border-radius: 14px;
  background: rgba(134, 173, 137, .1);
  color: #1f4345;
  cursor: pointer;
  font-size: .9rem;
  line-height: 1.55;
}

.nw-newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: #1f4345;
}

.nw-newsletter-consent small {
  display: block;
  margin-top: 3px;
  color: #607779;
  font-size: .76rem;
}

@media (max-width: 900px) {
  .nw-newsletter__card {
    grid-template-columns: 1fr;
  }

  .nw-newsletter__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nw-newsletter {
    padding-inline: 18px;
  }

  .nw-newsletter__card {
    padding: 28px 22px;
    border-radius: 26px;
  }
}
