/* PAUL 2026-04-30 — stage shot rotator: 3-5s cadence, varied transitions */
.aur-v5-swap.aur-shot-rotator { position:relative; aspect-ratio:16/10; overflow:hidden; border-radius:6px; background:#021816; }
.aur-v5-swap.aur-shot-rotator img { 
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; 
  transition: opacity 1.2s ease, transform 6s linear; 
  opacity:0; will-change: opacity, transform;
}
.aur-v5-swap.aur-shot-rotator img.active { opacity:1 !important; }
/* Rotating transition variants per image */
.aur-v5-swap.aur-shot-rotator img:nth-child(1).active { transform: scale(1.04); }
.aur-v5-swap.aur-shot-rotator img:nth-child(2).active { transform: scale(1.06) translateX(-2%); }
.aur-v5-swap.aur-shot-rotator img:nth-child(3).active { transform: scale(1.08); }
.aur-v5-swap.aur-shot-rotator img:nth-child(4).active { transform: scale(1.05) translateY(-2%); }
.aur-v5-swap.aur-shot-rotator img:nth-child(5).active { transform: scale(1.07); }
