/* =========================
   AY NEWSLETTER
========================= */

.ay-newsletter {
  padding: 0px 24px 84px;

  background: #FFF8F1;

  font-family: "Manrope", sans-serif;
}

.ay-newsletter-inner {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;

  align-items: center;
}

/* =========================
   CONTENT
========================= */

.ay-newsletter-label {
  margin: 0 0 10px;

  color: #74442B;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;

  letter-spacing: 0.02em;
}

.ay-newsletter h2 {
  margin: 0 0 16px;

  color: var(--ay-text);

  font-size: clamp(28px, 3vw, 38px);

  line-height: 1.14;
  font-weight: 800;

  letter-spacing: -0.03em;
}

.ay-newsletter h2 span {
  color: #5A3A2A;
}

.ay-newsletter-content > p:not(.ay-newsletter-label) {
  margin: 0 0 22px;

  color: var(--ay-muted);

  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

/* =========================
   POINTS
========================= */

.ay-newsletter-points {
  display: grid;
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.ay-newsletter-points li {
  position: relative;

  padding-left: 22px;

  color: var(--ay-card-text);

  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.ay-newsletter-points li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.62em;

  width: 7px;
  height: 7px;

  background: #74442B;

  border-radius: 50%;
}

/* =========================
   FORM
========================= */

.ay-newsletter-form {
  overflow: hidden;

  background: var(--ay-card-bg);

}

.ay-newsletter-form iframe {
  display: block;

  width: 100%;
  max-width: 100%;


  border: 0;

  overflow: hidden;

  background: var(--ay-card-bg);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .ay-newsletter {
    padding: 60px 18px 64px;
  }

  .ay-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ay-newsletter-content {
    text-align: center;
  }

  .ay-newsletter-label {
    font-size: 17px;
  }

  .ay-newsletter h2 {
    font-size: 26px;
    line-height: 1.14;
  }

  .ay-newsletter-content > p:not(.ay-newsletter-label) {
    font-size: 16px;
    line-height: 1.55;
  }

  .ay-newsletter-points {
    max-width: 330px;
    margin: 0 auto;

    text-align: left;
  }

  .ay-newsletter-form iframe {
    height: 470px;
  }
}