/* .lazy-image-container {
    position: relative;
    display: inline-block;
    height: auto;
}

.lazy-image-container img {
    display: block;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: placeholder-shimmer 1.5s infinite linear;
    opacity: 1;
}

@keyframes placeholder-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
} */
