body.blog .blog-content {
    font-size: 1.2rem;
    line-height: 2;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga" on;
}
.blog-content {
    padding: 20px 0;
}

.post-list li:not(.month-sepearator) {
    position: relative;
    height: 50px;
    align-items: center;
    cursor: pointer;
    display: flex;
}

.post-list li:not(.month-sepearator):before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #222;
    opacity: .05;
    top: 25px;
    left: 0;
    z-index: 1;
    transition: all .2s linear;
}


.post-list li:not(.month-sepearator) a {
    width: 100%;
    display: flex;
}

.post-list li:not(.month-sepearator) a .title {
    flex: 1;
    z-index: 9;
}

.post-list li:not(.month-sepearator) a .title span {
    background-color: #fff;
    padding-right: 10px;
}

.post-list li:not(.month-sepearator) a .date {
    z-index: 9;
    background: #fff;
    padding-left: 10px;
    transition: all 1s linear;
}

.card-body img {
    width: 100% !important;
}

#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: #DDD;
    color: #555;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}
#back2Top:hover {
    background-color: #DDF;
    color: #000;
}