.bn-news-gallery {
    margin: 32px 0;
}

.bn-news-gallery h3 {
    font-size: 18px;
    border-left: 4px solid #b30000;
    padding-left: 10px;
    margin-bottom: 16px;
}

.bn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.bn-gallery-item {
    margin: 0;
    background: #f7f7f7;
    border-radius: 6px;
    overflow: hidden;
}

.bn-gallery-lightbox-link {
    position: relative;
    display: block;
}

.bn-gallery-lightbox-link img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.bn-gallery-zoom-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bn-gallery-item figcaption {
    font-size: 13px;
    color: #555;
    padding: 8px 10px;
    line-height: 1.4;
}

@media (max-width: 700px) {
    .bn-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Lightbox Overlay ===== */
.bn-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.bn-lightbox-overlay.active { display: flex; }

.bn-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.bn-lightbox-caption {
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    max-width: 80vw;
}

.bn-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}
