.image-fullscreen-background {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: 1000;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.jss_article_image {
    cursor: pointer;
    transition: transform ease-in-out 300ms;
}

.jss_article_image.active {
    display: flex;
    align-items: center;
    z-index: 2000;
    width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
    object-fit: contain;
    max-height: 95%;
    max-width: 95%;
    height: 100%;
}

.jss_article_image.active:hover {
    transform: unset;
    transition: unset;
}

.jss_article_image:hover {
    transform: scale(1.01);
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
}