/* Subtle desktop dividers make the primary categories easier to scan. */
@media (min-width: 981px) {
  #site-menu {
    display: flex;
    align-items: center;
    gap: 0;
  }

  #site-menu > * {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  #site-menu > * + * {
    position: relative;
    margin-left: clamp(9px, 0.9vw, 13px);
    padding-left: clamp(9px, 0.9vw, 13px);
  }

  #site-menu > * + *::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    background: rgba(20, 56, 43, 0.22);
    transform: translateY(-50%);
    pointer-events: none;
  }
}
