/* Styles for content generated by the WordPress editor */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 700;
}
html.dark .prose h1, html.dark .prose h2, html.dark .prose h3, html.dark .prose h4, html.dark .prose h5, html.dark .prose h6 {
    color: #fff;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose h1 { font-size: 2.25em; margin-top: 0; margin-bottom: 0.88em; }
.prose h2 { font-size: 1.875em; margin-top: 2em; margin-bottom: 1em; }
.prose h3 { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6em; }

.prose a {
    color: #059669; /* emerald-600 */
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}
.prose a:hover {
    color: #10b981; /* emerald-500 */
}
html.dark .prose a {
    color: #34d399; /* emerald-400 */
}
html.dark .prose a:hover {
    color: #6ee7b7; /* emerald-300 */
}

.prose strong {
    color: inherit;
    font-weight: 700;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}
.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose blockquote {
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
    border-left-width: 0.25rem;
    border-color: #e5e7eb; /* gray-200 */
    font-style: italic;
    color: #4b5563; /* gray-600 */
}
html.dark .prose blockquote {
    border-color: #4b5563; /* gray-600 */
    color: #9ca3af; /* gray-400 */
}

.prose pre {
    background-color: #f3f4f6; /* gray-100 */
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    overflow-x: auto;
    color: #111827;
}
html.dark .prose pre {
    background-color: #1f2937; /* gray-800 */
    color: #d1d5db; /* gray-300 */
}

.prose code {
    background-color: #e5e7eb; /* gray-200 */
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    border-radius: 0.25rem;
}
html.dark .prose code {
    background-color: #374151; /* gray-700 */
}
.prose pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}
