/* Moral Landscape - Page-specific styles */

.region-header {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.tradition-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  background: white;
}

.tradition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tradition-card.selected {
  border-color: #14b8a6;
  background-color: #f0fdfa;
}

.tradition-card.selected:hover {
  border-color: #0d9488;
}

.tradition-card .card-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.tradition-card.selected .card-checkbox {
  background-color: #14b8a6;
  border-color: #14b8a6;
}

.info-panel {
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.info-panel.governance {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.info-panel.conflict {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
}

.info-panel.complementary {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}
