/* =============================================
   기본 변수(글꼴/컬러/사이즈) - 여기서 쉽게 변경 가능
============================================= */
.sh-schedule-root {
  --sh-font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --sh-main-color: #232f85;        /* 로고 메인색 */
  --sh-accent-color: #e5eafb;      /* 연파랑 (포인트 배경 등) */
  --sh-nav-active-color: #fff;
  --sh-title-color: #232f85;       /* 타이틀 색도 파랑 */
  --sh-text-color: #222;
  --sh-subtext-color: #757575;
  --sh-border-radius: 14px;
  --sh-nav-font-size: 1.1em;
  --sh-title-font-size: 1.8em;
  --sh-section-max-width: 1250px;
}

/* =============================================
   공통 스타일
============================================= */
.sh-schedule-root,
.sh-schedule-root * {
  box-sizing: border-box;
  font-family: var(--sh-font-family);
  color: var(--sh-text-color);
}

/* =============================================
   네비게이션
============================================= */
.sh-schedule-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 40px 0;
  flex-wrap: wrap;
}

.sh-nav-item {
  display: block;
  min-width: 180px;
  padding: 18px 18px;
  background: transparent;
  border: 2px solid var(--sh-main-color);
  border-radius: var(--sh-border-radius);
  text-align: center;
  font-size: var(--sh-nav-font-size);
  font-weight: 700;
  color: var(--sh-main-color);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.sh-nav-item:hover,
.sh-nav-item:focus {
  background: var(--sh-accent-color);
  color: #333;
}
.sh-nav-item.sh-active {
  background: var(--sh-main-color);
  color: var(--sh-nav-active-color);
  border-color: var(--sh-main-color);
}

/* =============================================
   날짜/섹션/타이틀
============================================= */
.sh-schedule-day {
  max-width: var(--sh-section-max-width);
  margin: 0 auto;
  padding: 0 16px 32px 16px;
}
.sh-day-title {
  font-size: var(--sh-title-font-size);
  font-weight: 700;
  /* 세로(아래→위) 그라디언트, 70%까지 채움 */
  background: linear-gradient(0deg, var(--sh-accent-color) 0 30%, transparent 50% 100%);
  color: var(--sh-title-color);
  display: inline-block;
  text-align: center;
  margin: 20px 0 30px 0;
  padding: 8px 2px 0 2px;
  border-radius: 2px;
  /* 중앙정렬 */
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.sh-schedule-list {
  border-top: 3px solid #222;
  margin-top: 16px;
}

/* =============================================
   시간/이미지/내용 레이아웃
============================================= */
.sh-schedule-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #eee;
}
/* .sh-schedule-item:last-child {
  border-bottom: none;
} */

.sh-time {
  width: 170px;
  min-width: 80px;
  /* font-size: 1.3rem; */
  font-weight: 600;
  color: var(--sh-title-color);
  text-align: center;
}

/* 이미지 영역 - 효과 X, 동그란 이미지만 */
.sh-speaker-img {
  margin:10px 30px 10px 0;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}

/* 내용 텍스트 */
.sh-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sh-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--sh-title-color);
}
.sh-speaker {
  color: var(--sh-subtext-color);
  font-size: 18px;
  font-weight: 400;
}

/* =============================================
   모바일 반응형
============================================= */
@media (max-width: 600px) {
  .sh-schedule-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .sh-nav-item {
    min-width: unset;
    font-size: 18px;
    padding: 13px 7px;
  }
  .sh-schedule-day {
    padding: 0 3px 22px 3px;
  }
  .sh-day-title {
    font-size: 18px;
    padding: 4px 0;
    margin-bottom: 7px;
  }
  .sh-schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 0 6px 0;
    border-bottom: 1px solid #ddd;
  }
  .sh-content {
    padding: 10px 5px 1px 15px;
  }
  .sh-time {
    width: 100%;
    min-width: unset;
    font-size: 16px;
    text-align: center;
    margin-bottom: 2px;
    padding: 12px 0 10px;
    background: #f7f7f7;
    border-bottom: 1px solid #f4f4f4;
  }
  .sh-speaker-img {
    display: none;
  }
  .sh-title {
    font-size: 16px;
  }
}
