.article {
    margin: 0 auto;
    font-family: 'Merriweather', serif;
    max-width: var(--article-max-width);
}

.article h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    word-wrap: break-word;
    hyphens: auto;
}

.article p {
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
}

.article-content a {
    font-weight: bold;
    font-style: italic;
}

.article-content a:after {
    content: "\f0c1";
    padding: 0 var(--space-xs);
    font-family: "Font Awesome 6 Free";
    font-size: 75%;
    font-weight: 900;
}

.article-content h1 {
    margin-bottom: var(--space-m);
}

.article-content h2,
h3,
h4,
h5,
h6 {
    margin-top: var(--space-l);
    margin-bottom: var(--space-m);
}

.article-content h2+h3 {
    margin-top: 0;
}

.article-content h3+h4 {
    margin-top: 0;
}

.article-content h4+h5 {
    margin-top: 0;
}

.article-content h5+h6 {
    margin-top: 0;
}

.article-content p,
ol,
ul {
    margin-bottom: var(--space-m);
}

.article-content li {
    text-align: justify;
    word-wrap: break-word;
    hyphens: auto;
}

.article-content img {
    display: block;
    margin: var(--space-l) auto;
    padding: var(--space-m);
    max-width: 100%;
    max-height: var(--space-6xl);
    /* height: auto; */
    background: var(--image-background);
    border-radius: var(--border-radius-xs);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
}

.article-content blockquote {
    width: 90%;
    margin: var(--space-m) auto;
    font-style: italic;
    padding: var(--space-m);
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    border-left: var(--space-xs) solid var(--secondary-text);
    line-height: 1.6;
    position: relative;
    background: var(--base-variant-65);
    border-radius: var(--border-radius-xs);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.article-content blockquote>p:last-child,
.article-content blockquote>ol:last-child,
.article-content blockquote>ul:last-child {
    margin-bottom: 0;
}

.article-content blockquote::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-size: 125%;
    font-weight: 900;
    color: var(--secondary-text);
    position: absolute;
    left: var(--space-s);
    top: var(--space-3xs);
}

.article-content blockquote::after {
    content: '';
}

@media only screen and (max-width: 30rem) {
    .article-content blockquote {
        width: 100%;
    }
}