.site-header {
  position: relative;
  z-index: 20;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--site-ink, #102b46);
  background: #fff;
  border-bottom: 1px solid var(--site-line, #d4dfe8);
  font: inherit;
}
.site-header *,
.site-header *::before,
.site-header *::after { box-sizing: border-box; }
.site-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--site-content-width, 1120px);
  min-height: 82px;
  margin: 0 auto;
  padding: 12px var(--site-gutter, clamp(16px, 4vw, 32px));
}
.site-header .site-brand {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: var(--site-ink, #102b46);
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: .035em;
  line-height: 1.25;
  text-decoration: none;
}
.site-brand-mark {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--site-accent, #173b6d);
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: 0;
}
.site-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}
.site-primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--site-muted, #596b7b);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.site-primary-nav a:hover,
.site-primary-nav a[aria-current] {
  color: var(--site-accent, #173b6d);
  background: #edf3f8;
}
.site-primary-nav a[aria-current] { font-weight: 700; }
.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 3px solid #386fad;
  outline-offset: 3px;
}
.site-header .site-menu-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
  min-height: 44px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--site-line, #d4dfe8);
  border-radius: 10px;
  color: var(--site-accent, #173b6d);
  background: #fff;
  font: inherit;
  font-size: .875rem;
  font-weight: 650;
  line-height: 1.3;
  cursor: pointer;
}
.site-header .site-menu-toggle[hidden] { display: none; }
.site-menu-toggle:hover { background: #edf3f8; }
.site-menu-toggle svg {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.site-menu-close,
.site-menu-toggle[aria-expanded="true"] .site-menu-lines { display: none; }
.site-menu-toggle[aria-expanded="true"] .site-menu-close { display: inline; }
@media (max-width: 900px) {
  .site-nav-shell { flex-wrap: wrap; gap: 0 12px; min-height: 72px; }
  .site-header .site-brand { max-width: calc(100% - 100px); font-size: 1rem; }
  .site-primary-nav {
    display: grid;
    flex-basis: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 12px;
    padding: 12px 0 2px;
    border-top: 1px solid var(--site-line, #d4dfe8);
  }
  .site-primary-nav a { justify-content: flex-start; min-height: 46px; }
  .site-nav-ready .site-menu-toggle:not([hidden]) { display: inline-flex; }
  .site-nav-ready .site-primary-nav { display: none; }
  .site-nav-ready[data-site-menu-open] .site-primary-nav { display: grid; }
}
@media (max-width: 380px) {
  .site-primary-nav { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .site-primary-nav a { transition: none; }
}
.site-brand-text{display:grid;min-width:0;gap:3px}
.site-brand-text small{display:block;max-width:230px;color:var(--site-muted,#596b7b);font-size:.6875rem;font-weight:400;letter-spacing:0;line-height:1.4;white-space:normal}