/**
 * Skeleton Loading Styles
 * Used for placeholder cards while REST API loads
 */

.skeleton-item {
    pointer-events: none;
}

.skeleton-text {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    display: block;
}

.skeleton-views {
    width: 60px;
    height: 16px;
}

.skeleton-date {
    width: 140px;
    height: 20px;
    margin: 8px 0;
}

.skeleton-title {
    width: 100%;
    height: 24px;
    margin: 8px 0;
}

.skeleton-city {
    width: 80px;
    height: 16px;
}

.skeleton-publish-date {
    width: 120px;
    height: 16px;
    margin-top: 4px;
}

.skeleton-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
