.post_banner{
    background-color: rgb(247,247,249);
    padding: 2.5rem 0;
}
.post_banner .breadcrumb>span{
    color: #999;
    flex-flow: wrap;
    word-break: break-all;
}

.post_banner .breadcrumb>span > span{
    color: #150f35;
    opacity: 0.75;
    word-break: break-all;
}
.post_banner .head p{
    margin-top: 1rem;
}
.post_banner .head p span{
    color: var(--content_color);
    opacity: .5;
}
.post_banner .head p strong{
    color: var(--content_color);
    opacity: 1;
    font-weight: 500;
}
.post_banner h1{
    margin-top: 5rem;
    font-size: 3.6rem;
    font-weight: 500;
    color: var(--title_color);
} 
.post_main{
    padding: 5rem 0 3rem;
}
.post_main p{
    margin: 2rem 0;
    color: var(--content_color);
    opacity: .85;
    font-size: 1.75rem;
    line-height: 1.5;
}
.post_main img{
    margin: 0 auto ; 
} 
.post_share .content{
    border-top: rgb(199,198,207) solid 1px;
}
.post_share .share_box{
    padding: 1.5rem 0;
}
.post_share .share_box > strong{
    color: var(--content_color);
    display: block;
    margin-bottom: 1.8rem;
}
.post_share .share_box ul {
    display: flex;
    gap: 1.8rem;
}
.post_share .share_box ul li a{
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background-color: #c6c6c680;
    text-indent: -999px;
    overflow: hidden; 
    transition: all .3s;
    position: relative;

}
.post_share .share_box ul li a::after{
    display: block;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background-image: url(../img/facebook-post.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: .9rem;
}

.post_share .share_box ul li:hover a{
    background-color: var(--subtheme_color); 
}

.post_share .share_box ul li.twitter a::after{
    background-image: url(../img/twitter-post.svg); 
    background-size: 1.3rem; 
}

.post_share .share_box ul li.pinterst a::after{
    background-image: url(../img/pinterest-post.svg); 
    background-size: 1.3rem;
}
.post_share .share_box ul li:hover a:after{ 
    filter: brightness(20);
}

.post_share .post_other_info{
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.post_share .post_other_info ul li{
    margin-bottom: 1.2rem;
    display: flex;
    position: relative;
    padding-left: 3rem;
}
.post_share .post_other_info ul li a{
    color: var(--subtheme_color);
    display: block;
    position: relative;
    padding-left: 0; 
}
.post_share .post_other_info ul li:before{
    display: block;
    content: ""; 
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    top: 1px;
    left: 0;
    background-image: url(../img/tag-icon.svg);
    background-repeat: no-repeat;
}
.post_share .post_other_info ul li:before{
    display: block;
    content: ""; 
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    top: 1px;
    left: 0;
    background-image: url(../img/tag-icon.svg);
    background-repeat: no-repeat;
}
.post_share .post_other_info ul li:nth-child(2):before{
    background-image: url(../img/category-icon.svg); 
}
.post_related {
    padding: 5rem 0 10rem;
}
.post_related .content{
    background-color: rgb(247,247,249);
    border-radius: 10px;
    padding: 5rem 4rem;
    max-width: 132rem;
}

.post_related .content .head strong{
    display: block;
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
} 

.post_list ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
}
.post_list ul li{
    
}
.post_list ul li a{
    display: block;
    padding: 2.8rem;
    padding-bottom: 8rem;
    background-color: #fff;
    border-radius: 10px;
    border: rgb(199,198,207) solid 1px;
}
.post_list ul li a .image {
    height: 192px;
    border-radius: 5px;
    overflow: hidden;
}
.post_list ul li a .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post_list ul li a strong{
    display: block;
    font-weight: 500;
    margin: 1.2rem 0;
    font-size: 2.5rem;
    color: var(--title_color);

    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}
.post_list ul li a p{
    font-size: 1.8rem;
    color: #2d2d2d;
    opacity: .85; 
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wp-block-image.aligncenter{
    text-align: center;
    margin: 0 auto;
}