.video-card {
    background-color: transparent;
    margin-bottom: 10px;
    border: none;
}

.video-card a {
    text-decoration: none;
}

.video-card:hover {
    background-color: rgb(210, 210, 210);
    border: none;
    border-radius: 10px
}

.video-thumb {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-thumb-portrait {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 16;
    width: 100%;
}

.video-thumb-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 992px) {
    .desktop-col-portrait {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* .video-duration {
    position: absolute;
    bottom: 5px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
} */

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-box {
    position: relative;
    background: #fff;
    padding: 0px 0px 0px;
    border-radius: 12px;
    width: 320px;
    animation: pop 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-box>.close-x {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

@keyframes pop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}