.iq-stacked-cards {
  width: 100%;
}

.iq-stacked-cards__stage {
  position: relative;
  width: 100%;
  border-radius: 6px;
}

.iq-stacked-cards__card {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translate3d(0,0,0);
  opacity: 1;
}

.iq-stacked-cards__card.is-hidden {
  opacity: 0;
}


