.stats > .stat {
  display: flex;
  align-items: center;;
  color: var(--text-2);
  gap: 0.5rem;
  margin-bottom: 0.125rem;
}
.stats > .stat > .line {
  height: 0.125rem;
  border-radius: 0.125rem;
  flex-grow: 1;
  background: var(--bg-4);
  transition: background 100ms;
}
.stats > .stat:hover > .line {background: var(--bg-6)}
