.feature {
  background-color: $brand1-bg-2;

  &__item {
    &-inner {
      background-color: $white-color;
      border-radius: 16px;
    }
  }

  &__thumb {
    @extend %of-hidden;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;

    img {
      @extend %w-100;
      @include add-prefix(transition, $transition);

    }

    &:hover {
      img {
        @include add-prefix(transform, scale(1.05));
      }
    }
  }

  &__content {
    @extend %p-25;

    p {
      color: $text-color;
    }
  }
}