.hero-art.bot-profile-art {
  display: grid;
  place-items: center;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bot-profile-art .profile-image-only {
  display: block;
  width: min(100%, 390px);
  height: auto;
  max-height: 390px;
  object-fit: contain;
  image-rendering: pixelated;
  animation: profile-image-float 3s steps(4, end) infinite;
}

@keyframes profile-image-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 800px) {
  .bot-profile-art .profile-image-only {
    width: min(82%, 290px);
    max-height: 290px;
  }
}
