.header-banner {
  background-color: rgb(var(--color-light));
  border-bottom: 1px solid rgb(var(--color-grey) / 0.2);
}

.header-banner .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}

.header-banner-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgb(var(--color-main-blue));
  flex-shrink: 0;
}

.header-banner p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.header-top {
  background-color: rgb(var(--color-white));
  border-bottom: 1px solid rgb(var(--color-grey) / 0.2);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.header-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-seal {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.header-identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-org-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.header-org-parent {
  margin: 0;
  font-size: 1rem;
  color: rgb(var(--color-grey));
  font-weight: 400;
}

.header-nav {
  background-color: rgb(var(--color-white));
  border-bottom: 1px solid rgb(var(--color-grey) / 0.2);
}

.header-nav .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.header-nav ul li a,
.header-nav ul li a:visited {
  display: block;
  padding: 1rem;
  color: rgb(var(--color-black));
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
}

.header-nav ul li a:hover {
  color: rgb(var(--color-main-blue));
  box-shadow: inset 0 -2px 0 0 rgb(var(--color-main-blue));
}

.header-nav ul li a:focus-visible {
  color: rgb(var(--color-main-blue-light));
  outline: 2px solid rgb(var(--color-main-blue-light));
  outline-offset: -2px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgb(var(--color-grey) / 0.4);
  border-radius: 4px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.header-mobile-search {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--color-grey) / 0.4);
  border-radius: 4px;
  overflow: hidden;
}

.header-search > form,
.header-mobile-search > form,
.header-search .js-form-item,
.header-search .form-actions,
.header-mobile-search .js-form-item,
.header-mobile-search .form-actions {
  display: contents;
}

.header-search-label {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-search-label img {
  width: 1rem;
  height: 1rem;
  opacity: 0.5;
}

.header-search-input {
  border: none;
  outline: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  width: 210px;
  font-family: inherit;
  font-weight: 400;
}

.header-mobile-search .header-search-input {
  width: auto;
  flex: 1;
  min-width: 0;
}

.header-search-button {
  border-radius: 0;
  min-width: unset;
  padding: 0.5rem 1rem;
  align-self: stretch;
  margin: 0;
}

.header-parent-mobile {
  display: none;
}

.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgb(var(--color-black));
  line-height: 0;
  flex-shrink: 0;
}

.header-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgb(var(--color-white));
  flex-direction: column;
  overflow-y: auto;
}

.header-mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgb(var(--color-grey) / 0.2);
  flex-shrink: 0;
}

.header-mobile-nav nav {
  flex: 1;
}

.header-mobile-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-nav nav ul li a,
.header-mobile-nav nav ul li a:visited {
  display: block;
  padding: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(var(--color-black));
  text-decoration: none;
}

.header-mobile-nav nav ul li a:hover {
  background-color: rgb(var(--color-light));
  text-decoration: none;
}

.header-mobile-search-wrapper {
  padding: 16px;
  border-top: 1px solid rgb(var(--color-grey) / 0.2);
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-parent-desktop {
    display: none;
  }

  .header-parent-mobile {
    display: inline;
  }

  .header-report-button {
    display: none;
  }

  .header-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-seal {
    width: 48px;
    height: 48px;
  }

  .header-nav {
    display: none;
  }

  .header-mobile-nav.is-open {
    display: flex;
  }
}
