/* Counter widget — frontend */
.widget-counter {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.widget-counter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-2) var(--space-8);
}
.widget-counter__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9em;
  opacity: .85;
}
.widget-counter__value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.widget-counter__row.is-total {
  background: var(--color-surface-bg, #f8fafc);
}
.widget-counter__row.is-total .widget-counter__value {
  color: var(--color-primary, #2563eb);
}