.content-image {
    /* max-width: 55%; */
    margin-left: auto;
    margin-right: auto;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(50, 100, 150, 0.15);
    margin: 0 auto;
}


.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}


.lightbox-container {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image {
    /* max-width: 90vw; */
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: red;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}
.lightbox-trigger {
    cursor: pointer;
    display: inline-block;
}

.lightbox-trigger img {
    transition: transform 0.2s ease;
}

.lightbox-trigger img:hover {
    transform: scale(1.02);
}

.image{
    margin-bottom: 40px;
}


@media (max-width: 768px) {
    .lightbox-overlay {
        backdrop-filter: blur(8px);
    }
    
    .lightbox-container {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 85vh;
        object-fit: contain;
    }
    
    .lightbox-close {
        top: -35px;
        right: 5px;
        font-size: 28px;
    }
}