.video-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5rem;
}
.card-video{
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;

}
.card-video h3{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
    cursor: pointer;
    background-color: #333;
}

.card-video .title{
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
    cursor: pointer;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

.card-video{
    position: relative;
}

.card-video::before{
    content: "";
    display: block;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.multiple-video{
    box-shadow: 
        -5px -5px  rgba(249, 149, 0,0.9), 
        -10px -10px   rgba(199, 39, 39,0.3);
}