.nav-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: 180px;
  padding: 3px 11px 3px 4px;
  border: 1px solid rgba(24, 63, 104, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #163f36;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-account-avatar {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #183f68;
  color: #fff;
  font-size: .76rem;
}
.nav-account-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 640px) {
  .nav-account-chip { max-width: 116px; }
  .nav-account-name { max-width: 70px; }
}
