/* Cosmetic fan counters — sit under the Discord strip */

.social-counters {
  padding: 0;
}

.social-counters__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-counters__item {
  min-width: 0;
}

.social-counters__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  min-height: 4.5rem;
  padding: var(--space-3) var(--space-2);
  border: 1px solid rgb(var(--color-border));
  background: rgb(var(--color-surface));
  color: rgb(var(--color-ink));
  text-decoration: none;
  cursor: pointer;
}

.social-counters__link:hover,
.social-counters__link:focus-visible {
  border-color: var(--brand, rgb(var(--color-brand)));
  color: var(--brand, rgb(var(--color-brand)));
}

.social-counters__link:focus-visible {
  outline: 2px solid var(--brand, rgb(var(--color-brand)));
  outline-offset: 2px;
}

.social-counters__icon {
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

.social-counters__count {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.2;
}

.social-counters__unit {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(var(--color-ink-muted));
}

.social-counters__link:hover .social-counters__unit,
.social-counters__link:focus-visible .social-counters__unit {
  color: inherit;
}
