/* Video Facade Container */
.video-facade {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* Thumbnail Image */
.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-facade:hover img {
    opacity: 0.9;
}

/* Centered Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    z-index: 2;
    transition: background-color 0.2s ease;
}

/* Play Button Triangle */
.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
}

.video-facade:hover .play-button {
    background-color: #f00; 
}

/* New Icon Bullet Styles */
.icon-bullet {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Prevents shrinking on small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}