  .text-editor {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.text-editor h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #2c3e50;
}

.text-editor h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #2c3e50;
}

.text-editor img {
    border-radius: 8px;
}

.text-editor ul {
    list-style: none;
}

.text-editor ul li {
    margin-bottom: 6px;
}

.text-editor ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #297190; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.blockquote-border {
    border-left: 5px solid #3caabe;    
}