/*
  이 파일은 모든 episodeX/index.html 파일에 공통으로 적용되는
  본문 콘텐츠 스타일을 담고 있습니다.
  (기존 episode1/index.html의 인라인 <style>에서 추출)
*/

/* --- 기본 레이아웃 --- */
.episode-wrapper {
    max-width: 650px; /* 가독성을 위해 최대 너비 제한 유지 */
    margin: 0 auto;
    padding: 30px 20px; /* 좌우 여백 */
    padding-top: 90px; /* 고정 헤더와 겹치지 않도록 상단 여백 추가 */
}

body {
    background-color: #f8f8f8; /* 배경색 유지 */
    color: #333;
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    line-height: 1.8;
}

/* --- 콘텐츠 요소 --- */
h1, h2, h3 {
    text-align: center;
    line-height: 1.5;
    margin-top: 40px;
}
.chapter-title h1 { font-size: 1.8em; color: #007bff; }
.chapter-title h2 { font-size: 1.4em; border-bottom: 2px solid #ddd; padding-bottom: 5px; }
h3 { font-size: 1.2em; color: #555; }

p {
    margin-bottom: 1.5em;
    text-align: justify;
}

/* --- 미디어 & 박스 --- */
.scene-image, .scene-video { 
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
/* 미디어 컨테이너: 비디오를 이미지로 교체했을 때 보정할 스타일 */
.scene-media {
    max-width: 900px;
    margin: 12px auto;
    display: block;
}

.scene-video,
.scene-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    background: #000;
    object-fit: cover;
    max-height: 600px;
}

.scene-media picture,
.scene-media picture img {
    display: block;
    width: 100%;
}

.caption {
    max-width: 900px;
    margin: 8px auto 18px;
    color: #555;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 640px) {
    .scene-media { padding: 0 12px; }
}
.caption {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.separator {
    border-top: 1px solid #eee;
    margin: 40px 0;
}

.email-box {
    border: 1px solid #ccc;
    padding: 15px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 5px;
}

.ai-guide {
    margin-top: 60px;
    padding: 20px;
    background-color: #e6f7ff;
    border-left: 5px solid #007bff;
    border-radius: 5px;
}

.prompt-code {
    background-color: #fff;
    padding: 15px;
    border: 1px dashed #007bff;
    white-space: pre-wrap;
    font-family: monospace;
    border-radius: 3px;
    overflow-x: auto;
}

/* --- 모바일 가독성 개선 --- */
@media (max-width: 650px) {
    .episode-wrapper {
        padding: 20px 15px; /* 좁은 화면에서 패딩 확보 */
    }
    .chapter-title h1 {
        font-size: 1.6em;
    }
}

/* ✅ 통일된 미디어 처리 CSS */

/* 공통: 미디어 컨테이너 */
.scene-media {
  max-width: 900px;
  margin: 12px auto;
  display: block;
}

/* 동영상 전용 */
.scene-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #000;
  max-height: 600px;
}

/* 이미지 전용 */
.scene-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #000;
  object-fit: cover;
  max-height: 600px;
}

/* picture 요소 최적화 */
.scene-media picture,
.scene-media picture img {
  display: block;
  width: 100%;
}

/* 캡션 */
.caption {
  max-width: 900px;
  margin: 8px auto 18px;
  color: #555;
  font-size: 0.95rem;
  text-align: center;
}

/* 포커스 */
.scene-video:focus,
.scene-img:focus {
  outline: 3px solid rgba(0, 123, 255, 0.25);
  outline-offset: 2px;
}

/* 모바일 */
@media (max-width: 640px) {
  .scene-media { padding: 0 12px; }
  .caption { padding: 0 12px; }
}