/*
 * Style Guide Page Styles
 */

/* Styleguide */
.styleguide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px;
}

.styleguide h1 {
  font-size: 32px;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.sg-section {
  margin-bottom: 48px;
}

/* Component sections (for newer components) */
.component-section {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.component-section:last-child {
  border-bottom: none;
}

.component-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.component-section > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.component-preview {
  padding: 32px;
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.sg-section h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

