/* Mobile swipe hint — animated SVG (public/images/swipe-left.svg) */
.swipe-left {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.swipe-left > svg,
.swipe-left__svg {
  width: 72px;
  height: 52px;
  display: block;
  pointer-events: none;
  flex-shrink: 0;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .swipe-left svg animate,
  .swipe-left svg animateTransform {
    display: none !important;
  }
}
