.newsletter-section {
  .newsletter-section__container {
    position: relative;

    .newsletter-section__image-1 {
      position: absolute;
      bottom: 0;
      left: 0;
      display: none;

      @media screen and (min-width: 1000px) {
        display: block;
      }
    }

    .newsletter-section__image-2 {
      position: absolute;
      bottom: 0;
      right: 0;
      display: none;

      @media screen and (min-width: 1000px) {
        display: block;
      }
    }

    .newsletter-section__image-mobile {
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;

      @media screen and (min-width: 1000px) {
        display: none;
      }
    }
  }

  .newsletter-section__content {
    padding: 40px 20px 140px;
    margin: auto;
    display: flex;
    max-width: 714px;
    flex-direction: column;
    width: fit-content;
    align-items: center;
    position: relative;
    z-index: 1;

    @media screen and (min-width: 1000px) {
      padding: 40px 20px;
    }
  }

  .newsletter-section__title {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--heading-font-family);

    @media screen and (min-width: 1000px) {
      margin-bottom: 12px;
      font-size: 36px;
    }
  }

  .newsletter-section__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

  .newsletter-form {
    &:not(:has(.newsletter-form__checkbox:checked)) {
      .configurator-button-wrapper {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
      }

      .newsletter-form__checkbox-label {
        svg {
          opacity: 0;
        }
      }
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 12px;

      @media screen and (min-width: 1000px) {
        flex-direction: row;
      }

      input {
        border: 1px solid #dbdcdd;
        border-radius: 9999px;
        height: 50px;
        padding: 0 20px;

        @media screen and (min-width: 1000px) {
          height: 56px;
          flex: 1;
        }

        &::placeholder {
          font-weight: 400;
          font-size: 14px;
          line-height: 162%;
          color: var(--text-primary);
        }
      }

      .configurator-button-wrapper {
        width: 100%;

        @media screen and (min-width: 1000px) {
          width: fit-content;
        }
      }

      button {
        height: 50px;
        width: 100%;

        @media screen and (min-width: 1000px) {
          height: 56px;
          width: fit-content;
        }
      }
    }

    .newsletter-form__checkbox-label {
      display: flex;
      margin-top: 24px;
      gap: 12px;

      @media screen and (min-width: 1000px) {
        gap: 8px;
      }

      input {
        display: none;
      }

      .newsletter-form__checkbox-icon {
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--brand-colours-brand-secondary---hellrosa);
        background-color: #fff;
      }

      span {
        font-weight: 400;
        font-size: 12px;
        line-height: 130%;
        color: var(--text-secondary);
      }
    }

    .newsletter-form__message {
      margin-top: 12px;
      font-weight: 400;
      font-size: 12px;
      line-height: 130%;
      color: var(--text-secondary);
    }
  }
}