/* Skeleton Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 1em;
    width: 100%;
    margin-bottom: 0.5em;
    border-radius: 4px;
}

.skeleton-card {
    display: flex;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    align-items: center;
    gap: 12px;
}

.skeleton-card__image {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
}

.skeleton-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-title {
    height: 20px;
    width: 70%;
}

.skeleton-subtitle {
    height: 14px;
    width: 40%;
}

.skeleton-badge {
    height: 20px;
    width: 60px;
    border-radius: 999px;
    align-self: flex-start;
}