.nav {
  height: 96px;
}

.brand {
  gap: 16px;
}

.brand-logo {
  width: 210px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  margin: 16px 0 18px;
}

.feature-card .feature-scripture {
  margin: auto 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(117, 86, 121, 0.2);
  color: var(--purple);
  font: italic 16px/1.4 Georgia, serif;
}

@media (max-width: 600px) {
  .nav {
    height: 78px;
    padding: 0 14px;
  }

  .brand {
    gap: 7px;
    font-size: 11px;
  }

  .brand-logo {
    width: 150px;
    height: 62px;
  }
}

.newsletter {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: center;
  background: #efe7ef;
}

.newsletter-embed {
  width: 100%;
  max-width: 720px;
}

.newsletter-embed .formkit-form {
  margin: 0 !important;
  max-width: 100% !important;
}

.newsletter-intro > p:last-child {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.newsletter-form {
  max-width: 720px;
  padding: 42px;
  background: var(--paper);
  border: 1px solid rgba(67, 39, 68, .12);
  box-shadow: 14px 16px 0 rgba(117, 86, 121, .1);
}

.newsletter-form h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 29px;
  font-weight: 500;
}

.newsletter-form .formkit-subheader p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter-form .formkit-fields {
  display: flex;
  gap: 10px;
}

.newsletter-form .formkit-field {
  flex: 1;
}

.newsletter-form .formkit-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--lavender);
  background: white;
  color: var(--ink);
  font: 15px Arial, sans-serif;
}

.newsletter-form .formkit-submit {
  height: 52px;
  padding: 0 26px;
  border: 0;
  background: var(--plum);
  color: white;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}

.newsletter-form .formkit-alert:empty {
  display: none;
}

.newsletter-form .formkit-guarantee,
.newsletter-form .formkit-powered-by-convertkit {
  color: var(--muted);
  font-size: 11px;
}

.newsletter-form .formkit-guarantee,
.newsletter-form .formkit-powered-by-convertkit-container {
  margin-top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

@media (max-width: 600px) {
  .newsletter-form {
    padding: 30px 22px;
  }

  .newsletter-form .formkit-fields {
    flex-direction: column;
  }

  .newsletter-form .formkit-submit {
    width: 100%;
  }
}
