.block-grid-bullet-list {
  inline-size: 100%;
  background-color: $color-teagreen;

  .grid-container {
    display: grid;
    row-gap: $spacing-xl;
  }

  &__content {
    @include grid-cols(12);

    &-left {
      @include col-span(5);

      @include media-down(lg) {
        @include col-span(12);
      }
    }

    &-center {
      display: grid;
      justify-content: center;
      @include col-span(2);

      @include media-down(lg) {
        margin: $spacing-xs 0;
      }

      span {
        width: 1px;
        height: 100%;
        background-color: $color-white;
      }
    }

    &-right {
      @include col-span(5);

      @include media-down(lg) {
        @include col-span(12);
      }
    }

    .wysiwyg {
      ul,
      ol {
        padding-top: 0.5rem;
      }
    }
  }

  &__button {
    display: flex;
    justify-content: center;
  }
}
