.pill{
  padding:8px 12px;
  border-radius:var(--radius-pill);
  background:var(--surface);
  border:1px solid var(--line);
  font-weight:900;
  font-size:13px;
  color:var(--text);
}

.pill--muted{
  color:var(--muted);
  font-weight:800;
}

.pill--link{
  text-decoration:none;
  color:var(--accent);
  transition:color .15s ease, border-color .15s ease, transform .15s ease;
}
.pill--link:hover{
  color:var(--accent-2);
  border-color:rgba(27,67,50,.22);
  transform:translateY(-1px);
}
