

.content-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.content-page h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: .75rem; }
.content-page h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: .5rem; }

.content-page p { line-height: 1.7; margin-bottom: 1rem; }

.content-page a { text-decoration: underline; }

/* Blog index list */
.post-list { list-style: none; padding: 0; }
.post-list li { margin-bottom: 1.5rem; padding-bottom: 1.25rem;
                border-bottom: 1px solid var(--bs-border-color); }
.post-list li:last-child { border-bottom: none; }

.post-date { font-size: .8rem; color: var(--bs-secondary-color); }

/* Code blocks inside markdown */
.content-page pre {
    background: var(--bs-tertiary-bg);
    padding: 1rem;
    border-radius: .375rem;
    overflow-x: auto;
}
.content-page code {
    background: var(--bs-tertiary-bg);
    padding: .15rem .35rem;
    border-radius: .25rem;
}
.content-page pre code { background: none; padding: 0; }