/* BASE */
.easysiga-gallery {
    width: 100% !important;
}

/* GRID */
.easysiga-gallery.easysiga-grid {
    display: grid !important;
}

/* MASONRY (CLEAN) */
.easysiga-gallery.easysiga-masonry {
    width: 100%;
}

.easysiga-gallery.easysiga-masonry .easysiga-item {
    margin-bottom: 15px;
}

/* LIST */
.easysiga-gallery.easysiga-list {
    display: block;
}

/* IMAGE */
.easysiga-gallery .easysiga-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* LIGHTBOX */
[class*="-lightbox"] {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    z-index: 9999999;
}

[class*="-lightbox"].active {
    display: flex !important;
}

[class*="-lightbox"] img {
    max-width: 90%;
    max-height: 90%;
}

[class*="-close"],
[class*="-prev"],
[class*="-next"] {
    position: absolute;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

[class*="-close"] { top: 20px; right: 30px; }
[class*="-prev"] { left: 30px; }
[class*="-next"] { right: 30px; }

/* =========================
   MASONRY BASE
========================= */
.easysiga-gallery.easysiga-masonry {
    width: 100%;
}

/* =========================
   BALANCED (Pinterest style)
========================= */
.easysiga-gallery.masonry-balanced {
    column-count: 3;
    column-gap: 15px;
}

.easysiga-gallery.masonry-balanced .easysiga-item {
    break-inside: avoid;
    margin-bottom: 15px;
}

/* =========================
   MAGAZINE (Mixed layout)
========================= */
.easysiga-gallery.masonry-magazine {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
}

.easysiga-gallery.masonry-magazine .easysiga-item {
    overflow: hidden;
}

.easysiga-gallery.masonry-magazine .easysiga-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Large blocks */
.easysiga-gallery.masonry-magazine .easysiga-item:nth-child(5n) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Wide blocks */
.easysiga-gallery.masonry-magazine .easysiga-item:nth-child(3n) {
    grid-column: span 2;
}