/* Profile counters are compact metadata, not full dashboard cards. */
#profile .cards:has(#listingCount) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin: 14px 0;
  padding: 0;
}
#profile .cards > .panel:has(> #listingCount),
#profile .cards > .panel:has(> #favoriteCount) {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.5;
}
#profile .cards > .panel:has(> #listingCount) > br,
#profile .cards > .panel:has(> #favoriteCount) > br { display: none; }
#profile .cards > .panel:has(> #listingCount) > span,
#profile .cards > .panel:has(> #favoriteCount) > span {
  color: var(--muted);
  font-size: .875rem;
}
#profile #listingCount,
#profile #favoriteCount {
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
