.masonry-grid {
    display: grid;
    grid-gap: 10px;
    /* Adjust gap as needed */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* Responsive columns */
    grid-auto-rows: 10px;
    /* Initial row height, will adjust based on content */
}

.masonry-grid > img {
    width: 100%;
    display: block;
    grid-row-end: span 2;

    /* Adjust span for desired image height variability */
}

/* Optional: Add hover effects */
.masonry-grid img:hover {
    opacity: 0.8;
}

/* Optional: Add lightbox functionality */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}