.hg-wrapper-ae63fc7f {
    display: flex;
    flex-direction: column;
}

.hg-item-ae63fc7f {
    cursor: pointer;
    display: block;
    position: relative;
}

.hg-item-ae63fc7f img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hg-grid-ae63fc7f {
    display: grid;
}

/* Custom Lightbox Styles */
.hg-lightbox-ae63fc7f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    flex-direction: column;
}

.hg-lightbox-ae63fc7f.active {
    opacity: 1;
    pointer-events: all;
}

.hg-lightbox-ae63fc7f img {
    max-width: 90%;
    max-height: 80vh; /* Leave room for title */
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hg-lightbox-title-ae63fc7f {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
    max-width: 90%;
    display: none;
}

.hg-lightbox-ae63fc7f.show-title .hg-lightbox-title-ae63fc7f {
    display: block;
}

.hg-lightbox-close-ae63fc7f {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    font-weight: bold;
    user-select: none;
    z-index: 2;
}

.hg-lightbox-nav-ae63fc7f {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    transition: background 0.2s;
}

.hg-lightbox-nav-ae63fc7f:hover {
    background: rgba(0,0,0,0.6);
}

.hg-lightbox-prev-ae63fc7f {
    left: 10px;
}

.hg-lightbox-next-ae63fc7f {
    right: 10px;
}
