.center-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
/* Tile wrapper */
.center-grid .grid-tile {
  position: relative;
  overflow: hidden;
}

/* Image behaves */
.center-grid .grid-tile img {
  display: block;
  width: 100%;
  height: auto !important;
}

/* Whole tile clickable */
.center-grid .grid-tile > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  z-index: 2;
}

/* Overlay background ONLY behind text */
.center-grid .grid-tile .tile-label {
  display: inline-block;
  padding: 10px 14px;

  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;

  color: #111;
  font-family: "MADE Sunflower", serif;
  font-size: 2rem;
}

@media (min-width: 801px) {
  .center-grid {
    grid-template-columns: repeat(4, 1fr);
    margin: 70px;
  }
}