/* Canonical text-link treatment (DS link).
   Single source for the accent text-link / "View all" styling that was
   previously duplicated as utility-class soup across kanban / roster / show
   surfaces. Token-clean: accent family only, no raw palette, no dark:. */

.dv-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}

.dv-link:hover {
  color: var(--accent-strong);
}

.dv-link .lucide,
.dv-link svg {
  flex-shrink: 0;
}

/* Count suffix — the "View all 12" number stays in the accent flow. */
.dv-link__count {
  font-variant-numeric: tabular-nums;
}
