.preview-gallery-grid { max-width: -webkit-fill-available; margin: 0 auto 2em; display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; grid-gap: 10px; }
.preview-gallery-row-top { grid-column: 1 / -1; margin-bottom: 0; }
.preview-gallery-img-top { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; cursor: pointer; }
.preview-gallery-row-bottom { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 10px; }
.preview-gallery-col { position: relative; }
.preview-gallery-link { display: block; width: 100%; height: 100%; }
.preview-gallery-img-bottom { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; cursor: pointer; max-height: 6rem ; }
.gallery-label { position: absolute; bottom: 8px; right: 8px; z-index: 10; }
.badge { display: inline-block; padding: .25em .4em; font-size: 75%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25rem; }
.bg-gray-900 { background-color: #212529 !important; }
.text-white { color: #fff !important; }
@media (max-width: 600px) {
    .preview-gallery-img-top { height: 160px; }
    .preview-gallery-img-bottom { height: 80px; }
}
@media (max-width: 1199.98px) {
    .preview-gallery-grid {
        grid-template-rows: 251px 1fr;
        height: auto;
    }
    .preview-gallery-img-top,
    .preview-gallery-img-bottom {
        height: 100%;
    }
} 