.nav__business {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(224, 168, 46, .34);
  border-radius: 9px;
  color: var(--gold-200);
  background: rgba(224, 168, 46, .07);
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.nav__business svg { width: 15px; height: 15px; flex: 0 0 auto; }
.nav__business:hover {
  color: var(--gold-50);
  border-color: var(--gold-500);
  background: rgba(224, 168, 46, .13);
  transform: translateY(-1px);
}
.drawer .drawer__business {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-200);
}
.drawer .drawer__business svg { width: 18px; height: 18px; }
@media (max-width: 1120px) {
  .nav__business span { display: none; }
  .nav__business { padding: 9px; }
}
