@charset "UTF-8";
/**
 * Discover arrow: data URI so the icon works from any compiled CSS.
 * A file path like `url('./img/arrow.svg')` resolves relative to the generated
 * .css: OK for `scss/main.css` → `scss/img/`, broken for `blocks/.../css/*.css`.
 */
/**
 * Breakpoints
 */
/**
 * Functions
 */
/**
 * Mixin core
 */
/**
 * anchor_menu block: outer shell + fixed state. Pill strip styles live in `scss/_general.scss` (`.uh-anchor-pills`).
 */
.anchor_menu {
  position: relative;
  z-index: 800;
  width: 100%;
  background: var(--bg);
  padding: 12px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 479px) {
  .anchor_menu {
    padding-bottom: 10px;
  }
}
.anchor_menu.fixed .uh-anchor-pills {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: 0 1px 0 var(--stroke);
  z-index: 801;
  background: var(--bg);
  padding: 10px 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .anchor_menu.fixed .uh-anchor-pills {
    top: 70px;
    padding-inline: 5px;
  }
}
.anchor_menu.fixed .uh-anchor-pills .uh-anchor-pills__line {
  display: none;
}
@media screen and (max-width: 1198px) {
  .anchor_menu {
    padding: 1px 0 8px;
  }
  .anchor_menu.fixed .uh-anchor-pills {
    padding-inline: 5px;
  }
}