.post-editor {
    color: var(--primary-black);
}

.post-editor h1,
.post-editor h2,
.post-editor h3,
.post-editor h4,
.post-editor h5,
.post-editor h6 {
    font-weight: 800;
    line-height: normal;
    margin-bottom: 3px;
}

.post-editor h1 {
    font-size: 32px;
}

.post-editor .title,
.post-editor h2 {
    font-size: 24px;
}

.post-editor h3 {
    font-size: 18px;
}

.post-editor h4 {
    font-size: 14px;
}

.post-editor h5 {
    font-size: 10px;
}

.post-editor h6 {
    font-size: 8px;
}

.post-editor ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 15px;
}

.post-editor li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--primary-black);
    position: absolute;
    top: 12px;
    left: 11px;
    border-radius: 50%;
}

.post-editor li {
    position: relative;
    padding-left: 32px;
}

@media (max-width: 992px) {
    .post-editor p,
    .post-editor li {
        font-size: 18px;
    }
}