.video-card {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.video-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding-top: 0.75rem;
    flex-grow: 1;
}

.video-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: white;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: grey;
    font-size: 14px;
    margin-bottom: 10px;
}