.articles-list-block {
  position: relative;
  width: 100%;
  padding: 0 $gutter;
  margin: 75px auto;

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

  &__wrapper {
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
  }

  &__container {
    width: 100%;
  }

  &__header {
    width: 100%;
  }

  &__title {
    color: $primary-color;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 3rem;
  }

  &__content {
    p {
      color: $primary-color;
      font-weight: 400;
      font-size: 1.8rem;
    }
  }

  &__list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;

    @include sm {
      margin-top: 16px;
    }
  }

  .article-item--hidden {
    opacity: 0;
  }

  &__list-item {
    padding: 24px 0;
    border-bottom: 1px solid $gray-border;
    display: flex;
    align-items: center;
    transition: opacity 250ms ease-out;

    .articles-list-block--news & {
      a {
        display: none;
      }
    }
  }

  &__list-item-info {
    flex: 1;
  }

  &__list-item-label {
    color: $primary-color;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6rem;
    letter-spacing: 0.02rem;
  }

  &__list-item-title {
    color: $primary-color;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 3rem;
    margin: 16px 0 0;

    @include sm {
      font-size: 1.6rem;
      line-height: 2rem;
      letter-spacing: 0.02rem;
    }
  }

  &__list-item-tags-container {
    margin-top: 24px;
    display: flex;
    align-items: center;
  }

  &__list-item-tags {
    display: flex;
    align-items: center;
  }

  &__list-item-tag {
    color: $blue;
    background-color: rgba($color: $blue, $alpha: 0.1);
    padding: 6px 8px;
    margin-right: 16px;
  }

  &__list-item-credits {
    color: $primary-color;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 0.01rem;
  }

  &__list-item-image {
    @include image-aspect-ratio(323px, 66.5%);

    margin-left: 30px;

    @include sm {
      @include image-aspect-ratio(90px, 66.6%);

      margin-left: 16px;
    }
  }

  &__more-list {
    text-align: center;
    margin: 24px auto 0;
    width: 100%;
    max-width: 440px;

    a {
      width: 100%;;
    }

    @include sm {
      margin-top: 16px;
      width: auto;
    }
  }

  &__loading {
    text-align: center;
    padding-top: 20px;
  }
}
