/* Blog content */
/* Headings */

.article-content h2 {
    font-size: x-large;
    font-weight: 700;
    font-family: Poppins, sans-serif;
    margin-top: 1rem;
    color: var(--color-pink-700);
}
.article-content h3 {
    font-size: large;
    font-weight: 700;
    font-family: Poppins, sans-serif;
}
/* Paragraphs */
.article-content p {
    color: #333333;
    text-wrap: wrap;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
/* links */
.article-content a {
    text-decoration-line: underline;
    text-decoration-color: #ec48994d;
    text-decoration-thickness: 4px;
}
.article-content a:hover {
    text-decoration-color: #db2777;
}
/* lists */
.article-content ul, 
.article-content ol {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
}   