.preview-contain img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.preview-contain {
  height: auto;
}

.preview-contain:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  min-height: 372px;
}

[data-section-examples] {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.btn-primary {
  background-color: #4f46e5;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #4338ca;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-pill {
  flex-shrink: 0;
}

.fade-stack {
  position: relative;
  overflow: hidden;
}

.fade-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: zabuun-crossfade 4s infinite;
}

.fade-stack img.fade-a {
  animation-delay: 0s;
}

.fade-stack img.fade-b {
  animation-delay: 2s;
}

@keyframes zabuun-crossfade {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
