/* A viewport-sized navigation dialog, independent of the page's content width. */
.site-menu {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 12px 24px 40px;
  border: 10px solid #fff;
  background: #000;
  color: #fff;
  overflow: auto;
  overscroll-behavior: contain;
  font-family: madefor-text, Arial, sans-serif;
}
.site-menu:not([open]) { display: none; }
.site-menu::backdrop { background: #000; }
.site-menu__close {
  display: block;
  min-width: 64px;
  min-height: 44px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}
.site-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 48px auto 0;
}
.site-menu__links a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 6px 12px;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}
.site-menu__links a:hover,
.site-menu__links a[aria-current="page"] { color: #bbb; }
.site-menu a:focus-visible,
.site-menu button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
html:has(.site-menu[open]) { overflow: hidden; }
@media (max-height: 650px) {
  .site-menu__links { margin-top: 12px; gap: 4px; }
  .site-menu__links a { font-size: 24px; }
}
@media (max-width: 700px) {
  #SITE_HEADER [data-semantic-classname="hamburger-open-button"] {
    position: fixed;
    top: 6px;
    right: 16px;
    left: auto;
    width: 48px;
    height: 44px;
    margin: 0;
    z-index: 2;
  }
  #SITE_HEADER [data-semantic-classname="hamburger-open-button"] button {
    width: 100%;
    height: 100%;
  }
  #SITE_HEADER #comp-m81k2ajj7 {
    position: fixed;
    top: 0;
    left: 20px;
    display: flex;
    align-items: center;
    width: calc(100vw - 104px);
    height: 55px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
  }
  #SITE_HEADER #comp-m81k2ajj7 p { font-size: 10px !important; }
}
