input {
  display: none;
}

#search-bar {
  display: block;
  border: 0;
  height: 2rem;
  font-family: "Review", sans-serif;
  font-weight: bold;
  color: var(--text-color);
  font-size: 1rem;
}

#search-bar::placeholder {
  color: var(--inactive-color);
  opacity: 1;
}

#search-bar:focus {
  outline: none;
  box-shadow: none;
}

.filter-category label {
  cursor: pointer;
}

.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%;
  }
}
