/*
 * WordPress Block Styles - Reset App.css Conflicts
 * Only overrides the specific conflicting styles from App.css
 */

/* Reset App.css list overrides */
.article-content ul,
.article-content ol {
    list-style: disc;
    padding-left: 1.5em;
    margin: 1em 0;
}

.article-content ol {
    list-style: decimal;
}

.article-content ul li,
.article-content ol li {
    list-style: inherit;
}

/* Reset App.css heading/paragraph resets */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    padding: 0;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1em;
}

/* Blockquote border - theme specific */
.article-content blockquote,
.article-content .wp-block-quote {
    border-left: 4px solid var(--wp--preset--color--contrast, #000);
    margin: 1.5em 0;
    padding: 0.5em 1em;
}

.article-content blockquote cite,
.article-content .wp-block-quote cite {
    display: block;
    font-size: 0.875em;
    color: #666;
    font-style: normal;
    margin-top: 0.5em;
}

/* Background padding */
.article-content .has-background {
    padding: 1.25em 2.375em;
}

/* Code block styling */
.article-content pre.wp-block-code {
    padding: 0;
}

/* .article-content pre.wp-block-code code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875em;
    line-height: 1.6;
} */
