/* ── DKBS Campaign Gallery ───────────────────────────────────── */

.dkbs-gallery {
    width: 100%;
    padding: 64px 24px;
    box-sizing: border-box;
    background: #f8faf6;
    font-family: 'Figtree', sans-serif;
}

.dkbs-gallery__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.dkbs-gallery__heading {
    margin: 0 0 40px;
    font-size: 28px;
    font-weight: 600;
    color: #425447;
    text-align: center;
}

/* ── Grid: 1 large left + 2×2 right (like DKSU-209 screenshot) ── */

.dkbs-gallery__grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 480px;
}

.dkbs-gallery__cell {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #e0e8dc;
    text-decoration: none;
    cursor: pointer;
}

/* Images beyond the 5 visible cells — present only to feed the lightbox slideshow */
.dkbs-gallery__more {
    display: none;
}

.dkbs-gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Large left image — spans both rows */
.dkbs-gallery__cell--0 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Four small images — 2×2 on the right */
.dkbs-gallery__cell--1 { grid-column: 2; grid-row: 1; }
.dkbs-gallery__cell--2 { grid-column: 3; grid-row: 1; }
.dkbs-gallery__cell--3 { grid-column: 2; grid-row: 2; }
.dkbs-gallery__cell--4 { grid-column: 3; grid-row: 2; }

/* Hover overlay */
.dkbs-gallery__cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(66, 84, 71, 0);
    transition: background 0.2s ease;
    pointer-events: none;
    border-radius: 10px;
}

.dkbs-gallery__cell:hover::after {
    background: rgba(66, 84, 71, 0.15);
}

/* "Se alle billeder" button — bottom-left of main image */
.dkbs-gallery__open-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #222222;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.15s;
}

.dkbs-gallery__open-btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

/* Clicking images opens Elementor's native lightbox slideshow (no custom dialog). */

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    .dkbs-gallery {
        padding: 48px 20px;
    }

    .dkbs-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .dkbs-gallery__cell--0 {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 240px;
    }

    .dkbs-gallery__cell--1,
    .dkbs-gallery__cell--2,
    .dkbs-gallery__cell--3,
    .dkbs-gallery__cell--4 {
        grid-column: auto;
        grid-row: auto;
        height: 160px;
    }
}
