article.type-news, .single-post-banner, .post-body-frame > div {
    display: block;
    width: 100%;
}
.single-post-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: #b3b3b3;
    height: 450px;
}
.single-post-banner > .container, .single-post-banner > .container > .row {
    height: 100%;
}
.post-banner-title {
    font-size: 45px;
    line-height: 52px;
    margin-bottom: 15px;
}
.post-banner-header {
    color: #000;
}
.post-body-frame {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;

}
.post-gallery-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}
.post-gallery-item, .post-gallery-item a {
    display: block;
    width: 100%;
}
.post-gallery-item {
    transition: all 0.3s ease;
}
.post-gallery-item:hover {
    /* box-shadow: 3px 3px 12px 0 #ED3E48; */
    box-shadow: 3px 3px 12px 0 rgba(0,0,0,0.4);
}
.single-news-content {
    padding: 100px 0;
}
@media (max-width: 767px) {
    .single-news-content {
        padding: 70px 25px;
    }
}
@media (min-width: 768px) {
    .post-gallery-item {
        max-width: calc( 25% - 15px );
    }
}