.detail-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e9e9e9;
}

.kit-figure .detail-carousel img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: uniunion-detail-fade-v4323 10s linear infinite;
}

.kit-figure .detail-carousel .detail-slide-1 {
  animation-delay: 0s;
}

.kit-figure .detail-carousel .detail-slide-2 {
  animation-delay: -5s;
}

@keyframes uniunion-detail-fade-v4323 {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .kit-figure .detail-carousel img {
    animation: none;
    opacity: 0;
  }

  .kit-figure .detail-carousel .detail-slide-1 {
    opacity: 1;
  }
}
