  :root {  
  --sticky-nav-bg: rgb(var(--deepcobalt));
  --sticky-nav-accent: rgb(var(--spiritblue));
}

.c-sticky-nav {
  position: sticky;
  top: 0;              /* bump this if you have a fixed global header */
  z-index: 1000;
  background: var(--sticky-nav-bg);
  font-family:"Montserrat",sans-serif;
  text-transform:uppercase;
}

/*.c-sticky-nav__list {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
  justify-content:space-between;  
  padding:9px .75rem 9px .75rem
}

.c-sticky-nav__link {
  display: inline-block;
  padding: .25rem .125rem;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  outline: none;
}
*/
.c-sticky-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12ch, 1fr));              
  align-items: center;
  padding: .75rem 0;
  margin: 0;
  list-style: none;
}

.c-sticky-nav__item { min-width: 0;  margin-bottom: 0 !important;} 
.c-sticky-nav__link {
  display: block;
  text-align: center;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color:#fff;
	  font-weight: 600;
  font-size: 1.25rem;
}

.c-sticky-nav__link:focus {
	color:#fff;
}

.c-sticky-nav__link:hover {
  color: rgb(var(--spiritblue));
  font-weight:600;
  border-bottom: 2px solid transparent;
}
.c-sticky-nav__link:focus-visible {
  border-bottom-color: var(--sticky-nav-accent);
  box-shadow: 0 2px 0 var(--sticky-nav-accent);
}

.c-sticky-nav__link.is-active,
.c-sticky-nav__link[aria-current="page"] {
  border-bottom-color: var(--sticky-nav-accent);
}

/* Optional: style when actually “stuck” */
.c-sticky-nav.is-stuck { box-shadow: #222; }

/* Tip: add this to your target sections so headings aren't hidden under the sticky nav */
.c-section { scroll-margin-top: calc(var(--sticky-nav-height) + 12px); }


#inpagenav {
  background-color:rgb(var(--deepcobalt));
}
