@import "../variables";

/* stylelint-disable selector-no-type, unit-blacklist, max-nesting-depth, no-descending-specificity, max-line-length */
.TextNode {
    strong {
        font-weight: $weight_bold;
    }

    em {
        font-style: italic;
    }

    ol {
        padding: 0 0 0 1em;

        ul {
            margin-top: 1.4em;

            li {
                position: relative;

                &::before {
                    content: "—\a0";
                }

                & + li {
                    margin-top: 0;
                }
            }
        }

        ul + p {
            margin-top: 1.4em;
        }

        p + ul {
            margin-bottom: 1.4em;
        }

    }

    p + ol,
    ol + p {
        margin-top: 1.4em;
    }

    li {
        & + li {
            margin-top: 1.4em;
        }
    }

    h2 {
        margin-bottom: $offset_main;
    }

    p + p {
        margin-top: $text_node_paragraph_top_offset;
    }
}
/* stylelint-enable selector-no-type, unit-blacklist, max-nesting-depth, no-descending-specificity, max-line-length */
