.sub_section_visual {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

/* 영상 배경 */
.sub_video_wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sub_video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub_video_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* 텍스트 */
.sub_text_wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_text {
    text-align: center;
    color: #fff;
}

.sub_text h2 {
    font-size: var(--title-point-font-size);
    font-weight: 400;
    color: #fff;
    margin-bottom: clamp(16px, 2vw, 30px);
}

.sub_text p {
    font-size: var(--text-font-size);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

@media all and (max-width: 860px) {
    .sub_section_visual {
        height: 60vh;
    }

    .sub_text h2 {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 14px;
    }

    .sub_text p {
        font-size: clamp(12px, 2.5vw, 15px);
        padding: 0 20px;
    }

}

@media all and (max-width: 500px) {
    .sub_section_visual {
        height: 50vh;
    }

    .sub_text h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .sub_text p {
        font-size: 13px;
    }


    
}
