.block-newsletter {
    margin: 5.625rem 0 1.875rem;
    position: relative;
    padding: 1.875rem 0;
  }
  @media (min-width: 992px) {
    .block-newsletter {
      margin: 6.25rem 0 4.375rem;
      padding: 4.125rem 0 2.875rem;
    }
  }
  .block-newsletter:last-child {
    margin-bottom: 0;
  }
  .block-newsletter:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1680px;
    height: 100%;
    border-radius: 10px;
    background-color: #f2f2f2;
    pointer-events: none;
  }
  .newsletter__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 575.98px) {
    .newsletter__container {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media (min-width: 992px) {
    .newsletter__container {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 992px) {
    .newsletter__content {
      max-width: 450px;
    }
  }
  .newsletter__content h1,
  .newsletter__content h2 {
    margin-bottom: 0.875rem;
  }
  .newsletter__content p {
    margin-bottom: 1.5rem;
  }
  .newsletter__content > *:last-child {
    margin-bottom: 0;
  }
  .newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  @media (min-width: 992px) {
    .newsletter__form {
      gap: 1.375rem;
    }
  }
  .newsletter__form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
  @media (min-width: 992px) {
    .newsletter__form-row {
      grid-template-columns: 2fr 1fr;
      gap: 0.875rem;
    }
  }
  .block-newsletter input[type=email] {
    border: none;
  }
  .block-newsletter button[type=submit] {
    width: 100%;
  }
  @media (min-width: 992px) {
    .block-newsletter .form-checkbox {
      max-width: 400px;
    }
  }
  