.header-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--medium-gray);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 0.75rem;
  height: 52px;
  min-height: 52px;

  justify-content: space-between;

  & > div {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  & a {
    opacity: 0.75;
    padding: 0rem 0.25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  & a:hover {
    opacity: 1;
  }

  & span {
    display: inline-block;
    padding: 0 0.25rem;
  }

  & .fa-slash-forward {
    opacity: 0.25;
  }
}
