.listing-video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgb(29 29 29 / 88%);
    border: 1px solid rgb(255 255 255 / 55%);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgb(0 0 0 / 24%);
    backdrop-filter: blur(8px);
    pointer-events: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.listing-video-badge i {
    font-size: 15px;
    line-height: 1;
    transform: translateX(1px);
}

.cs_card_thumbnail:hover .listing-video-badge {
    background-color: var(--accent-color, #00cc61);
    transform: scale(1.06);
}

@media (max-width: 575px) {
    .listing-video-badge {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .listing-video-badge {
        transition: none;
    }
}
