.sbc__psb {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    font-family: roboto, sans-serif;
    background-color: #fff;
    margin: 0 20px;
}

.sbc__psb--right {
    display: inline-block;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    color: #4a4a4a;
}

.sbc__psb--container {
    padding: 0 5px 0 10px;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sbc__psb--title:link,
.sbc__psb--title:visited {
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    transition: .3s ease-in-out;
    text-decoration: none;
    order: 1;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    max-height: 72px;
    font-weight: 500;
}

.sbc__psb--description {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: rgba(74, 74, 74, 0.5);
    font-weight: 500;
    min-height: 32px;
    order: 0;
    margin-bottom: 5px;
}

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

.sbc__psb--content {
    display: none;
}

.sbc__psb--content p {
    font-size: 14px;
    line-height: 24px;
    margin: auto;
    color: #4a4a4a;
}

.sbc__psb--left {
    position: relative;
    display: inline-block;
    min-height: 130px;
    min-width: 260px;
    margin-bottom: 10px;
    width: 100%;
}

.sbc__psb--image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);

    /* 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__psb--separator {
    height: 2px;
    width: 100%;
    background-color: #C9C9C9;
}

.sbc__psb--space {
    display: block;
}

.sbc__psb--readmore:link, 
.sbc__psb--readmore:visited {
    font-size: 16px;
    line-height: 24px;
    display: none;
    color: #E7792D;
    color: var(--main-event-color);
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.sbc__psb--readmore:hover {
    text-decoration: none;
    color: #D86411;
    color: var(--main-event-color-hover);
}


@media only screen and (max-width: 1199px) {
    .sbc__psb {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        margin: 0 5px;
    }
}

@media only screen and (max-width: 768px) {
    .sbc__psb {
        border-left: 3px solid #d86411;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .sbc__psb--title:link,
    .sbc__psb--title:visited {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 0;
        order: 0;
    }

    .sbc__psb--description {
        font-size: 10px;
        min-height: initial;
    }
    
    .sbc__psb--content {
        display: none;
    }

    .sbc__psb--readmore:link,
    .sbc__psb--readmore:visited {
        font-size: 14px;
        display: inline-block;
    }

    .sbc__psb--left {
        display: none;
    }

    .sbc__psb--container {
        padding: 0 5px 0 10px;
        min-height: unset;
    }
}

@media only screen and (max-width: 600px) {
    .sbc__psb {
        margin: 0;
    }
}