.skeleton-card {
    animation: skeleton-pulse 1.4s infinite;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    background: rgb(133, 132, 132);
}

.skeleton-line {
    height: 14px;
    border-radius: 999px;
    background: rgb(133, 132, 132);
    margin-top: 14px;
}

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

@keyframes skeleton-pulse {

    0% {
        opacity: .45;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .45;
    }

}