.icon-band {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.6rem 0 0.4rem;
  font-size: 1.4rem;
  color: inherit;
}

.icon-band span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  animation: icon-band-bob 3.5s ease-in-out infinite;
  will-change: transform;
}

.icon-band span:nth-child(odd) {
  animation-delay: 0s;
}

.icon-band span:nth-child(even) {
  animation-delay: 0.4s;
}

@keyframes icon-band-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
