.video-card-item {
    margin-top: 25px;
}

.video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    background: linear-gradient(135deg,  rgba(41,41,41,1) 0%,rgba(52,52,52,1) 50%,rgba(41,41,41,1) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.video-card__image {
    height: 200px;
    position: relative;
}

.video-card__bttn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.26);
}

.video-card__bttn svg {
    width: 60px;
    height: auto;
    transition: all .3s;
}

.video-card__details {
    padding: 20px 20px 30px;
}

.video-card__title {
    font-size: 20px;
}

.video-card__details p {
    font-size: 18px;
    line-height: 1.666em;
}

.video-card__cta {
    display:inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: "Oswald", sans-serif;
    background: none;
    margin-top: 10px;
    position: relative;
    padding-right: 20px;
    font-weight: normal;
   
}

.video-card__cta i {
    transform: rotate(90deg);
    display: block;
    line-height: 1em;
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 14px;
}

.video-card__cta:after {
    content: "\e904";
    transform: rotate(90deg);
    display: block;
    line-height: 1em;
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 14px;
    font-family: 'calhoun-super-icon'!important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.js-read-more-less-full .video-card__cta:after {
    transform: rotate(-90deg);
}

.bg-white .video-card__title {
    color: #fff;
}

.has-read-less-more .is-hidden {
    display: none;
}

.bg-white .has-read-less-more * {
    color: #fff;
}

@media (min-width: 768px) {
    .video-card-item {
        margin-top: 30px;
    }

    .video-card__bttn svg {
        width: 76px;
    }
    
    .video-card__details {
        padding: 20px 26px 27px;
    }
    
    .video-card__title {
        font-size: 22px;
    }

    .video-cards__headlines {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }

    .video-cards__title {
        width: 374px;
    }

    .video-cards__title h2 {
        padding-bottom: 0;
    }

    
}

@media (min-width: 1200px) {
    .video-card-item {
        margin-top: 40px;
    }

    .video-card__bttn svg {
        width: 98px;
    }
    
    .video-card__details {
        padding: 25px 25px 27px;
    }
    
    .video-cards__title {
        width: calc(100% - 260px);
    }

    .video-cards__headlines .btn {
        margin-bottom: 7px;
    }

    .video-card__cta {
        margin-top: 0;
    }

    .video-card__image {
        height: 225px;
    }

    .video-card__bttn:hover {
        background: rgba(0,0,0,0.26);
    }

    .video-card__bttn:hover svg {
        transform: scale(1.1);
    }
    
}

@media (min-width: 1620px) {
    .video-card__details {
        padding: 25px;
    }
}