/* Development Page Styles */

.dev-page {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.dev-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color, #ddd);
}

.dev-header h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: var(--text-color);
}

.dev-header p {
  color: var(--text-secondary, #666);
  font-size: 1.1em;
}

.dev-section {
  margin-bottom: 60px;
}

.dev-section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 600;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Ensure tiles display properly in dev grid */
.dev-grid .tile {
  margin: 0;
}

@media (max-width: 768px) {
  .dev-page {
    padding: 15px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .dev-section {
    margin-bottom: 40px;
  }
}
