:root {
    --main-color: #111;
    --en-font: 'Geist', sans-serif;
    --title-font: 'NanumBareunGothicOldHangeul', serif;
    --main-font: 'pretendard', sans-serif;
  }
  
  /* 메인 섹션 공통 (라이트) */
  .sec-wrap {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
  }
  
  .hd-center {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 48px);
  }
  
  .hd-k {
    margin: 0 0 clamp(12px, 2vw, 18px);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  .hd-ttl {
    margin: 0;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #111;
  }
  
  .more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: transparent;
    color: #111;
    font-family: var(--en-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.05em;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .more:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: #af357c;
  }
  
  .schedule-rail {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  
  .schedule-arrows {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
  }
  
  .schedule-arrows button {
    box-sizing: border-box;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    color: #111;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  
  .schedule-arrows button i {
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .schedule-arrows button + button {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
  }
  
  .schedule-arrows button:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .schedule-arrows button.is-disabled,
  .schedule-arrows button:disabled {
    opacity: 0.35;
    cursor: default;
  }
  
  .more-pink {
    border-color: #af357c;
    color: #111;
  }
  
  .more-pink:hover {
    background: rgba(175, 53, 124, 0.08);
  }
  