/* Animation d’apparition — classes ajoutées par animated-image.js */
@media screen and (prefers-reduced-motion: no-preference) {
    img.pg-animated-image {
        opacity: 0;
        transition: opacity 500ms ease-in-out;
    }

    img.pg-animated-image.pg-animated-image--blur {
        filter: blur(0px);
        transition: filter 500ms ease-in-out, opacity 500ms ease-in-out;
    }
}

img.pg-animated-image.pg-animated-image--visible {
    opacity: 1;
    filter: none;
}
