/* ===== Anchor Nav =====
   DOM (JS-generated, inserted at top of #event-info):
     .w64-anchor-nav__sentinel   (0-height trigger for sticky)
     nav.w64-anchor-nav[.is-sticky]
       ul.w64-anchor-nav__list
         li.w64-anchor-nav__item
           a.w64-anchor-nav__link[.is-active]
===== */
.w64-anchor-nav__sentinel {
  height: 0;
}

.w64-anchor-nav {
  width: 100%;
  z-index: 200;
  display: none;
}
@media (max-width: 768px) {
  .w64-anchor-nav {
    display: block;
  }
}
.w64-anchor-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.w64-anchor-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  column-gap: 20px;
  row-gap: 8px;
  padding: 10px 20px;
  background-color: #E8DCCF;
  flex-wrap: wrap;
}
.w64-anchor-nav__list::-webkit-scrollbar {
  display: none;
}
.w64-anchor-nav__item {
  flex-shrink: 0;
}
.w64-anchor-nav__link {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  color: var(--Text-Primary, #3A2C26);
  font-family: "Helvetica Now";
  font-size: var(--Text-Size-XS, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.w64-anchor-nav__link.is-active {
  font-weight: 700;
  text-decoration: underline;
  color: var(--Text-Primary, #3A2C26);
}

/*# sourceMappingURL=anchor-nav.css.map */
