/* Stack — ported from React Bits for ahmedmarketing.cloud (mobile portfolio browser) */
.stack-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 600px;
}
.card-rotate {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: grab;
}
.card-rotate-disabled {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.card {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #111;
}
.card img,
.card video {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mobile-stack-mount {
  display: none;
}
.mobile-stack-hint {
  display: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin: 14px 0 0;
}
@media (max-width: 900px) {
  #bounceCardsContainer {
    display: none;
  }
  .mobile-stack-mount {
    display: block;
    width: 250px;
    height: 330px;
    margin: 10px auto 0;
  }
  .mobile-stack-hint {
    display: block;
  }
}
