/* 영상 썸네일 컨테이너 */
.video-thumbnail-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* 영상 길이 표시 배지 */
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    pointer-events: none;
    z-index: 10;
}
.thumbnail-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
/* 모바일 대응 */
@media (max-width: 768px) {
    .video-duration {
        font-size: 11px;
        padding: 2px 5px;
        bottom: 6px;
        right: 6px;
    }
}

/* 작은 썸네일용 (100px 이하) */
.video-thumbnail-container.small .video-duration {
    font-size: 10px;
    padding: 1px 4px;
    bottom: 4px;
    right: 4px;
}
