.articles-list {
  &__wrap {
    margin-bottom: 60px;
  }

  &__header {
    margin-bottom: 50px;

    h1 {
      margin: 0 0 10px;
    }
  }

  .article-item {
    margin-bottom: 60px;
    transition: opacity 250ms ease-out;

    &--hidden {
      opacity: 0;
    }

    h2 {
      color: $secondary-color;
      margin-top: 0;
      margin-bottom: 0;

      a {
        color: $secondary-color;
      }
    }

    &__info {
      margin-top: 3px;
      color: $gray-70;
      font-size: 1.1rem;
    }

    &__date {
      margin-right: 15px;
    }

    &__name {
      margin-right: 15px;
    }

    &__header {
      display: flex;
      margin-bottom: 25px;

      @include sm {
        flex-direction: column;
        margin-bottom: 0;
      }
    }

    &__content {
      display: flex;

      @include sm {
        flex-direction: column;
      }

      p:first-child {
        margin-top: 0;
      }
    }

    &__main {
      flex-grow: 1;
    }

    &__share {
      padding-top: 2px;
      max-height: 30px;
      text-align: right;
    }

    &__side {
      width: 60px;
      flex-shrink: 0;
      display: flex;
      justify-content: flex-end;

      @include sm {
        width: 100%;
      }
    }

    &__read-more a {
      font-weight: 700;
      text-decoration: none;

      &:hover {
        color: $secondary-color;
      }
    }
  }

  &__loading {
    text-align: center;
  }

  &__more-list {
    text-align: center;
  }

  &__no-results {
    font-weight: 700;
    padding: 70px 0;
    color: $primary-color;
    text-align: center;
  }
}
