/* Related sites share the menu row when space permits. */
.design-header .d-navigation-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 24px;
  min-width: 0;
}
.design-header .d-navigation-row .d-nav {
  flex: 0 1 auto;
  gap: 0;
  margin: 0 -10px;
}
.design-header .d-navigation-row .d-nav a { padding-inline: 10px; }
.design-header .d-network {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0 0 0 auto;
  padding: 0;
  border-left: 0;
}
.design-header .d-network a,
.design-header .d-network a:visited {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 44px;
  padding: 8px 10px;
  color: #24543b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  text-decoration: none !important;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
.design-header .d-network a:last-child { padding-right: 0; }
.design-header .d-network a + a::before {
  content: "";
  position: absolute;
  left: 0;
  height: 14px;
  border-left: 1px solid #cad9d0;
}
.design-header .d-network a:hover,
.design-header .d-network a:active,
.design-header .d-network a:focus-visible {
  color: #163e29;
  background: #edf3ee;
  text-decoration: none !important;
}
.design-header .d-network a:focus-visible {
  outline: 2px solid #24543b;
  outline-offset: 2px;
}
@media (max-width: 1120px) {
  .design-header .d-network {
    flex-basis: 100%;
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 540px) {
  .design-header .d-network {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: end;
    margin-top: 4px;
  }
  .design-header .d-network a:nth-child(odd)::before { content: none; }
  .design-header .d-network a:nth-child(even) { padding-right: 0; }
}
