.city-gallery-wrap { background: var(--bg); padding: 20px 24px 4px; width: 100%; }
.city-gallery-inner { max-width: 1262px; margin: 0 auto; }
.city-gallery-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.city-gallery-hd-icon { font-size: 1rem; }
.city-gallery-hd-title { font-size: .8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .07em; }
.city-gallery-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.city-gallery-strip::-webkit-scrollbar { height: 4px; }
.city-gallery-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.city-photo { flex: 0 0 220px; height: 148px; border-radius: 10px; overflow: hidden; position: relative; background: var(--border); cursor: pointer; }
.city-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.city-photo:hover img { transform: scale(1.04); }
.city-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 10px 8px; background: linear-gradient(transparent, rgba(0,0,0,.58)); color: #fff; font-size: .65rem; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; opacity: 0; transition: opacity .2s; }
.city-photo:hover .city-photo-caption { opacity: 1; }
.city-photo-skel { flex: 0 0 220px; height: 148px; border-radius: 10px; background: var(--border); animation: gallery-pulse 2.2s ease-in-out infinite; }
@keyframes gallery-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

/* ── Lightbox ── */
#city-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .22s ease; pointer-events: none; }
#city-lightbox.lb-open { opacity: 1; pointer-events: auto; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); }
.lb-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 92vw; }
#lb-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 8px; display: block; box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.lb-caption { color: rgba(255,255,255,.75); font-size: .72rem; margin-top: 10px; text-align: center; max-width: 600px; line-height: 1.4; }
.lb-counter { color: rgba(255,255,255,.4); font-size: .62rem; margin-top: 5px; }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.8rem; line-height: 1; padding: 14px 18px; cursor: pointer; border-radius: 8px; transition: background .15s; }
.lb-nav:hover { background: rgba(255,255,255,.25); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
.lb-close { position: fixed; top: 16px; right: 16px; z-index: 2; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.3rem; line-height: 1; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.lb-close:hover { background: rgba(255,255,255,.3); }

@media (max-width: 600px) {
  .city-gallery-wrap { padding: 16px 12px 4px; }
  .city-photo, .city-photo-skel { flex: 0 0 165px; height: 112px; }
  .lb-nav { padding: 10px 13px; font-size: 1.4rem; }
  #lb-prev { left: 6px; }
  #lb-next { right: 6px; }
}
