/* Shared navigation for the final design directions. */
body .final-switcher {
  position: fixed;
  z-index: 50;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: calc(100% - 24px);
  padding: 5px;
  background: #202229;
  color: #fff;
  border: 1px solid #454650;
  border-radius: 10px;
  box-shadow: 0 4px 20px #0002;
  font: 500 12px/1.4 "DM Sans", sans-serif;
}
body .final-switcher a {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
body .final-switcher a:first-child {
  margin-right: 5px;
  font-size: 11px;
}
body .final-switcher a:hover { background: #3b3d46; }
body .final-switcher a[aria-current="page"] { background: #fff; color: #202229; }
body .final-switcher a:focus-visible { outline: 3px solid #fdb522; outline-offset: 3px; }
@media (max-width: 400px) {
  body .final-switcher { gap: 2px; }
  body .final-switcher a { min-width: 30px; padding-inline: 6px; }
  body .final-switcher a:first-child { font-size: 10px; margin-right: 2px; }
}
