/* Masonry layout for Gutenberg gallery */
.wp-block-gallery {
  column-count: 3;        /* number of columns on desktop */
  column-gap: .5rem;       /* spacing between columns */
}

.wp-block-gallery figure {
  display: inline-block;  /* allow images to flow into columns */
  margin: 0 0 .25rem;       /* spacing below each image */
  width: 100%;            /* ensure full width inside column */
}

.wp-block-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;     /* optional styling */
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .wp-block-gallery { column-count: 3; }
}
@media (max-width: 768px) {
  .wp-block-gallery { column-count: 2; }
}
@media (max-width: 480px) {
  .wp-block-gallery { column-count: 1; }
}
