.progress-container {
    position: relative;
    display: inline-block;
    max-height: 25vh;
    width: clamp(25%, 60%, 90%);

    .progress-image {
        max-height: 25vh;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;

        &.progress-background {
            filter: grayscale(100%) brightness(0.3);
            opacity: 0.5;
        }

        &.progress-foreground {
            position: absolute;
            top: 0;
            left: 0;
            transition: clip-path 15ms linear;
        }
    }
}
