.tile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  justify-content: center;
}

.tile {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  aspect-ratio: 1.6;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
  overflow: hidden;
  color: white;
}

.tile-content {
  padding: 16px;
}

.tile-content h2 {
  font-size: 2.5rem;
  margin: 0;
}

.tile-content p {
  font-size: 1rem;
  margin: 0;
}

.light-text {
  background: #e6f0fb;
  color: #1b2d45;
}

.dark-text {
  background: #002b5c;
  color: white;
}

.blue-text {
  background: #008cda;
  color: white;
}
