/* Approved shared header. The two tiers keep every destination visible. */
.site-header.navigation-header {
  display: block;
  min-height: 0;
  padding: 0;
  background: #fff;
}
.navigation-header .header-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
  align-items: center;
  gap: 0 28px;
  min-height: 92px;
}
.site-header.navigation-header .brand {
  justify-self: start;
  width: auto;
  padding: 20px 28px;
  gap: 14px;
}
.navigation-header .brand-shield { width: 38px; flex-basis: 38px; }
.navigation-header .brand-name img { width: 224px; }
.navigation-header .brand-name > span { font-size: .8125rem; }
.site-header.navigation-header .header-contact {
  display: flex;
  justify-self: end;
  margin: 0 40px 0 0;
  padding: 12px 0;
  gap: 24px;
  font-size: .875rem;
  max-width: 100%;
}
.navigation-header .header-contact > .header-contact-label { font: inherit; }
.site-header.navigation-header .main-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 36px;
  width: 100%;
  padding: 0 28px;
  border-top: 1px solid #e3eaf3;
  font-size: .9375rem;
  line-height: 1.5;
}
.site-header.navigation-header .main-navigation a {
  padding: 15px 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  text-decoration: none;
}
.site-header.navigation-header a:hover { text-decoration: none; color: #234c88; }
.site-header.navigation-header .main-navigation a[aria-current="page"],
.navigation-header .header-contact[aria-current="page"] .header-contact-label {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .5em;
  text-decoration-color: #234c88;
}
.site-header.navigation-header a:focus-visible {
  outline: 3px solid #234c88;
  outline-offset: 5px;
}
.site-header.navigation-header .brand:focus-visible { outline-offset: -6px; }
html:has(.navigation-header) { scroll-padding-top: var(--header-offset, 170px); }

/* Equal side tracks keep the visible shortcuts on the header's central axis. */
.site-header.navigation-header .section-navigation {
  display: flex;
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  min-width: 0;
  max-width: 100%;
  width: auto;
  padding: 0;
  border: 0;
  font-size: .9375rem;
  line-height: 1.5;
}
.site-header.navigation-header .section-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 12px 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  text-decoration: none;
}

/* Only the approved contextual links. Existing buttons and contact links stay intact. */
main a.page-link,
.dossier-page .dossier-statement-link.page-link,
#dossier a.dossier-page-link.page-link {
  text-decoration: none;
  border-bottom: 0;
}
main a.page-link:hover,
.dossier-page .dossier-statement-link.page-link:hover,
#dossier a.dossier-page-link.page-link:hover {
  text-decoration: none;
  background-color: #a9c8ff1a;
}
main a.inline-page-link { color: #c5d9ff; font-weight: 600; }
main .light-section a.inline-page-link,
.statement-page main a.inline-page-link { color: #234c88; }
main a.page-link:focus-visible {
  outline: 3px solid #a9c8ff;
  outline-offset: 5px;
  border-radius: 2px;
}
main .light-section a.page-link:focus-visible,
.statement-page main a.page-link:focus-visible { outline-color: #234c88; }

/* Exterior taken from the real Home .dossier-frame, with intrinsic content height. */
.dossier-page .dossier-collection {
  position: relative;
  border: 1px solid #6584b3;
  background: linear-gradient(130deg, #28426733, #10233e44);
  box-shadow: 12px 12px 0 #0c192c, 12px 12px 0 1px #425c80;
}
.dossier-page .dossier-collection::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -9px;
  width: 170px;
  height: 9px;
  border: 1px solid #6584b3;
  border-bottom: none;
  background: #1e3555;
  border-radius: 5px 5px 0 0;
}
@media (max-width: 1200px) {
  .navigation-header .header-top { grid-template-columns: minmax(0, 1fr); }
  .site-header.navigation-header .header-contact { margin-right: 28px; }
}
@media (max-width: 1100px) {
  .site-header.navigation-header { position: relative; padding: 0; }
  .site-header.navigation-header .main-navigation { gap: 0 28px; }
  html:has(.navigation-header) { scroll-padding-top: 24px; }
}
@media (max-width: 650px) {
  .navigation-header .header-top { padding: 0 20px 8px; }
  .site-header.navigation-header .brand { justify-self: center; padding: 18px 0 10px; }
  .site-header.navigation-header .header-contact { justify-self: center; margin: 0; padding: 12px 0; gap: 16px; }
  .site-header.navigation-header .section-navigation { gap: 0 20px; }
  .site-header.navigation-header .main-navigation { padding: 8px 20px; gap: 0 24px; }
  .site-header.navigation-header .main-navigation a { padding: 12px 0; }
  .dossier-page .dossier-collection {
    margin-right: 7px;
    box-shadow: 7px 7px 0 #0c192c, 7px 7px 0 1px #425c80;
  }
}
@media print { .site-header.navigation-header { position: static; } }
