.sbc__pb{
    position: relative;
    display: block;
    overflow: hidden;
    background: #FFF;
    border-left: 2px solid #E7792D;
    border-left-color: var(--main-event-color);
    font-family: roboto, sans-serif;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
.sbc__pb--left{
    display: inline-block;
    width: 404px;
    height: auto;
    font-size: 16px;
    line-height: 1.27; 
    color: #4a4a4a;
}
.sbc__pb--container{
    padding: 18px 22px 5px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.sbc__pb--title{
    display: block;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    transition: .3s ease-in-out;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    max-height: 64px;
}

.sbc__pb--description{
    display: block;
    font-size: 12px;
    line-height: 2.67;
    color: #828282;
    font-weight: 400;
    order: 1;
}

.sbc__pb--col-sep {
    display: inline-block;
    width: 10px;
    text-align: center;
}

.sbc__pb--content,
.sbc__pb--content p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: -10px;
    max-height: 48px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    /* min-height: 75px; */
}

.sbc__pb--right{
    position: absolute;
    width: 394px;
    height: 100%;
    right:0;
    top:0;

    /* background to set from Admin panel */
    /* background-image: url('https://storage.sbcevents.com/assets/2017/09/AWARDS-1.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    /* background-size: 100%; checkbox */
}


.sbc__pb--separator{
    height: 2px;	
    width: 100%;	
    background-color: #C9C9C9;
}
.sbc__pb--space{
    display: block;
}

.sbc__pb--readmore{
    display: none;
    font-size: 16px;
    line-height: 24px;
    color: #E7792D;
    border-left: var(--main-event-color);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.sbc__pb--readmore:hover{
    text-decoration: none;
    color: #D86411;
    border-left: var(--main-event-color-hover);
}

@media only screen and (max-width: 1200px) {
    .sbc__pb--right{
        width: 49.333333%;
    }

    .sbc__pb--left{
        max-width: 50.666666%;
    }
}

@media only screen and (max-width: 768px) {
    .sbc__pb {
        border-left: none;
    }

    .sbc__pb--single {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .sbc__pb--container{
        padding-bottom: 18px;
    }

    .sbc__pb--left {
        display:block;
        max-width: 100%;
        order: 2;
    }

    .sbc__pb--right {
        position: static;
        display: block;
        width: 100%;
        width: calc(100vw - 32px);
        order: 1;
        border-bottom: 3px solid #E7792D;
        height: 160px;
        height: calc((100vw - 32px) / 2);
        box-sizing: content-box;
    }

    .sbc__pb--title {
        font-size: 18px;
        line-height: 20px;
    }

    .sbc__pb--content ,
    .sbc__pb--content p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .sbc__pb--readmore {
        display: inline-block;
        font-size: 14px;
        line-height: 24px;
    }

    .sbc__pb--description{
        order: 0;
    }
}