.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-thumbnail-wrapper .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.2s ease;
}

.video-thumbnail-wrapper .play-overlay i {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 60px; */
    /* height: 60px; */
    padding: .45rem;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 3.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-thumbnail-wrapper:hover .play-overlay {
    background: transparent;
}

.video-thumbnail-wrapper:hover .play-overlay i {
    background: rgba(0, 0, 0, 0.65);
    border-color: #fff;
    transform: scale(1.05);
}
