.tile-grid {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tile-item {
  /* Critical for proper flow */
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1rem;

  
}

.tile-item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
h3 {
  margin:0 !important;
}

/* 
.tile-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.tile-box:hover .tile-hover {
  opacity: 1;
} */
