main{
    height: auto;
    background-color: #000;
}

.top-post{
    text-align: justify;
}

.top-post h1{
    font-size: 28px;
}

.top-post p{
    font-size: 14px;
}

.more-btn-simple {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.more-btn-simple::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
.more-btn-simple:hover::after {
    transform: scaleX(1);
}
.blog-post-item .post-title{
    font-size: 24px;
}
.blog-post-item .description{
    font-size: 14px;
    font-weight: 400;
}
.blog-post-item hr{
    color: #fff;
    opacity: 0.5;
}
.blog-post-item .date{
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}
.videos{
    background-color: #2B2B2B;
}
.videos .title h4{
    color: #fff;
    font-size: 18px;
    z-index: 1;
    display: block;
    position: relative;
    background: #2B2B2B;
    width: 180px;
    margin: auto;
    overflow: hidden;
}
.videos .title{
    width: 400px;
    display: block;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.videos .title .divider{
    background-color: #fff;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 20px;
}
.related-posts{
    border-right: 2px solid #474747;
}
.related-post-title{
    font-size: 1em;
}
.related-post-item{
    border-bottom: 1px solid #474747;
}
.post-name{
    font-size: 1.5em;
}
.related-post-name{
    font-size: 1em;
}
.post .date{
    color: #929292;
}
@media only screen and (max-width: 991px) {
    .related-posts{
        border-right: none
    }
}
