.postjumbo{
    background-size: cover;
    min-height: 50vh;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.postjumbo:before{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    content:"";
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #000000 60%);
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}
.postjumbo .cbf-content{
    position: relative;
    z-index: 2;
    padding-top: 10%;
    padding-bottom: 5%;
    width: 100%;
}
.postjumbo a.cbf-cat{
    color:white !important;
}

.postjumbo .cbf-row1{
    text-align: center;
}
.postjumbo .cbf-row2{
    width: 100%;
    padding: 8% 5% 0 5%;
    display: flex;
    align-items:flex-end;
    justify-content: space-between;
}

.postjumbo .col1,.postjumbo .col2{

}

.postjumbo .cbf-author{
    display: flex;
    align-items: center;
}
.postjumbo .cbf-thumb{
    margin-right: 20px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
    border: 3px solid white;
}
.postjumbo a.cbf-info{
    max-width: 480px;
    border-radius: 6px;
    border: 3px dashed white;
    padding:20px;
    color:white;
    display: block;
}
.postjumbo .cbf-next{
    color:#159753;
    display: flex;
    justify-content: space-between;
}
.postjumbo .cbf-text{

}


.postjumbo .cbf-image{
    position: absolute;
    top: -5%;
    left: 0;
    width: 110%;
    height: 110%;
    -webkit-background-size: cover;
}
.postjumbo img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 4s;
}
.postjumbo:hover img{
    transform: scale(1.1);
    transition: 8s;
}


.postjumbo .cbf-svg{
    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: 3;
    width: 100%;
    background: none;
}

