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

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

.video-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-image-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.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 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

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

.card-title {
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body-custom {
    padding-left: 0px;
}

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

.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.facebook:hover {
    background: #2200ff;
    color: white;
}

.twitter:hover {
    background: black;
    color: white;
}

#btn-copy:hover {
    background-color: #000000;
    transition: 0.2s;
}