.stat-item {
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 40px;
  padding: 0 10px;

  color: var(--menu-nav-header-color);
  text-decoration: none;

  &:hover {
    background-color: #f4f5f7;
  }

  .title {
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  &.not-clickable {
    cursor: default;
  }

  .name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;

    margin: 0 10px;

    -webkit-line-clamp: 2;
  }

  .views {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .views-count {
    font-size: 12px;
    font-weight: 600;
  }

  .views-title {
    font-size: 12px;
  }
}
