

.thumbnail {
    width: 100%;
    height: auto;
}



.video-title {
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
}

.video-info-grid {
    display: grid;
    grid-template-columns: 50px 1fr;
}

.profile-picture {
    width: 40px;
    border-radius: 50px;
}

.thumbnail-row {
    position: relative;
}

.video-author,
.video-stats {
    font-size: 12px;
    color: rgb(96, 96, 96);
}

.video-author {
    margin-bottom: 4px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 16px;
    row-gap: 40px;
}
.video-preview {
    transition: box-shadow 0.15s,opacity 0.15s;
    cursor: pointer;
    width: 100% ;
}
.video-preview:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.473);
}
.video-preview:active {
    opacity: 0.6;
    box-shadow: none;
}

.video-link,
.video-link:visited,
.video-link:hover,
.video-link:active,
.video-link-a {
    color: black !important;
    text-decoration: none !important;
}
.video-yt,
.video-yt:visited
.video-yt:hover,
.video-yt:active,
.video-yt-a {
    color: rgb(96, 96, 96) !important;
    text-decoration: none !important;
}
.video-time {
    position: absolute;
    bottom: 11px;
    right: 4px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    padding: 4px;
    border-radius: 4px;
    font-weight: 500;
    box-sizing: border-box;
}

