/*
 * Show switcher (docs/shows/<slug>/index.md) — a horizontal row of
 * pill buttons right under the breadcrumb, replacing the primary nav
 * sidebar's own show links now that these pages hide `navigation`.
 */

.pod-show-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: 0 0 var(--space-6);
}

.pod-show-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  border: 1px solid var(--pod-border-strong);
  border-radius: var(--radius-pill);
  background: var(--pod-bg-elevated);
  color: var(--pod-ink-soft);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pod-show-switcher__button:hover {
  border-color: var(--pod-accent-warm);
  color: var(--pod-accent-warm);
}

.pod-show-switcher__button--active {
  border-color: var(--pod-accent-warm);
  background: var(--pod-accent-warm-soft);
  color: var(--pod-accent-warm);
}

.pod-show-switcher__mic {
  width: 0.9em;
  height: 0.9em;
  flex-shrink: 0;
}

.pod-show-switcher__avatar {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pod-bg-sunken);
  flex-shrink: 0;
}
