/* ─── Lanze Gene — Custom Styles ─────────────────────────────────────────── */

/* Lazy-load image progressive reveal */
.img-lazy {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.img-lazy.loaded {
    opacity: 1;
}

/* Blur-up placeholder effect */
.img-blur-up {
    filter: blur(12px);
    transform: scale(1.02);
    transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.img-blur-up.loaded {
    filter: blur(0);
    transform: scale(1);
}

/* Image container with aspect-ratio lock to prevent layout shift */
.img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #e5e7eb; /* gray-200 placeholder */
}

.dark .img-wrapper {
    background-color: #1f2937; /* dark gray-800 placeholder */
}
