.cds-image-shell {
    overflow: visible;
}

.cds-image-shell__img {
    display: block;
    width: 100%;
    height: auto;
    background: linear-gradient(
        90deg,
        rgb(234 238 243 / 100%) 0%,
        rgb(245 247 250 / 100%) 50%,
        rgb(234 238 243 / 100%) 100%
    );
    background-size: 200% 100%;
    animation: cds-image-skeleton 1.6s ease-in-out infinite;
}

@keyframes cds-image-skeleton {
    0% {
        background-position: 200% 0;
    }

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

@media (prefers-reduced-motion: reduce) {
    .cds-image-shell__img {
        animation: none;
    }
}
