/**
 * Shared head chrome: icon host + header nav + square corners.
 * Icons are swapped to local SVG by assets/site-icons.js (no icon CDN).
 */

.material-symbols-outlined {
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  font-family: inherit;
}

.site-header-nav-link {
  font-size: 14px;
  line-height: 20px;
}

.site-header-dropdown-link {
  font-size: 14px;
  line-height: 20px;
}

.site-header-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 120ms ease, transform 120ms ease, visibility 0s linear 180ms;
}

.site-header-hover-menu:hover > .site-header-dropdown,
.site-header-hover-menu:focus-within > .site-header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-header-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
}

.site-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 24, 31, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.site-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.site-mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(88vw, 380px);
  max-width: 380px;
  background: #ffffff;
  box-shadow: 24px 0 48px rgba(15, 23, 42, 0.22);
  transform: translateX(-102%);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-mobile-drawer.is-open {
  transform: translateX(0);
}

.site-mobile-menu-open {
  overflow: hidden;
}

.site-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e9f0;
  padding: 12px 0;
  color: #242528;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  transition: color 120ms ease, padding-left 120ms ease;
}

.site-mobile-link:hover,
.site-mobile-link:focus-visible {
  color: #0075ff;
  padding-left: 4px;
}

.site-mobile-sub-link {
  display: block;
  padding: 8px 0 8px 14px;
  border-left: 2px solid #d8e7ff;
  color: #646a73;
  font-size: 13px;
  line-height: 20px;
  transition: color 120ms ease, border-color 120ms ease;
}

.site-mobile-sub-link:hover,
.site-mobile-sub-link:focus-visible {
  border-color: #0075ff;
  color: #0075ff;
}

@media (min-width: 1024px) {
  .site-mobile-overlay,
  .site-mobile-drawer {
    display: none;
  }
}

:root {
  --stitch-radius: 3px;
}

html body button,
html body input,
html body input[type="search"],
html body input[type="text"],
html body input[type="email"],
html body select,
html body textarea,
html body [role="button"],
html body [class*="border"],
html body [class*="shadow"],
html body [class*="overflow-hidden"] {
  border-radius: var(--stitch-radius);
}
