/* ============================================
   모바일 동영상뉴스 스킨 - 섹션리스트 스타일
   ============================================ */

.mobile_vod_list {
    background: #fff;
    padding: 15px;
    min-height: calc(100vh - 120px);
}

/* 동영상 헤더 */
.vod_header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
}

.vod_title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* 동영상 컨텐츠 */
.vod_content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 동영상 아이템 */
.vod_item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.vod_item:last-child {
    border-bottom: none;
}

.vod_item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 썸네일 */
.vod_thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
    margin-bottom: 12px;
    border-radius: 4px;
    position: relative;
}

.vod_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.vod_item:active .vod_thumb img {
    opacity: 0.8;
}

/* 재생 아이콘 */
.vod_play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.vod_play_icon svg {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* 동영상 뱃지 */
.vod_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(220, 20, 60, 0.9);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

/* 동영상 정보 */
.vod_info {
    padding: 0;
}

.vod_info h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    margin: 0 0 8px 0;
    word-break: keep-all;
}

.vod_summary {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 메타 정보 */
.vod_meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vod_time {
    color: #999;
}

.vod_views {
    color: #666;
}

.vod_time::after {
    content: '|';
    margin-left: 8px;
    color: #ddd;
}

/* 데이터 없음 */
.no_data {
    padding: 60px 20px;
    text-align: center;
}

.no_data p {
    font-size: 15px;
    color: #999;
}

/* 페이지네이션 */
.vod_pagination {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
}

.vod_pagination .page_link {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 3px;
    padding: 0 8px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
}

.vod_pagination a.page_link {
    color: #666;
    background: #f5f5f5;
}

.vod_pagination a.page_link:active {
    background: #1a9ba8;
    color: #fff;
}

.vod_pagination strong.page_link {
    background: #1a9ba8;
    color: #fff;
    font-weight: 600;
}

/* 반응형 - 작은 모바일 */
@media (max-width: 360px) {
    .mobile_vod_list {
        padding: 10px;
    }
    
    .vod_thumb {
        height: 180px;
    }
    
    .vod_play_icon svg {
        width: 35px;
        height: 35px;
    }
    
    .vod_info h3 {
        font-size: 15px;
    }
    
    .vod_summary {
        font-size: 13px;
    }
}

/* 반응형 - 큰 모바일/태블릿 */
@media (min-width: 480px) {
    .vod_thumb {
        height: 240px;
    }
    
    .vod_play_icon svg {
        width: 50px;
        height: 50px;
    }
    
    .vod_info h3 {
        font-size: 17px;
    }
}

@media (min-width: 768px) {
    .mobile_vod_list {
        max-width: 768px;
        margin: 0 auto;
    }
}
