/*
 * The existing site's common.css intentionally styles the global slide-out
 * navigation with a broad `nav` selector. Scope the column page's own
 * breadcrumbs and previous/next links so they remain in normal document flow.
 */
body nav.column-breadcrumb,
body nav.column-pagination {
  display: flex;
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  top: auto;
  left: auto;
  z-index: auto;
}

body nav.column-breadcrumb a,
body nav.column-pagination a {
  opacity: 1;
}

body nav.column-breadcrumb a:hover,
body nav.column-pagination a:hover {
  opacity: 1;
  text-decoration: none;
}


body nav.site-global-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 200;
}
