/* JustShortIt Video Placeholder Styles */
.justshortit-video-masonry .video-thumbnail img[src*="placeholder-generator.php"],
.justshortit-video-masonry .video-thumbnail img[src*="video-placeholder.svg"],
.justshortit-video-masonry .video-thumbnail img[src*="via.placeholder.com"] {
    filter: none; /* Ensure placeholders are crisp */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
}

.justshortit-video-masonry .video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.justshortit-video-masonry .video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.justshortit-video-masonry .video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Special styling for placeholder images */
.justshortit-video-masonry .video-thumbnail .placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(45,45,45,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.justshortit-video-masonry .video-thumbnail:hover .placeholder-overlay {
    opacity: 1;
}