#breadcrumb-banner{
    padding: 30px 0 10px;
}
#breadcrumb-banner .breadcrumb-list{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}
#breadcrumb-banner .breadcrumb-list .item{
    display: flex;
    gap: 3px;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    color: rgb(var(--theme-color-black-light));
}
#breadcrumb-banner .breadcrumb-list .item:hover{
    color: rgb(var(--theme-color-primary));
}

#post-banner{
    padding: 20px 0;
}
#post-banner .container{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
#post-banner .lft{
    width: 880px;
}

#post-banner .rgt{
    width: 320px;
}

@media (max-width: 992px) {
    #post-banner .container{
        flex-wrap: wrap;
    }
    #post-banner .lft,
    #post-banner .rgt{
        width: 100%;
    }
}


#post-banner article{
    margin-bottom: 20px;
    padding: 30px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    background: #fff;
}
#post-banner article h1{
    font-size: 2rem;
    color: #333;
    transition: all ease .25s;
    margin: 0 0 5px;
    line-height: 1.4;
}
#post-banner article .info{
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin: 0 0 15px;
    display: flex;
    gap: 15px;
}
#post-banner article .info .info-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
#post-banner article .content{
    border-top: 1px dotted #e4e8eb;
    padding: 20px 0 0;
    font-weight: 400;
    line-height: 2;
}
#post-banner article .content h2,
#post-banner article .content h3,
#post-banner article .content h4,
#post-banner article .content h5,
#post-banner article .content h6 {
    margin-bottom:20px;
    border-bottom:1px solid #e4e8eb;
    position:relative
}
#post-banner article .content h2:after,
#post-banner article .content h3:after,
#post-banner article .content h4:after,
#post-banner article .content h5:after,
#post-banner article .content h6:after {
    content:"";
    width:32px;
    height:0;
    border-bottom:2px solid rgb(var(--theme-color-primary));
    position:absolute;
    left:0;
    bottom:-1px;
}
#post-banner article .content img{
    max-width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto 1rem;
}

#post-banner article .pages{
    border-top: 1px dotted #e4e8eb;
    padding: 20px 0 0;
    font-weight: 400;
    font-size: 16px;
}
#post-banner article .pages p{
    margin: 0 0 8px;
}
#post-banner article .pages a{
    color: rgb(var(--theme-color-black-light));
}
#post-banner article .pages a:hover{
    color: rgb(var(--theme-color-primary));
}
