.gallery {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-small {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 66%;
}

.tile {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-decoration: none;
  text-align: center;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

.tile > div:first-child {
  margin-top: 0;
}

.tile img {
  max-width: 100%;
  height: auto;
  margin-top: auto;
}

.tile strong {
  display: block;
  margin-bottom: 10px;
}
