section.image-links .wrapper .graybg {
  list-style-type: none;
  background-color: #E8F1F2;
  border-radius: 5px;
  padding: 2rem;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1rem;
  align-items: start;
}
section.image-links .wrapper .graybg li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
section.image-links .wrapper .graybg li a .imgholder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}
section.image-links .wrapper .graybg li a img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
section.image-links .wrapper .graybg li a .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 1rem;
  z-index: 1;
  font-size: 1.75rem;
  font-weight: bold;
}
section.image-links .wrapper .graybg li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3) 100%);
}
section.image-links .wrapper .graybg li a:hover img {
  transform: scale(1.1);
}
section.image-links .wrapper .graybg li a:hover:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.5;
}
/*# sourceMappingURL=block-image-links.css.map */
