
/* Typographic style for emotional content */
.prose-emotional {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  text-wrap: pretty;
}
.prose-emotional h1, .prose-emotional h2, .prose-emotional h3 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: .02em;
  margin: 1.5rem 0 .75rem;
  text-shadow: 0 0 12px rgba(139,92,246,.35);
}
.prose-emotional p { margin: 1rem 0; }
.prose-emotional strong { color: #fff; }
.prose-emotional em { color: rgba(255,255,255,0.9); }
.prose-emotional blockquote {
  border-left: 3px solid rgba(139,92,246,.6);
  padding-left: 1rem;
  margin-left: 0;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.03);
  border-radius: .5rem;
}
.prose-emotional ul, .prose-emotional ol { padding-left: 1.25rem; }
.prose-emotional a { color: #93c5fd; text-decoration: underline; }
@media (prefers-color-scheme: light) {
  .prose-emotional { color: #1b1b1f; }
  .prose-emotional blockquote { color: #1f2937; background: rgba(0,0,0,.03); border-left-color: #8B5CF6; }
}
