/* YouTube Thumbnail Background Styling */
.case-simple-video {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.case-simple-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.3);
    transition: all 0.3s ease;
}

.case-simple-video:hover::before {
    background: rgba(10, 22, 40, 0.5);
}
