/* LQIP: Low-res loads instantly, full-res fades in when ready */
.lqip-img {
  transition: opacity 0.4s ease, filter 0.4s ease;
}
/* Only blur images that participate in LQIP swap (have lqip-load-full) */
.lqip-img.lqip-load-full:not(.lqip-loaded) {
  filter: blur(6px);
}
.lqip-img.lqip-loaded {
  filter: none;
  opacity: 1;
}

/* aurum2: crop offset to show more of top */
img[src*="aurum2"] {
  object-position: 50% 25%;
}
