/* ═══════════════════════════════════════════════════════════════════
   Small "← Back" pill above the breadcrumbs trail on every public league
   page except League Home (see templates/core/_back_button.html /
   static/js/back-button.js). Plain League Home href works with zero JS;
   the JS only upgrades the click to a real history.back() when there's
   somewhere in this tab's history to go back to.
   ═══════════════════════════════════════════════════════════════════ */
.hl-back-button {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-3);
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.hl-back-button svg {
  width: 16px;
  height: 16px;
}

.hl-back-button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.hl-back-button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
