#filter-nav input:not(#search-bar) {
  display: none;
}

#search-bar {
  display: block;
  border: 0;
  height: 1.8rem;
  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;
  margin-bottom: 1rem;
}

.exposition-item-infos {
  padding: 0;
}

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

.expositions-container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

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

.filter-nav label {
  cursor: pointer;
  user-select: none;
}
#grid {
  width: 100%;
  text-align: center;
  grid-gap: 0;
}
#grid .block-line {
  margin-bottom: 0.8rem;
}
@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%;
  }
  #search-bar {
    margin: auto;
    text-align: center;
    height: 2.8rem;
  }
}
