.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--works);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: calc(100% - 40px) !important;
    max-height: calc(100% - 40px) !important;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
}