.article-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.article-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1055;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    transition: opacity .2s ease;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: .5rem 1rem;
    cursor: pointer;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

body.lightbox-open {
    overflow: hidden;
}
