/* Admin Gallery Grid */
/* Grid container */


.bdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

/* Each item */
.bdg-grid .bdg-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: move;
    padding: 6px;
    text-align: center;
    box-sizing: border-box;
}

/* Thumbnail box — HARD LOCK */
.bdg-grid .bdg-thumb {
    position: relative;
    width: 100%;
    height: 90px;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f3f3;
}

/* Image — FORCE CONTAINMENT */
.bdg-grid .bdg-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;   /* IMPORTANT */
    max-height: none;  /* IMPORTANT */
    display: block;
}

/* Video placeholder */
.bdg-grid .bdg-video-preview {
    width: 100%;
    height: 100%;
    font-size: 28px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Meta text */
.bdg-grid .bdg-meta {
    margin-top: 6px;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
}


.bdg-video-preview {
    font-size: 28px;
    color: #666;
}

.bdg-meta {
    margin-top: 6px;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
}

.bdg-empty {
    grid-column: 1 / -1;
    text-align: center;
}

