/* Shared player-choice video switcher (le-video-switcher). Self-contained,
   uses this site's own design tokens (see public/assets/site.css :root) so
   no separate theme is needed. */

.le-video-switcher {
  margin: 20px 0;
}

.le-video-switcher-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.le-video-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.le-video-tab:hover {
  background: var(--primary-light);
}

.le-video-tab:active {
  transform: scale(0.97);
}

.le-video-tab.is-active {
  background: #4C6EF5;
  border-color: #4C6EF5;
  color: #fff;
}

.le-video-switcher-frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
  border-radius: var(--radius-sm);
  display: block;
}
