/* ===== 뉴스 비디오 섹션 ===== */
.news_video_section {
    width: 100%;
    margin: 0 auto;
    background: #FFFCF7;
    padding: 50px 0 0 0;
}

.news_video_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.news_video_content {
    width: 100%;
}

.news_video_header {
    text-align: center;
    margin-bottom: 60px;
}

.news_video_brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #D4AF60;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.news_video_title {
    font-family: 'Noto Serif KR', serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.news_video_subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
}

/* 비디오 그리드 - 데스크탑/태블릿: 1x4, 모바일: 2x2 */
.news_video_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.news_video_item {
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.news_video_item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}

.news_video_item img:hover {
    transform: scale(1.02);
}

/* ===== 반응형 ===== */
/* 태블릿 */
@media (max-width: 1199px) and (min-width: 768px) {
    .news_video_section {
        padding: 40px 0 0 0;
    }
    
    .news_video_brand {
        font-size: 16px;
    }
    
    .news_video_title {
        font-size: 35px;
    }
    
    .news_video_subtitle {
        font-size: 15px;
    }
    
    .news_video_grid {
        gap: 25px;
    }
}

/* 모바일 */
@media (max-width: 767px) and (min-width: 480px) {
    .news_video_section {
        padding: 30px 0 0 0;
    }
    
    .news_video_container {
        padding: 0 15px;
    }
    
    .news_video_header {
        margin-bottom: 40px;
    }
    
    .news_video_brand {
        font-size: 15px;
    }
    
    .news_video_title {
        font-size: 32px;
    }
    
    .news_video_subtitle {
        font-size: 14px;
    }
    
    .news_video_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 작은 모바일 */
@media (max-width: 479px) {
    .news_video_section {
        padding: 30px 0 0 0;
    }
    
    .news_video_container {
        padding: 0 15px;
    }
    
    .news_video_header {
        margin-bottom: 30px;
    }
    
    .news_video_brand {
        font-size: 13px;
    }
    
    .news_video_title {
        font-size: 30px;
    }
    
    .news_video_subtitle {
        font-size: 13px;
    }
    
    .news_video_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ===== 뉴스 비디오 모달 ===== */
.news_video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.news_video_modal.active {
    display: flex;
}

.news_video_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.news_video_modal_wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: newsModalFadeIn 0.3s ease-out;
}

.news_video_modal_content {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes newsModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.news_video_modal_close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.news_video_modal_close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

#news_modal_video {
    width: 100%;
    height: auto;
    display: block;
}

/* 모바일에서 비디오 모달 조정 */
@media (max-width: 767px) {
    .news_video_modal_wrapper {
        width: 95%;
        max-width: none;
    }
}
