/* Shared primary navigation treatment for MELT editorial and service pages. */
body > .nav,
.page > .nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 4.5rem;
  background: rgba(5, 5, 5, 0.9);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body > .nav .nav__links,
.page > .nav .nav__links {
  color: rgba(255, 255, 255, 0.72);
}

body > .nav a:hover,
body > .nav a:focus-visible,
.page > .nav a:hover,
.page > .nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

@media (max-width: 760px) {
  body > .nav,
  .page > .nav {
    position: relative;
  }
}
