.spotlight {
    margin-bottom: 30px;
}

.spotlight .title-cont {
    width: 100%;
    background-color: #cb545b;
    padding: 16px 15px 45px;
}

.spotlight .title-cont h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #f5f5f0;
    
    font-weight: 100;
}

.spotlight .items {
    width: 100%;
    margin-top: -30px;
}

.spotlight .item {
    margin-bottom: 10px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
}

.spotlight .item img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.spotlight .item .content {
    padding: 20px 20px 5px;
    background: #fff;
}

.spotlight .item .content h5 {
    line-height: 1.1;
    margin-bottom: 10px;
}

.spotlight .item .content p {
    line-height: 1.3;
    font-size: 18px;
}

.spotlight .item .link-cont {
    padding-bottom: 20px;
    text-align: left;
    color: #cb545b;
}

.spotlight .item .read-more {
    background-color: transparent;
    color:inherit;
    line-height: 1.3;
    font-size: 18px;
    font-weight: 700;
}
.spotlight .item .read-more:hover {
    border-color:transparent;
}

@media only screen and (min-width: 641px) {
    .spotlight .title-cont .title {
        text-align: center;
    }

    .spotlight .items {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .spotlight .item {
        width: calc(50% - 20px);
        margin: 0 10px 10px;
    }

}

@media only screen and (min-width: 1025px) {
    .spotlight {
        margin-bottom: 60px;
        overflow: hidden;
    }
    
    .spotlight .title-cont {
        max-width: 55.5%;
        border-top-right-radius: 4px;
        padding-bottom: 40px;
        padding-right: 30px;
    }

    .spotlight .title-cont .title {
        text-align: right;
        font-size: 48px;
    }

    .spotlight .title-cont .title h3 {
        font-size: 48px;
    }

    .spotlight .items {
        width: calc(100% + 4px);
        overflow: hidden;
        margin-right: -2px;
        margin-left: -2px;
    }

    .spotlight .item {
        max-width: none;
        margin: 0 2px 10px;
        width: calc(25% - 4px);
    }

    .spotlight .item .content {
        padding: 25px 25px 45px;
    }

    .spotlight .item .link-cont {
        /* width: 100%;
        max-width: 280px; */
    }
}

@media (min-width: 1400px) {
    .spotlight .item .content p { width: 75%; }
}