input {
  display: none;
}

.exposition-item {
  overflow: hidden;
  opacity: 1;
  height: auto;
  width: calc(calc(100% - calc(var(--gutter-width) * 2)) / 3);
  transition: opacity 0.3s ease;
}

.exposition-item[style*="opacity: 0"] {
  pointer-events: none;
}

#expositions-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh; /* Prevent container from collapsing during animation */
}

.filter-nav-toggler {
  margin-right: 5px;
}

.filter-nav label {
  cursor: pointer;
  user-select: none;
}

@media screen and (max-width: 1000px) {
  .exposition-item {
    width: calc(calc(100% - calc(var(--gutter-width) * 2)) / 2);
  }
}

@media screen and (max-width: 700px) {
  .exposition-item {
    width: 100%;
  }
}
