.post-gallery { display: grid; gap: 3px; margin: 16px 0; height: min(430px, 55vw); min-height: 240px; overflow: hidden; border-radius: 10px; }
.post-gallery-1 { grid-template-columns: 1fr; }
.post-gallery-2 { grid-template-columns: 1fr 1fr; }
.post-gallery-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.post-gallery-3 .post-gallery-tile:first-child { grid-row: 1 / 3; }
.post-gallery-tile { position: relative; padding: 0; border: 0; overflow: hidden; background: #111; cursor: pointer; }
.post-gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s ease; }
.post-gallery-tile:hover img { transform: scale(1.02); }
.post-gallery-more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.58); color: #fff; font-size: clamp(2rem, 7vw, 4rem); font-weight: 700; }
.post-gallery-modal { position: fixed; inset: 0; z-index: 10000; display: none; background: rgba(0,0,0,.94); }
.post-gallery-modal.open { display: block; }
.post-gallery-stage { width: 100%; height: 100%; display: grid; place-items: center; padding: 60px 80px; }
.post-gallery-slide { display: none; max-width: 100%; max-height: 100%; object-fit: contain; }
.post-gallery-slide.active { display: block; }
.post-gallery-close, .post-gallery-nav { position: absolute; z-index: 2; border: 0; color: white; background: rgba(0,0,0,.45); cursor: pointer; }
.post-gallery-close { right: 20px; top: 14px; width: 48px; height: 48px; border-radius: 50%; font-size: 36px; line-height: 40px; }
.post-gallery-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 70px; border-radius: 8px; font-size: 34px; }
.post-gallery-prev { left: 16px; }
.post-gallery-next { right: 16px; }
.post-gallery-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: white; background: rgba(0,0,0,.55); padding: 6px 14px; border-radius: 16px; }
body.gallery-open { overflow: hidden; }
@media (max-width: 600px) {
    .post-gallery { min-height: 210px; }
    .post-gallery-stage { padding: 55px 12px; }
    .post-gallery-nav { width: 44px; height: 60px; }
}
