.cbf-latestposts{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
}
.cbf-latestposts .cbf-col1{
    width: 61.8%;
    padding: 4% 8%;
    color: white;
    overflow: hidden;
    position: relative;
    align-items: center;
    display: flex;
}
.cbf-latestposts .cbf-col1: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;
}


.cbf-latestposts .cbf-col1 .cbf-content{
    z-index: 5;
    position: relative;
}

.cbf-latestposts .cbf-col1 .cbf-category{
    border-bottom: 1px solid white;
    color: #fff;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.cbf-latestposts .cbf-col1 img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 0;
}

.cbf-latestposts .cbf-col1 .cbf-button{
    margin-top: 30px;
}

.cbf-latestposts .cbf-col2{
    width: 38.2%;
    background: white;
    padding: 4% 8%;
}

.cbf-latestposts .cbf-category{
    text-transform: uppercase;
    font-weight: bold;
    color:#159753;
}
.cbf-latestposts .cbf-col2 h2{
    border-bottom: 1px solid #EBEDED;
    padding-bottom: 2em;
    margin-bottom: 1em;
    position: relative;
    text-transform: uppercase;
}

.cbf-latestposts .cbf-col2 h2:after{
    position:absolute;
    height:.25em;
    width:3em;
    background:#159753;
    content:"";
    left:0;
    bottom:1em;
}

.cbf-latestposts .cbf-col2 h3{
    font-size: 1rem;
    font-weight: bold;
}
.cbf-latestposts .cbf-article{
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: block;
    border-bottom: 1px solid transparent;
}
.cbf-latestposts .cbf-article:hover{
    border-color: #159753;
}
.cbf-latestposts .cbf-article:hover h3,.cbf-latestposts .cbf-article:hover .cbf-date{
    color:#159753;
}
.cbf-latestposts .cbf-date{
    padding-top: 1em;
    color: #A6ADB4;
}
.cbf-latestposts .cbf-date span{
    font-size: .9em;
}

@media (max-width:980px) {
    .cbf-latestposts{
        flex-direction: column;
    }
    .cbf-latestposts .cbf-col1,.cbf-latestposts .cbf-col2{
        width: 100%;
    }
    .cbf-latestposts .cbf-col1{
        min-height: 80vw;
    }
}