.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox--open {
    display: flex;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 92vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    background-color: white;
}

.lightbox-caption {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    margin: 0.75rem 0 0;
    padding: 0 1rem;
    line-height: 1.5;
}

.lightbox-caption p {
    margin: 0;
    color: #fff;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    padding: 0.1em 0.3em;
    transition: opacity 0.15s ease;
}

.lightbox-close:hover {
    opacity: 1;
}
