.list{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.listRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
}

.listRow__left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.listRow__thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: rgba(15,23,42,.45);
}

.listRow__title{
  font-size: 14px;
  font-weight: 800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.listRow__sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(15,23,42,.45);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.listRow__right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
  color: rgba(15,23,42,.45);
  font-size: 12px;
}

.chev{
  font-size: 16px;
  color: rgba(15,23,42,.35);
}

