#sbora-heading {
    margin: 20px 0;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    color: #153051;
}

#sbora-articles {
    margin: 0 -15px 20px;
    position: relative;
    overflow: hidden;
}

.sbora-container {
    width: 100%;
    display: flex;
    transition: .8s;
}

.sbora-item {
    width: 25%;
    padding: 0 15px;
    display: flex;
}

.sbora-item:hover,
.sbora-item:focus {
    text-decoration: none;
}

.sbora-inner {
    background: #f9f9f9;
    transition: .2s;
}

.sbora-item:hover .sbora-inner {
    background: #fff;
}

.sbora-image,
.sbora-image img {
    width: 100%;
    height: 138px;
}

.sbora-image img {
    object-fit: cover;
    transition: .2s;
}

.sbora-item:hover .sbora-image img {
    opacity: .6;
}

.sbora-lower {
    padding: 20px;
}

.sbora-title {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 23px;
    color: #153051;
    transition: .2s;
}

.sbora-item:hover .sbora-title {
    color: #1f3c5f;
}

.sbora-excerpt {
    font-size: 14px;
    line-height: 22px;
    color: #4a4a4a;
}

.sbora-truncated {
    margin-bottom: 10px;
}

.sbora-read-more {
    padding: 2px 0;
    border-bottom: 1px solid #153051;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 14px;
    color: #153051;
    transition: .2s;
}

.sbora-item:hover .sbora-read-more {
    padding-bottom: 0;
    border-bottom: 1px solid #b6bec7;
    color: #1f3c5f;
}

.sbora-shadow {
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    pointer-events: none;
    transition: .8s;
}

.sbora-shadow.invisible {
    opacity: 0;
}

.sbora-dots {
    margin-top: 22px;
    display: none;
    text-align: center;
}

.sbora-dot {
    width: 36px;
    height: 36px;
    margin: 0 4px;
    padding: 8px;
    display: inline-block;
    vertical-align: top;
}

.sbora-dot:not(.active) {
    cursor: pointer;
}

.sbora-dot:after {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    background: #153051;
    opacity: .32;
    content: "";
    transition: .2s;
}

.sbora-dot.active:after {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    #sbora-articles {
        margin: 0 -20px 20px;
        padding: 0 5px;
    }

    .sbora-dots {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .sbora-container {
        width: 100% !important;
        transform: none !important;
    }

    .sbora-shadow {
        display: none;
    }
}