.site-static-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  border-bottom: 1px solid #d8e4e5;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(18, 67, 76, 0.06);
  font-family: Arial, Helvetica, sans-serif;
}

.site-static-header__inner {
  display: flex;
  width: min(1180px, 100%);
  min-height: 92px;
  margin: 0 auto;
  padding: 12px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-sizing: border-box;
}

.site-static-header__brand {
  display: inline-flex;
  color: #111111;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-static-header__brand-small {
  color: #1c5f6b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.site-static-header__brand-name {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
}

.site-static-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-static-header__nav a {
  color: #16343a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.site-static-header__nav a:hover,
.site-static-header__nav a:focus-visible,
.site-static-header__nav a[aria-current="page"] {
  color: #1c5f6b;
}

.site-static-header__nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

body.has-static-site-header #SITE_HEADER,
body.has-static-site-header #SITE_HEADER_WRAPPER,
body.has-static-site-header #SITE_HEADER-placeholder {
  display: none !important;
}

@media (max-width: 900px) {
  .site-static-header__inner {
    min-height: auto;
    padding: 14px 18px;
    flex-direction: column;
    gap: 14px;
  }

  .site-static-header__nav {
    justify-content: center;
    gap: 10px 22px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .site-static-header__brand-small {
    font-size: 15px;
  }

  .site-static-header__brand-name {
    font-size: 27px;
  }

  .site-static-header__nav {
    gap: 8px 15px;
  }

  .site-static-header__nav a {
    font-size: 13px;
  }
}
