/* Minimal WYSIWYG typography styles to render TinyMCE content without Tailwind Typography */
.wysiwyg {
  color: #111827; /* default-900 */
  line-height: 1.7;
  font-size: 1rem;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.wysiwyg h1 { font-size: 2rem; }
.wysiwyg h2 { font-size: 1.75rem; }
.wysiwyg h3 { font-size: 1.5rem; }
.wysiwyg h4 { font-size: 1.25rem; }
.wysiwyg h5 { font-size: 1.125rem; }
.wysiwyg h6 { font-size: 1rem; }
.wysiwyg p { margin: 1em 0; }
.wysiwyg a { color: #2563eb; text-decoration: underline; }
.wysiwyg strong { font-weight: 600; }
.wysiwyg em { font-style: italic; }
.wysiwyg ul, .wysiwyg ol { padding-left: 1.25rem; margin: 1em 0; }
.wysiwyg ul { list-style: disc; }
.wysiwyg ol { list-style: decimal; }
.wysiwyg li { margin: 0.25em 0; }
.wysiwyg blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1rem;
  color: #374151;
  margin: 1em 0;
}
.wysiwyg code {
  background: #f3f4f6;
  padding: 0.15em 0.35em;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}
.wysiwyg pre {
  background: #0b1020;
  color: #e5e7eb;
  padding: 1rem;
  border-radius: 6px;
  overflow: auto;
  margin: 1em 0;
}
.wysiwyg pre code { background: transparent; padding: 0; color: inherit; }
.wysiwyg img, .wysiwyg video {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25em 0;
  font-size: 0.95rem;
}
.wysiwyg th, .wysiwyg td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  vertical-align: top;
}
.wysiwyg thead th {
  background: #f9fafb;
  font-weight: 600;
}
.wysiwyg hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

