.skeleton-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e8eeeb;
    box-shadow: 0 18px 50px -28px rgba(22, 52, 47, 0.28);
    animation: skeleton-pulse 1.4s infinite;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(31, 41, 39, .05);
}

.skeleton-line {
    height: 14px;
    background: rgba(31, 41, 39, .05);
    margin: 14px;
    border-radius: 999px;
}

.skeleton-line.small {
    width: 60%;
}

@keyframes skeleton-pulse {

    0% {
        opacity: .45;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .45;
    }

}
