/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 24 2026 | 10:09:21 */
figure.wp-block-gallery.Galery {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  align-items: flex-start !important;
}

figure.wp-block-gallery.Galery > figure.wp-block-image {
  width: calc((100% - 32px) / 3) !important;
  flex: 0 0 calc((100% - 32px) / 3) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

figure.wp-block-gallery.Galery > figure.wp-block-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

figure.wp-block-gallery.Galery .wp-element-caption {
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}
@media (max-width: 900px) {
  figure.wp-block-gallery.Galery > figure.wp-block-image {
    width: calc((100% - 16px) / 2) !important;
    flex: 0 0 calc((100% - 16px) / 2) !important;
  }
}
@media (max-width: 600px) {
  figure.wp-block-gallery.Galery > figure.wp-block-image {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}