/* ----- Basic Style Reset ----- */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #ffffff;
}

/* ----- Main Video Content Container ----- */
.video-container {
    /* max-width: 1800px; */
    margin: 0 auto;
    padding-top: 100px;
}

/* ----- Header Section ----- */
.video-header {
    text-align: center;
    margin-bottom: -100px;
    padding: 150px 0px;

}

.video-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 70px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.video-header .sub-title {
    font-size: 25px;
    font-weight: 700;
    color: #888888;
    margin-top: 10px;
}

.video-header .sub-title:lang(ko) {
    font-family: 'Pretendard', sans-serif;
}

.video-header .sub-title:lang(en) {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ----- Main Content Section ----- */
.video-main-content {
    background-color: #000000;
    background-image: url('../../images/video_content/video_background.svg');
    background-size: 120%; /* 이미지를 120% 크기로 확대 */
    background-position: center top; /* 가로 중앙, 세로 상단에 위치 */
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 40px 60px;
    /* border-radius: 16px; */
    text-align: center;
}

.main-content-text h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.main-content-text h2:lang(ko) {
    font-family: 'Pretendard', sans-serif;
}

.main-content-text h2:lang(en) {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.main-content-text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto 300px auto;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
            /* text-align: justify; */
    word-break: keep-all;
    
}

/* ----- Video Gallery ----- */
.video-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.video-item {
    width: 100%;
    max-width: 940px;
    padding: 50px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #333; /* Placeholder background */
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    font-size: 1.2rem;
    font-weight: 800;
    text-align: right;
    margin-top: 20px;
    padding-right: 10px;
}

/* ----- Responsive Design ----- */
@media (max-width: 1024px) {
    .video-header h1 {
        font-size: 3.5rem;
    }
    .video-header .sub-title {
        font-size: 1.5rem;
    }
    .main-content-text h2 {
        font-size: 2.5rem;
    }
    .main-content-text p {
        font-size: 0.8rem;
        text-align: center;
    }
    .video-main-content {
    background-position: center px; /* 가로 중앙, 세로 중앙에 위치 */
    }

}

@media (max-width: 768px) {

    .video-container {
        padding: 0px 0px;
    }
    .video-header h1 {
        font-size: 2.0rem;
    }
    .video-header .sub-title {
        font-size: 1.2rem;
    }
    .video-main-content {
        padding: 30px 10px;
    }
    .main-content-text h2 {
        font-size: 1.8rem;
                /* text-align: justify; */
        word-break: keep-all;
    }
    .main-content-text p {
        font-size: 1rem;
        text-align: justify;
        word-break: keep-all;
        /* padding: 0px 10px; */
        margin: 0 auto 30px auto;

    }
    .main-content-text br {
        display: none;
    }
    .video-caption {
        font-size: 1rem;
    }
    .video-item {
    width: 100%;
    max-width: 940px;
    padding: 0px;
    }


}