.wp-block-custom-gallery-block .custom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wp-block-custom-gallery-block .custom-gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.wp-block-custom-gallery-block .custom-gallery img:hover {
  transform: scale(1.05);
}
