.container-gallery {
  display: flex;
  height: calc(100vh - 80px);
  overflow-y: auto;
  background-color: #f2f2f2;
}

.sidebar {
  width: 220px;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  height: calc(100vh - 80px);
  position: sticky;
  overflow-y: auto;
  top: 0;
}

.sidebar h3 {
  margin-top: 0;
}

.gallery-container {
  flex: 1;
  padding: 20px;
}

.gallery {
  -moz-column-count: 6;
       column-count: 6;
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 4px;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.sidebar-mini {
  border: 1px solid red;
  display: none;
}

@media (max-width: 768px) {
  .gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 1440px) {
  .gallery {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (max-width: 1280px) {
  .gallery {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 980px) {
  .gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 768px) {
  .gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media (max-width: 480px) {
  .sidebar {
    width: 200px;
    border-right: none;
    border-bottom: 1px solid #ddd;
    height: auto;
    position: relative;
    display: none;
  }
  .gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
  .sidebar-mini {
    display: none;
  }
  .layout-wrapper {
    height: 100vh;
    display: block !important;
  }
}
.layout-wrapper {
  height: calc(100vh - 60px);
  display: flex;
}

#reset-filters {
  padding: 5px 10px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

#reset-filters:hover {
  background: #ddd;
}

.filter-group-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.filter-group {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.filter-group h3 {
  margin: 10px 0;
}

.filter-item {
  margin-bottom: 5px;
  font-size: 14px;
}

.no-results {
  text-align: center;
  color: #888;
  margin-top: 20px;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-content-wrapper {
  display: flex;
}

.artworks-wrapper {
  overflow-y: auto;
  background-color: #f1f1f1;
}

.filters-wrapper {
  background-color: #f1f1f1;
}/*# sourceMappingURL=gallery-layout.css.map */