.editor-content{
    font-family: Arial, serif;
    font-size:16px;
    line-height:1.7;
    color:#222;
}

/* Headings */

.editor-content h1{
    font-size:32px;
    margin-top:32px;
    margin-bottom:16px;
    font-weight:700;
}

.editor-content h2{
    font-size:26px;
    margin-top:28px;
    margin-bottom:14px;
    font-weight:600;
}

.editor-content h3{
    font-size:22px;
    margin-top:24px;
    margin-bottom:12px;
    font-weight:600;
}

.editor-content h4{
    font-size:18px;
    margin-top:20px;
    margin-bottom:10px;
}

/* Paragraph */

.editor-content p{
    margin-bottom:16px;
}

/* Links */

.editor-content a{
    color:#0066cc;
    text-decoration:none;
}

.editor-content a:hover{
    text-decoration:underline;
}

/* Lists */

.editor-content ul{
    list-style:disc;
    padding-left:25px;
    margin-bottom:16px;
}

.editor-content ol{
    list-style:decimal;
    padding-left:25px;
    margin-bottom:16px;
}

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

/* Images */

.editor-content img{
    max-width:100%;
    height:auto;
    display:block;
    margin:20px auto;
}

/* Figure */

.editor-content figure{
    margin:20px 0;
    text-align:center;
}

.editor-content figcaption{
    font-size:14px;
    color:#777;
}

/* Blockquote */

.editor-content blockquote{
    border-left:4px solid #ddd;
    padding-left:16px;
    margin:20px 0;
    font-style:italic;
    color:#555;
}

/* Code */

.editor-content pre{
    background:#f6f8fa;
    padding:15px;
    overflow:auto;
    border-radius:6px;
    margin-bottom:20px;
}

.editor-content code{
    background:#f1f1f1;
    padding:2px 6px;
    border-radius:4px;
    font-size:14px;
}

/* Tables */

.editor-content table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.editor-content th,
.editor-content td{
    border:1px solid #ddd;
    padding:10px;
    text-align:left;
}

.editor-content th{
    background:#f5f5f5;
    font-weight:600;
}

/* Horizontal line */

.editor-content hr{
    border:none;
    border-top:1px solid #ddd;
    margin:30px 0;
}

/* Alignment */

.editor-content .text-center{
    text-align:center;
}

.editor-content .text-right{
    text-align:right;
}

.editor-content .text-left{
    text-align:left;
}

/* Responsive video */

.editor-content iframe{
    max-width:100%;
}

/* Strong / emphasis */

.editor-content strong{
    font-weight:600;
}

.editor-content em{
    font-style:italic;
}

/* Small text */

.editor-content small{
    font-size:13px;
    color:#777;
}