.top-nav a[aria-current] {
  position: relative;
  color: var(--ink, #10231b);
  font-weight: 800;
}

.top-nav a[aria-current]:not(.nav-get)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green, #147a57);
  border-radius: 2px;
  content: "";
}

.brand:focus-visible,
.top-nav a:focus-visible {
  outline: 3px solid rgba(20, 122, 87, 0.28);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .header-inner {
    gap: 16px;
  }

  .top-nav {
    gap: 15px;
    font-size: 0.86rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .top-nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 4px;
    overflow: visible;
  }

  .top-nav a,
  .top-nav a:not(.nav-get) {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    flex: 0 0 auto;
  }

  .top-nav a[aria-current]:not(.nav-get)::after {
    bottom: -2px;
  }
}
