/* Telegram pill — compact, lives next to navigation CTAs. */
.tg-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--bd-subtle, #1F2227);
  border-radius: 999px;
  background: rgba(63,224,197,0.04);
  color: var(--ac-primary, #3FE0C5);
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 200ms ease;
  white-space: nowrap;
}
.tg-pill:hover {
  background: rgba(63,224,197,0.10);
  border-color: rgba(63,224,197,0.4);
}
.tg-pill svg { width: 13px; height: 13px; }

@media (max-width: 720px) {
  /* Hide handle text on very small screens — leave just the icon. */
  .tg-pill span { display: none; }
  .tg-pill { padding: 7px 9px; }
}
