.more-info-block {
  position: relative;
  width: 100%;
  padding: 0 $gutter;
  margin: 80px 0;

  @include sm {
    padding: 0 $gutter-mobile;
    margin: 50px 0;
  }

  &__wrapper {
    width: 100%;
    max-width: $text-width-medium;
    margin: 0 auto;

    .more-info-block--small & {
      max-width: $text-width-small;
    }

    .more-info-block--large & {
      max-width: $text-width-large;
    }
  }

  &__container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-left: 3px solid $secondary-color;
    padding-left: 48px;

    @include sm {
      flex-direction: column;
      padding-left: 20px;
    }
  }

  &__image {
    @include image-aspect-ratio(165px, 67%);

    @include sm {
      @include image-aspect-ratio(165px, 67%);
    }
  }

  &__info {
    margin: 8px 0 0 30px;

    @include sm {
      margin: 8px 0 0 0;
    }
  }

  &__title {
    margin: 0;
    color: $secondary-color;
    font-size: 2.1rem;
    line-height: 2.5rem;
    font-weight: 700;
  }

  &__content {
    font-size: 1.8rem;
    line-height: 1.5;
    color: $primary-color;
    margin-top: 4px;

    @include sm {
      font-size: 1.6rem;
    }
  }

  &__cta {
    margin-top: 18px;
    display: block;
  }
}
