/*
 * Alltech Gallery Widget Styles
 * Responsive grid, modern look
 */
.alltech-gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols,3), 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .alltech-gallery-grid {
    grid-template-columns: repeat(var(--gallery-cols-tablet,2), 1fr);
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .alltech-gallery-grid {
    grid-template-columns: repeat(var(--gallery-cols-mobile,1), 1fr);
    gap: 8px;
  }
}
.alltech-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}
.alltech-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}
.alltech-gallery-item:hover img {
  transform: scale(1.04);
}
