.pardot-form-block {
  margin: 0 auto;

  &__container {
    background-color: $gray-bluish;
    width: 100%;
    padding: 80px $gutter;

    @include sm {
      padding: 48px $gutter-mobile;
    }
  }

  &__wrapper {
    width: 100%;
    max-width: $projects-detail-width;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 32px;

    @include sm {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      row-gap: 32px;
    }
  }

  &__left {
    width: 100%;
    max-width: 40%;

    @include sm {
      max-width: 100%;
    }
  }

  &__subject {
    color: $medium-color;
    font-family: $font-default;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.16px;
    margin-bottom: 20px;
    display: block;
  }

  &__title {
    margin: 0 0 20px;
  }

  &__content {
    p {
      font-family: $font-default;
      font-size: 2.1rem;
      font-weight: 400;
      line-height: 150%;
    }
  }

  &__right {
    width: 100%;
    max-width: 60%;

    @include sm {
      max-width: 100%;
    }
  }

  &__form {
    background-color: $gray-bluish-light;
    padding: 24px;
  }
}
