@charset "utf-8";

/* 축제 일정 스타일 */
.pr-movie {
  padding: 40px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.home_title {
  color: #e84341;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1em;
  margin: 0;
  padding-bottom: 8px;
  text-align: center;
}

.home_desc {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  text-align: center;
  margin-bottom: 50px;
}

/* 타임테이블 스타일 - 프로모션 스타일과 통일 */
.timetable_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 헤더 행 스타일 */
.timetable_table tr.tbl-tit th,
.timetable_table tr.tbl-tit td {
  background-color: #e84341;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #d73e41;
}

/* 시간 컬럼 스타일 */
.timetable_table .tbl-tit.timetable_no,
.timetable_table th.tbl-tit {
  background-color: #e84341;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #d73e41;
  width: 120px;
  font-size: 15px;
}

/* 일반 셀 스타일 */
.timetable_table .tbl-content {
  padding: 12px 10px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  vertical-align: middle;
}

/* 교대 행 배경 */
.timetable_table tbody tr:nth-child(even) .tbl-content {
  background-color: #f8f9fa;
}

/* 빈 셀 처리 */
.timetable_table .tbl-content:empty::after {
  content: "-";
  color: #9ca3af;
  font-style: italic;
}


/* 모바일 최적화 - 프로모션 스타일과 통일 */
@media screen and (max-width: 1000px) {
  .pr-movie {
    padding-top: 40px;
  }
  
  .timetable_table .tbl-tit.timetable_no,
  .timetable_table th.tbl-tit {
    width: 80px;
    font-size: 12px;
  }
  
  .timetable_table tr.tbl-tit th,
  .timetable_table tr.tbl-tit td {
    font-size: 12px;
  }
  
  .timetable_table .tbl-content {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .pr-movie {
    padding: 15px 0;
    width: 95%;
  }
  
  .home_title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .home_desc {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  
  .timetable_table .tbl-tit {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .timetable_table .tbl-content {
    padding: 6px 4px;
    font-size: 11px;
  }
  
  .timetable_table .tbl-tit.timetable_no,
  .timetable_table th.tbl-tit {
    width: 55px;
  }
}

@media screen and (max-width: 480px) {
  .pr-movie {
    padding-top: 15px;
  }
  
  .timetable_table .tbl-tit {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .timetable_table .tbl-content {
    padding: 6px 4px;
    font-size: 11px;
  }
  
  .timetable_table .tbl-tit.timetable_no,
  .timetable_table th.tbl-tit {
    width: 50px;
  }
}