.public-header {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 10, .92);
  backdrop-filter: blur(12px);
}

.public-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.public-header-brands {
  display: flex;
  align-items: center;
  gap: 14px;
}

.public-brand img {
  display: block;
  width: 164px;
  height: auto;
}

.public-header-napit {
  display: block;
  width: auto;
  height: 164px;
  object-fit: contain;
  background: #fff;
}

.public-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.public-nav-links a:hover,
.public-nav-links .active {
  color: var(--yellow);
}

.public-portal-link {
  color: #111 !important;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 8px 12px;
}

.public-portal-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #111 !important;
}

.public-phone {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .public-nav-links {
    display: none;
  }

  .public-brand img {
    width: 145px;
  }

  .public-header-napit {
    height: 145px;
  }
}
