/* Phase 2 navigation-mode affordances. Scope is limited to links managed by
   navigation_context.js so existing application styling remains untouched. */

a.navigation-opens-new-tab[data-navigation-mode]::after {
  content: "↗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1;
  opacity: 0.72;
}

.sidebar-link.navigation-opens-new-tab[data-navigation-mode]::after {
  margin-left: auto;
  flex: 0 0 auto;
  color: currentColor;
}

html[data-eftx-navigation-mode] body,
body[data-eftx-navigation-mode] {
  --eftx-navigation-context-active: 1;
}

@media (max-width: 900px) {
  a.navigation-opens-new-tab[data-navigation-mode]::after {
    content: none;
  }
}
