.portal-header::after {
  display: none;
}

.portal-nav {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  gap: 24px;
}

.portal-nav a,
.portal-nav button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font: 800 12px Arial, sans-serif;
  letter-spacing: 0.02em;
  padding: 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.portal-nav a:hover,
.portal-nav a:focus-visible,
.portal-nav button:hover,
.portal-nav button:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .portal-nav {
    display: none;
  }
}
