/* Shared parent navigation; independent of each article's typography. */
.topbar.site-path-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  height: auto;
  min-height: 64px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #171612;
  background: #f2efe6;
  border-bottom: 1px solid #777066;
}
.site-breadcrumbs {
  flex: 1 1 36rem;
  min-width: 0;
  max-width: 100%;
  color: #171612;
  font: 14px/1.7 "Segoe UI", "Malgun Gothic", Arial, sans-serif;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}
.site-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-breadcrumbs li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.site-breadcrumbs li::before,
.site-breadcrumbs li::after,
.topbar .site-breadcrumbs a::before,
.topbar .site-breadcrumbs a::after { display: none; }
.site-breadcrumbs a,
.topbar .site-breadcrumbs a {
  display: inline;
  color: #171612;
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.site-breadcrumbs [aria-current="page"] {
  color: #514b43;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.site-path-separator { color: #777066; flex-shrink: 0; }
.site-breadcrumbs a:focus-visible { outline: 2px solid #0956b8; outline-offset: 4px; }
.site-path-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  min-width: 0;
  max-width: 100%;
  color: #514b43;
  font-size: 14px;
}
.topbar .site-path-tools a::before { display: none; }
.site-path-tools > * { min-width: 0; max-width: 100%; }
.site-path-tools .topbar-title { white-space: normal; overflow-wrap: anywhere; }
.site-path-tools input { max-width: 100%; }
.site-path-band { padding: 14px clamp(18px, 4vw, 54px); background: #f2efe6; border-bottom: 1px solid #aaa397; }
@media (max-width: 800px) {
  .topbar.site-path-header { position: relative; gap: 8px; }
  .site-breadcrumbs { flex-basis: 100%; }
  .site-path-tools { width: 100%; }
}
@media print {
  .site-path-header, .site-path-band { position: static; }
  .site-path-tools { display: none; }
}
