.spotlight .inner {
    width: 100%;
    max-width: 1324px;
    margin: 0 auto 42px;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.spotlight .item {
    margin: 0 16px 18px;
    width: 100%;
    max-width: 350px;
}

.spotlight .item .img-cont {
    margin-bottom: 12px;
    position: relative;
}

.spotlight .item img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.spotlight .item .title{
    font-size: 20px;
    line-height: 24px;
    font-family: var(--font-display-alt);
    text-transform: uppercase;
    font-weight: 700;
}

.spotlight .item .text{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

@media only screen and (min-width: 1025px) {
    .spotlight {
        width: calc(100% - 110px);
        margin-left: auto;
    }

    .spotlight .inner {
        padding: 0 12px;
    }
    .spotlight .item {
        margin-bottom: 15px;
    }
    .spotlight .item .title {
        margin-bottom: 2px;
    }
}

@media only screen and (min-width: 1200px) {

    .spotlight .item {
        max-width: 260px
    }
}

@media only screen and (min-width: 1300px) {
    .spotlight .inner {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-bottom: 100px;
    }

    .spotlight .item {
        max-width: calc(25% - 24px);
        margin: 0 12px 15px;
    }
}

.spotlight .video-cont .play-btn {
    position: absolute;
    z-index: 10;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-color: rgba(5, 7, 8, 0.8);
    display: block;
    opacity: 0.8;
}
.spotlight .video-cont .play-btn i {
    color: var(--off-white);
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}
@media(min-width: 640px){
    .spotlight .video-cont .play-btn {
        width: 73px;
        height: 73px;
    }
}