.gallery,
.catalogue {
  text-align: center;
  max-width: 1610px;
  margin: 1em auto -1em;
}
.gallery img {
  width: 138px;
  height: 138px;
}
.catalogue img {
  width: 240px;
  height: 240px;
}
.gallery img,
.catalogue img {
  object-fit: cover;
  border-radius: 0.5em;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
}
.gallery figure {
  width: 138px;
  height: 138px;
}
.catalogue figure {
  width: 240px;
  height: 240px;
}
.gallery figure,
.catalogue figure {
  position: relative;
  margin: 0 0.5em 1em;
  padding: 0;
  display: inline-block;
}
.gallery figcaption {
  display: none;
}
.catalogue figcaption {
  background-color: rgba(0, 0, 0, .5);
  padding: .3em;
  color: #E6F9FF;
  border-radius: 0 0 0.5em 0.5em;
  position: absolute;
  width: calc(100% - 0.6em);
  text-align: center;
  bottom: 0;
  font-size: 1em;
}
/* Devices that can hover or select using a keyboard */
@media (hover: hover) and (pointer: fine) {
  .gallery img:hover,
  .catalogue img:hover {
    opacity: 0.8;
  }
  }