/* 동영상뉴스 스킨 1 - 비디오 그리드 */

.vod_skin_wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 그리드 레이아웃 */
.vod_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vod_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.vod_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vod_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 썸네일 영역 */
.vod_thumbnail_wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

.vod_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vod_item:hover .vod_thumbnail {
    transform: scale(1.05);
}

/* 재생 버튼 오버레이 */
.vod_play_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.vod_item:hover .vod_play_overlay {
    background: rgba(0, 0, 0, 0.5);
}

.vod_play_button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #dc3545;
    padding-left: 5px;
    transition: all 0.3s;
}

.vod_item:hover .vod_play_button {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.vod_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 정보 영역 */
.vod_info {
    padding: 20px;
}

.vod_news_title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 44px;
}

.vod_link:hover .vod_news_title {
    color: #dc3545;
}

.vod_summary {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 12px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vod_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #95a5a6;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.vod_time,
.vod_views {
    font-weight: 500;
}

/* 반응형 */
@media (max-width: 1024px) {
    .vod_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .vod_title {
        font-size: 24px;
    }
    
    .vod_grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vod_grid {
        grid-template-columns: 1fr;
    }
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
    padding: 20px 0;
}

.page_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.page_link:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #999;
}

.page_link.current {
    background: #5AB2FF;
    color: #fff;
    border-color: #5AB2FF;
    font-weight: 700;
}

.page_link.prev,
.page_link.next {
    font-weight: 700;
}

/* 페이지네이션 반응형 */
@media (max-width: 768px) {
    .pagination {
        gap: 3px;
    }
    
    .page_link {
        min-width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

