/* Markdown Typography Styles */
.prose {
    max-width: 65ch;
    margin: 0 auto;
}

.prose h1 {
    font-size: 2.5em;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 700;
    line-height: 1.2;
}

.prose h2 {
    font-size: 1.8em;
    margin-top: 1.4em;
    margin-bottom: 0.8em;
    font-weight: 600;
    line-height: 1.3;
}

.prose h3 {
    font-size: 1.5em;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.7;
}

.prose ul {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    list-style-type: disc;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose strong {
    font-weight: 600;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
}

.prose img {
    margin-top: 2em;
    margin-bottom: 2em;
    max-width: 100%;
    height: auto;
}

.prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    list-style-type: decimal;
    padding-left: 1.625em;
}

.prose ol li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0.375em;
}