/* Pixel reveal overlay — covers an image with orange pixels, then reveals on scroll */

.pixelated-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pixelated-image-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pixelated-image-card__pixels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pixelated-image-card__pixel {
    background-color: var(--pixel-reveal-color, var(--orange-primary));
    position: absolute;
}
