/* ===== components/loading.css ===== */
/* 骨架屏与加载状态 */

.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.skeleton-card {
    height: 180px;
    background: linear-gradient(90deg, rgba(201,169,89,0.05) 25%, rgba(201,169,89,0.15) 50%, rgba(201,169,89,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.error-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
}