.press-main { padding: 0; margin: 0; }

/* 🎥 비디오 히어로: 페이지 스코프 + svh */
.press-main .video-hero{
  position: relative;
  width: 100%;
  min-height: 100svh;     /* 100vh → 100svh (모바일 주소창 안전) */
  overflow: hidden;
}
.press-main .video-hero > video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.press-main .video-hero .overlay{
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: min(30svh, 30vh);
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* 🧭 인트로(배경 오버레이 포함) */
.press-intro{
  background-image: url('../../img/bg/press-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-text-light, #fff);
  position: relative;
  margin-top: 75px;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1rem;
}
.press-intro::before{
  content: ''; position: absolute; inset: 0;
  background-color: var(--color-overlay-green, rgba(43,90,43,.55));
  z-index: -1;
  transition: background-color .3s ease;
}
.press-intro:hover::before{ background-color: rgba(60,120,60,.5); }
.press-intro h1{
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: #fff;
}

/* ⌨️ 타이핑: JS 전용(가로쓰기 + 줄바꿈 허용) */
.press-intro .typewriter,
.typewriter{
  font-size: 1.1rem;
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: normal;   /* 줄바꿈 허용 */
  overflow: visible;     /* 잘림 방지 */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* 📄 리스트 섹션 */
.press-section{
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) 1.25rem; /* ← 좌우 여백 추가 */
  font-size: var(--fs-base); 
  color: var(--color-text);
  line-height: 1.8;
  text-align: center;
}
.press-list{ list-style: none; padding: 0; margin-top: var(--gap-md); text-align: left; }
.press-list li{
  border-bottom: 1px solid var(--color-border);
  padding: var(--gap-sm) 0;
}
.press-date{
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.press-list a{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color .2s ease;
}
.press-list a:hover{ color: var(--color-accent); }

/* ===== 반응형 ===== */
@media (max-width: 768px){
  .press-main .video-hero{ min-height: 60svh; }
  .press-main .video-hero .overlay{ padding-top: 10svh; font-size: 1rem; }

  .press-intro{ padding: 2.5rem 1rem; margin-top: 40px; }
  .press-intro h1{ font-size: 1.5rem; }

  .press-main .typewriter{
    font-size: 1rem;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    line-height: 1.6;
  }

  .press-section{ padding: 40px 16px; font-size: .95rem; }
  .press-list li{ padding: .75rem 0; font-size: .95rem; }
  .press-date{ font-size: .85rem; }
  .press-list a{ font-size: .95rem; }
}
