/* ========== 画廊瀑布流（flex 列 + 最短列贪心插入） ========== */

#masonry-gallery {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#masonry-gallery .mg-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#masonry-gallery .mg-col img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  background: rgba(30, 58, 95, 0.05); /* 加载中的占位底色 */
}
