/* Blog post – Bootstrap 5 overrides for post content (Markdown output) */

.post-content {
    font-size: 1.0625rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content h1 { font-size: 1.5rem; }
.post-content h2 { font-size: 1.35rem; }
.post-content h3 { font-size: 1.2rem; }

.post-content p {
    margin-bottom: 1rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1rem;
}

.post-content blockquote {
    padding-left: 1rem;
    border-left: 4px solid var(--bs-border-color);
    color: var(--bs-secondary-color);
    font-style: italic;
}

.post-content pre {
    padding: 1rem;
    background: var(--bs-light);
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-border-color);
}

.post-content pre code {
    padding: 0;
    background: none;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--bs-border-radius);
}
