/* Gallery Component Styles */

.gallery-grid {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.pattern-tile {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: none;
  width: 250px;
  margin: 0;
}


.tile-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.tile-preview canvas {
  max-width: 100%;
  height: auto;
}

.tile-name {
  display: none;
}

/* Responsive masonry */
@media (max-width: 1024px) {
  .pattern-tile {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .pattern-tile {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .pattern-tile {
    width: 100%;
  }
}

