.hoverLift{
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.hoverLift:hover{
  transform: translateY(-2px);
  border-color: rgba(47,107,255,.38);
  background: rgba(47,107,255,.06);
}

.floaty{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.floaty__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 12px;
  color: var(--muted);
  font-weight:900;
  animation: bob 3.2s ease-in-out infinite;
}
.floaty__item:nth-child(2){ animation-delay:.3s; }
.floaty__item:nth-child(3){ animation-delay:.6s; }

@keyframes bob{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-3px); }
}
