/* Tile expansion component styles */

.tile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 7xl;
  margin: 0 auto;
}

.tile {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tile.expanded {
  flex: 2;
  max-width: 800px;
}

.tile-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.tile-details.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tile.expanded {
    flex: 1;
    max-width: 400px;
  }
}
