/* ARTIST WORKS */
.gallery-thumbs:hover {
  cursor: pointer;
}
.single-artist section header a {
  text-align: right;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .gallery-thumbs .col-25 {
    flex: calc(33% - var(--gap)); }
}
@media screen and (max-width: 640px) {
  .gallery-thumbs .col-25 {
    flex: calc(50% - var(--gap)); }
}
/* TRANSITION FOR EXHIB FILTER (SOLO/GROUP) */
#exhibs figure {
  transition: all .5s;
  overflow: hidden;
  max-height: 600px;
}
#exhibs.solo .group {
  max-height: 0;
  padding: 0;
}

#exhibs.group .solo {
  max-height: 0;
  padding: 0;
}
