.highlight-columns-block {
  width: 100%;
  padding: 24px 0;
  background-color: $gray-bluish-light;
  overflow: hidden;

  &__wrapper {
    padding: 0 $gutter;

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

  &__container {
    width: 100%;
    max-width: $projects-detail-width;
    margin: 0 auto;
  }

  &__columns {
    display: flex;
    justify-content: space-between;
    column-gap: 32px;

    &.highlight-columns--1 {
      .highlight-columns-block__column {
        flex: 1;
      }
    }

    &.highlight-columns--2 {
      .highlight-columns-block__column {
        flex: 1;
      }
    }

    &.highlight-columns--3 {
      .highlight-columns-block__column {
        flex: 1;
      }
    }

    @include sm {
      flex-direction: column;
      row-gap: 32px;
    }
  }

  &__column {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  &__subject {
    font-size: 1.4rem;
    color: $primary-color;
    word-break: break-word;
  }

  &__title {
    margin: 4px 0;
    color: $primary-color;
    word-break: break-word;
  }

  &__excerpt {
    font-size: 1.6rem;
    color: $primary-color;
    word-break: break-word;
  }
}
