a.cover {
    display: block;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
    height: auto;
}

a.cover.active:hover, .tutorials-list > a.cover:hover {
    transform: scale(1.05);
    transition: transform 150ms linear;
}

.next-videos a.cover:hover {
    transform: scale(1.02);
    transition: transform 150ms ease-in-out;
}

a.cover .thumbnail {
    position: relative;
    margin-bottom: 50px;
} 

a.cover img {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 5px;
}

a.cover .inner-content {
    color: #3E3E3E;
    text-decoration: none;
}

a.cover .duration {
    background-color: #3E3E3E;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 15px;
    position: absolute;
    z-index: 1;
    bottom: 12px;
    right: 12px;
}



@media only screen and (max-width: 732px) {
    a.cover {
        display: flex;



        .thumbnail {
            margin: 0;
        }
    }
}


@media only screen and (max-width: 800px) {
    a.cover{
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
        margin: 0;
        gap: 18px;
        min-height: 100px;
        max-height: 200px;
        height: auto;
    }

    a.cover .duration {
        font-size: 11px;
        bottom: 8px;
        right: 8px;
    }

    a.cover .thumbnail {
        display: flex;
        min-height: 100px;
        max-height: 200px;
        padding: 0;
        margin: 0;

        > img {
            object-fit: cover;
            object-position: left;
        }
    }

    a.cover .inner-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    a.cover .inner-content > h3 {
        padding-top: 2px;
        margin: 0;
        padding: 0;
    }

    a.cover .inner-content h3,
    a.cover .inner-content p {
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
        max-height: calc(2 * 1.8em);
        text-overflow: ellipsis;
    }

    a.cover > *{
        flex: 1;
    }

    i.swiper-button-prev, i.swiper-button-next {
        opacity: 0;
        display: none;
    }
}