/* ==========================================================================
   Light Theme Enhancements for Prose Content
   Works with Tailwind Typography @tailwindcss/typography plugin
   Provides consistent, readable light theme for article display
   ========================================================================== */

/* Ensure proper list marker visibility */
.prose ul li::marker,
.prose ol li::marker {
  color: #0ea5e9;
}

/* Ensure proper list structure */
.prose ul,
.prose ol {
  list-style-position: outside;
  padding-left: 1.625em;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

/* Nested lists */
.prose ul ul,
.prose ol ul {
  list-style-type: circle;
}

.prose ul ul ul,
.prose ol ul ul {
  list-style-type: square;
}

.prose ol ol {
  list-style-type: lower-alpha;
}

.prose ol ol ol {
  list-style-type: lower-roman;
}

/* Ensure visibility */
.prose li {
  display: list-item;
}
