/* readable width */
.article-title,
.article-content {
    max-width: 860px;
}

/* spacing + typography */
.article-title {
    margin: 0 auto 0.75rem auto;
    line-height: 1.15;
}

.article-content {
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* headings inside article body */
.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

/* paragraphs */
.article-content p {
    margin: 0.75rem 0;
}

/* lists */
.article-content ul,
.article-content ol {
    margin: 0.75rem 0 0.75rem 1.2rem;
}

.article-content li {
    margin: 0.35rem 0;
}

/* QUOTE: make it visible */
.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #0d6efd; /* bootstrap primary */
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-style: italic;
}

.article-content blockquote p {
    margin: 0 0 0.5rem 0;
}

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