.full-width {
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

/* Default: 2 images per row for PC */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 0px;
    margin-top: 20px;
    width: 100%;
}

/* Ensure images fit width but maintain aspect ratio */
.gallery img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
}


.lightbox {
    display: none; /* Ensures it's hidden at first */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Expanded image */
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* Mobile: 1 image per row */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}
