/* ETERNITUM - Skeleton Loading Styles */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Skeleton variants */
.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text-sm {
    height: 0.75rem;
    width: 60%;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 1.5rem;
    width: 70%;
    margin-bottom: 1rem;
}

.skeleton-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 1;
}

.skeleton-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Memorial card skeleton */
.skeleton-memorial-card {
    padding: 1rem;
}

.skeleton-memorial-card .skeleton-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Tribute skeleton */
.skeleton-tribute {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.skeleton-tribute-content {
    flex: 1;
}

/* Photo grid skeleton */
.skeleton-photo {
    aspect-ratio: 1;
    border-radius: 8px;
}

/* Dark theme support */
[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
}

[data-theme="dark"] .skeleton-card {
    background: #2a2a2a;
}