/* The language link in the top bar. Shaped like the theme's own ghost
   buttons, in the theme's own tokens, so it does not read as bolted on. */
.ct-lang {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.6rem;
  border-radius: var(--radius-md, 0.375rem);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.12s, background-color 0.12s;
}

.ct-lang:hover {
  color: var(--accent-foreground);
  background: var(--accent);
}

.ct-lang:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
