.center-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* Positioning context per tile */
.center-grid a {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image behaves */
.center-grid img {
  display: block;
  width: 100%;
}

/* Overlay label */
.center-grid a p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  color: #111;
  font-family: "MADE Sunflower", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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