.ZrCategoryFinder-wrapper {
  width: 100%;
}
.ZrCategoryFinder-grid {
  gap: var(--gap);
  display: grid;
  grid-template-columns: repeat(var(--colsMobile), 1fr);
}
@media screen and (min-width: 768px) {
  .ZrCategoryFinder-grid {
    grid-template-columns: repeat(var(--colsTablet), 1fr);
  }
}
@media screen and (min-width: 992px) {
  .ZrCategoryFinder-grid {
    grid-template-columns: repeat(var(--colsLaptop), 1fr);
  }
}
@media screen and (min-width: 1300px) {
  .ZrCategoryFinder-grid {
    grid-template-columns: repeat(var(--colsDesktop), 1fr);
  }
}
