.emp6-gallery { width:100%; box-sizing:border-box; --emp6-columns-desktop:4; --emp6-columns-tablet:3; --emp6-columns-mobile:2; --emp6-gap-desktop:12px; --emp6-gap-tablet:10px; --emp6-gap-mobile:8px; column-gap:var(--emp6-gap-desktop); }
.emp6-gallery .emp6-item { break-inside: avoid; margin-bottom:var(--emp6-gap-desktop); position:relative; transition:transform .35s ease, opacity .35s ease; overflow:hidden; }
.emp6-gallery .emp6-item img { width:100%; height:auto; display:block; border-radius:25px; object-fit:cover; }

/* Desktop */
@media (min-width: 1025px) {
  .emp6-gallery { column-count: calc(var(--emp6-columns-desktop)); column-gap: var(--emp6-gap-desktop); }
  .emp6-gallery .emp6-item { margin-bottom: var(--emp6-gap-desktop); }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .emp6-gallery { column-count: calc(var(--emp6-columns-tablet)); column-gap: var(--emp6-gap-tablet); }
  .emp6-gallery .emp6-item { margin-bottom: var(--emp6-gap-tablet); }
}

/* Mobile */
@media (max-width: 767px) {
  .emp6-gallery { column-count: calc(var(--emp6-columns-mobile)); column-gap: var(--emp6-gap-mobile); }
  .emp6-gallery .emp6-item { margin-bottom: var(--emp6-gap-mobile); }
}

/* +N placeholder styles */
.emp6-more-placeholder { display:none; margin-bottom:12px; }
.emp6-more-placeholder .emp6-more-text { display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.55); color:#fff; font-weight:700; font-size:28px; padding:20px 30px; border-radius:12px; }

/* caption */
.emp6-caption { padding:8px; font-size:13px; color:#333; }
