/* ==========================================================================
   Inline Gallery - Waterfall style (one image per row, vertical stack)
   Inspired by Klook product page layout
   ========================================================================== */

.bc-inline-gallery {
    margin-bottom: 20px;
}

/* Waterfall: single column, vertical stack */
.bc-inline-gallery-waterfall {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual gallery item - rounded corners + shadow */
.bc-inline-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.bc-inline-gallery-link {
    display: block;
    cursor: zoom-in;
}

.bc-inline-gallery-link:hover {
    text-decoration: none;
}

/* Gallery image - full width, natural aspect ratio */
.bc-inline-gallery-img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

/* Lazy load: hidden until loaded, fade in */
.bc-inline-gallery-img.bc-lazy {
    opacity: 0;
    min-height: 200px;
}

.bc-inline-gallery-img.bc-lazy-loaded {
    opacity: 1;
    min-height: auto;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .bc-inline-gallery-waterfall {
        gap: 16px;
    }

    .bc-inline-gallery-item {
        border-radius: 10px;
    }
}
