/*banner category pmg*/
.archive,main#main {
    background-color: var(--bg-body,#131313);
}
.heading_meta h1 {
    font-size: 28px;
    line-height: 1.3em;
    font-weight: 700;
    color:var(--color-white,#fff)
}
.heading_meta > p{
    font-size: 16px;
    line-height: 1.3em;
    color:var(--color-white,#fff);
}

.all_posts-list {
    width: 100%;
    float: left;
}

.all_posts-list .col.post-item {
    padding: 0 7px 30px;
    cursor: pointer;
}

.all_posts-list .col.post-item .box_image_ct {
    width: 100% !important;
    height: 240px !important;
    overflow:hidden;
}

.all_posts-list .col.post-item img {
    transform: scale(1);
    transition: 0.7s;
    height:240px;
    object-fit: cover;
    max-width: 100%;
}
.all_posts-list .col.post-item:hover img {
    transform: scale(1.1);
    transition: 0.7s;
}

.all_posts-list .col.post-item h3 {
    background-color: rgb(10, 20, 40);
    padding: 13px 16px;
    margin-bottom: 0;}

.all_posts-list .col.post-item h3 a {
    font-style: italic;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 1.3em;
    color: var(--color-white,#fff);
}