/* Native Tilted Card behavior, scoped to the existing hero link. */
.effects-on .latest-sticker,
.latest-sticker,
.latest-sticker:hover {
  animation: none;
  transform: rotate(9deg);
}
@media (min-width: 901px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .effects-on .latest-sticker,
  .latest-sticker,
  .latest-sticker:hover {
    transform: perspective(850px) rotateZ(9deg) rotateX(var(--card-x, 0deg)) rotateY(var(--card-y, 0deg));
    transition: transform 220ms ease-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .latest-sticker { transition: none; }
}
