.tilelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;      
}
.tile {
  position: relative;
  width: 30%;
  min-width: 200px;
  max-width: 260px;
  margin: 10px 7px;
  box-shadow: 0 2px 5px #ccc;
  overflow: hidden;
  border-radius: 3px;
  transition: all 0.2s;
}
.tile:hover {
  box-shadow: 0px 0px 5px 2px #67c5ff;
}
.tile:before {
  content:"";
  display: block;
  padding-top: 75%;
}
.tile img {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 75%;
  object-fit: scale-down;
  margin: 0 0 !important;
}
.tile .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 25%;
  top: 75%;
  left: 0;
  color: #000;
  background-color: #fff;
  font-size: 18px;
  word-break: keep-all;
}
.tile .caption div {
  line-height: 18px;
  text-align: center;
}
