/* header.css */

#siteHeader{display:block;}

.site-header{
  position:sticky !important;
  top:0 !important;
  z-index:999 !important;
  background:rgba(255,255,255,.92) !important;
  backdrop-filter:blur(18px) !important;
  -webkit-backdrop-filter:blur(18px) !important;
  border-bottom:1px solid rgba(0,0,0,.06) !important;
}

.site-header-inner{
  width:min(1120px,calc(100% - 32px)) !important;
  margin:0 auto !important;
  padding:14px 0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
}

.site-brand{
  display:block !important;
  color:#171717 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
}

.brand-kicker{
  display:block !important;
  margin:0 0 4px !important;
  color:#6f6f73 !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:.24em !important;
}

.brand-title{
  margin:0 !important;
  color:#171717 !important;
  font-size:17px !important;
  line-height:1.18 !important;
  font-weight:850 !important;
  letter-spacing:.04em !important;
}

.header-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:8px !important;
  flex-wrap:nowrap !important;
}

.header-nav a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:38px !important;
  padding:0 13px !important;
  border-radius:999px !important;
  color:#333 !important;
  background:transparent !important;
  border:0 !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:750 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  box-shadow:none !important;
  transform:none !important;
}

.header-nav a:hover,
.header-nav a.is-active,
.header-nav a.active{
  background:#f5f5f7 !important;
  color:#111 !important;
  box-shadow:0 8px 24px rgba(0,0,0,.06) !important;
}

.header-nav .icon-link{
  width:38px !important;
  padding:0 !important;
  font-size:0 !important;
}

.header-nav svg{
  width:18px !important;
  height:18px !important;
  stroke:currentColor !important;
  fill:none !important;
  stroke-width:2 !important;
}

.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

@media (max-width:760px){
  .site-header-inner{
    width:calc(100% - 24px) !important;
    padding:10px 0 !important;
    gap:10px !important;
  }

  .site-brand{
    max-width:44vw !important;
    overflow:hidden !important;
  }

  .brand-kicker{
    font-size:8px !important;
    letter-spacing:.18em !important;
  }

  .brand-title{
    font-size:13px !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .header-nav{
    flex:1 !important;
    justify-content:flex-start !important;
    overflow-x:auto !important;
    gap:5px !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .header-nav::-webkit-scrollbar{display:none !important;}

  .header-nav a{
    flex:0 0 auto !important;
    min-height:34px !important;
    padding:0 10px !important;
    font-size:11px !important;
  }

  .header-nav .icon-link{
    width:34px !important;
    padding:0 !important;
  }
}
