/* Atlas alt-nav — shared tab strip for bodymap.html / encyclopedia.html / glossary.html
   (+ tr/ variants). Three plain <a> links (no SPA); a jade underline marks the active
   view — cinnabar/red is reserved elsewhere for single-touch actions, so it is NOT used here. */
.atlas-nav{display:flex;align-items:center;gap:22px;margin:0 0 16px;border-bottom:1px solid var(--slate-200);overflow-x:auto}
.atlas-tab{display:inline-block;padding:9px 2px 10px;font-size:13.5px;font-weight:600;color:var(--slate-500);
  text-decoration:none;white-space:nowrap;border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:color .15s ease,border-color .15s ease}
.atlas-tab:hover{color:var(--primary-dark)}
.atlas-tab.active{color:var(--primary-dark);border-bottom-color:var(--primary-dark)}
@media(max-width:480px){.atlas-nav{gap:16px}}

/* cross-page search bridge (encyclopedia ⇄ glossary): "no results here, try the other list" */
.search-bridge{margin:-6px 0 14px;font-size:13.5px;color:var(--slate-600);
  background:var(--slate-50,#f7f8f4);border:1px solid var(--slate-200);border-radius:9px;padding:9px 13px}
.search-bridge a{color:var(--primary-dark);font-weight:600;text-decoration:none}
.search-bridge a:hover{text-decoration:underline}
