/*Blog Categories*/

#ph_simpleblog_categories p.title_block {
    line-height: 1.5;
    text-align: center;
    margin: 10px 0;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
    border: none;
}

#ph_simpleblog_categories p.title_block::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dddddd;
    margin-top: -1px;
}

#ph_simpleblog_categories p.title_block a {
    padding: 0 10px;
    color: #3852a4 !important;
    background: #fff;
    position: relative;
}

#ph_simpleblog_categories .block_content{
    padding: 0;
}

.block_content.list-block{
    display: block;
}

.block_content.list-block ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.block_content.list-block li{
    cursor: pointer;
    border-bottom: 1px solid #ced4da;
}

.block_content.list-block li a {
    display: block;
    color: #20252a;
    border: none;
    padding: 10px 0;
    transition: all 0.15s ease-in-out;
}

.block_content.list-block li a:hover {
    color: #3852a4 !important;
    border-bottom-color: #3852a4;
    margin-left: 10px;
}

/*Post*/

.post-by {
    display: block;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 15px;
}

.post-by > div {
    display: inline;
}

.post-by > div:not(:first-child)::before {
    content: "|";
    color: #777777;
    font-size: 14px;
}

.post-by span.val {
    color: #3852a4;
}

.post-by .fa-heart {
    color: #ee0000;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content h3 span,
.post-content em,
.post-content strong {
    color: #3852a4 !important;
    margin: 0 0 5px;
    line-height: 1.5;
    font-weight: 600;

}

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

#module-ph_simpleblog-single .post-by .fa-heart {
    cursor: pointer;
}

#post-likes {
    cursor: pointer;
}

.post-content {
    line-height: 1.8;
}

.post-content p, .post-content img {
    margin-bottom: 30px;
}
.post-content ol{
    list-style: none;
    counter-reset: li;
}
.post-content ol li::before {
    content: counter(li) ". ";
    color: #3852a4;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: .25em;
    font-weight: 700;
}
.post-content ol li {
    counter-increment: li
}

.post-content ul {
    list-style: none;
}
.post-content ul li::before {
    content: "• ";
    color: #3852a4;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-weight: 700;
}
#module-ph_simpleblog-single .post-content a:not(.btn) {
    position: relative;
    color: #3852a4 !important;
    text-decoration: none;
}

#module-ph_simpleblog-single .post-content a:not(.btn):hover {
    background: none;
    color: #3852a4 !important;
}
#module-ph_simpleblog-single .post-content a:not(.btn):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #3852a4;
    bottom: -2px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .15s ease-in-out;
}
#module-ph_simpleblog-single .post-content a:not(.btn):hover:before {
    transform-origin: center;
    transform: scaleX(1);
}
@media (max-width: 1000px) {
    .post{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .post .post-content{
        padding: 0;
        width: 100%;
    }

    .post .post-image{
        width: 100%;
        height: auto;
    }

}