.lazy-img {
    width: 100%;
    min-height: 200px;
    background: #eee;
    opacity: 0;
    transition: opacity .4s ease;
}

.lazy-img.loaded {
    opacity: 1;
    background: none;
}
.lazy-img {
    filter: blur(8px);
    transition: filter .4s ease, opacity .4s;
}

.lazy-img.loaded {
    filter: blur(0);
}
/* Skeleton Grid */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* Card */
.skeleton-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* Image Placeholder */
.sk-image {
    height: 150px;
    border-radius: 6px;
    background: #eee;
    margin-bottom: 12px;
}

/* Lines */
.sk-line {
    height: 12px;
    background: #eee;
    border-radius: 6px;
    margin-bottom: 10px;
}

.sk-title {
    height: 16px;
    width: 70%;
}

.sk-text {
    width: 100%;
}

.sk-text.short {
    width: 60%;
}

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

.sk-image,
.sk-line {
    background: linear-gradient(
        90deg,
        #eee 25%,
        #f5f5f5 37%,
        #eee 63%
    );
    background-size: 400px 100%;
    animation: shimmer 1.4s infinite;
}
