/* 공통 비디오 컨테이너 */
.video_wrap {
    background: #f1f1f5;
    height: auto;
    max-height: 80vh; /* 여기서 최대 높이 제한 */
    overflow-y: auto; /* 기본 스크롤 */
}


/* 일반 영상 (16:9) */
.video_cont iframe {
    width: 100% !important; /* 부모 가로폭 꽉 채우기 */
    height: auto !important; /* 비율에 맞게 자동 높이 */
    max-width: 800px;
    max-height: 480px;
    aspect-ratio: 9/16;
    display: block;
    margin: 0 auto; /* 중앙정렬 */
}

/* 쇼츠/릴스 (9:16) */
.video_cont.vertical iframe {
    max-height: 480px;
    aspect-ratio: 9 / 16;
    display: block;
    margin: 0 auto;
}

/* 인스타그램 임베드 공통 */
.video_cont.insta {
    max-width: 370px !important; /* 인스타 기본 폭 */
    height: initial !important; /* 화면 80%까지만 */
    margin: 0 auto;
    padding: 8px; /* 보기 좋게 약간 여백 */
    box-sizing: border-box;
}

.video_cont.insta iframe,
.video_cont.insta blockquote {
    width: 100% !important;
    max-width: 370px !important;
    margin: 0 auto !important;
    display: block !important;
    height: auto !important;
    max-height: initial !important;
}

.play_btn {
    z-index: 9999;
    pointer-events: auto;
}

.video_wrap.playing iframe {
    pointer-events: auto; /* 재생 중일 땐 정상 동작 */
}