/* 헤더 밑 섹션 여백 */
/* 헤더 밑 시간표 레이아웃 (PC) */
.tt-wrap {
  display: flex;           /* 좌측 학년, 우측 내용 */
  gap: 24px;
  padding: 18px 20px 80px;
}

/* 좌측 학년 선택 영역 */
.tt-grade {
  width: 180px;
  flex-shrink: 0;
}

/* 우측 본문 */
.tt-main {
  flex: 1;
  min-width: 0;
}

/* 좌측 학년 선택 */
.tt-grade h3{ margin:6px 0 14px; font-size:16px; color:#64748b; font-weight:800; letter-spacing:-.01em; }
.tt-grade-list{ display:flex; flex-direction:column; gap:10px; }
.tt-grade-list a{
  display:block; padding:.55rem .8rem; border-radius:10px;
  text-decoration:none; color:#0f172a; border:1px solid rgba(2,6,23,.12);
  background:#fff; font-weight:700;
}
.tt-grade-list a.is-active {
  background: #22c55e;
  border-color: #16a34a;
  color: #ffffff;
}

/* 우측 본문 */
.tt-main{ min-width:0; }
.tt-header h2{ margin:0 0 8px; font-size:28px; font-weight:800; letter-spacing:-.02em; }

.tt-content img{
  width:100%; height:auto; border-radius:12px;
  box-shadow:0 12px 40px rgba(0,0,0,.06);
}

/* (표/card 사용 시) */
.tt-card{ background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:12px; box-shadow:0 12px 40px rgba(0,0,0,.06); }
.tt-card-head{ font-weight:800; padding:14px 16px; border-bottom:1px solid rgba(2,6,23,.06); }
.tt-card-head .ver{ color:#64748b; font-weight:600; margin-left:8px; }
.tt-table-scroll{ overflow:auto; }
.tt-table{ border-collapse:collapse; width:100%; font-size:15px; }
.tt-table th, .tt-table td{ border:1px solid rgba(2,6,23,.12); padding:10px 12px; text-align:center; }



.tt-filter-bar {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:12px;
}

.tt-filter-search {
  flex:1 1 220px;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(148,163,184,.7);
  font-size:14px;
}

.tt-filter-select {
  flex:0 0 auto;
  min-width:120px;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(148,163,184,.7);
  background:#fff;
  font-size:14px;
}

.tt-filter-wrap {
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:16px;
}

.tt-filter-block { }

.tt-chip-row {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tt-chip {
  border-radius:999px;
  border:1px solid #e5e7eb;
  padding:6px 14px;
  background:#ffffff;
  font-size:14px;
  cursor:pointer;
  line-height:1.2;
}

.tt-chip:hover {
  border-color:#9ca3af;
}

.tt-chip.is-active {
  background:#22c55e;
  border-color:#16a34a;
  color:#ffffff;
  font-weight:600;
}

/* 과목 라벨 줄 */
.tt-subject-block {
  border-top:1px solid #f3f4f6;
  padding-top:8px;
}

.tt-subject-header {
  margin-bottom:6px;
}

.tt-subject-label {
  font-size:13px;
  font-weight:600;
  color:#6b7280;
}

/* 맨 아래 검색창 */
.tt-search-block {
  border-top:1px solid #f3f4f6;
  padding-top:8px;
}

.tt-filter-search {
  width:100%;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(148,163,184,.7);
  font-size:14px;
}


/* =========================
   학년 선택 메뉴 (tt-grade)
   → academy-info 좌측 네비와 동일 스타일
   ========================= */

/* 좌측 영역 너비 */
.tt-grade {
  width: 180px;
  flex-shrink: 0;
}

/* 항목 세로 배치 */
.tt-grade-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 각 학년 버튼 */
.tt-grade-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.15s ease;
}

/* hover 시 */
.tt-grade-list a:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* 선택된 학년 (is-active) */
.tt-grade-list a.is-active {
  background-color: #16a34a;
  color: #ffffff;
}

.tt-grade,
.tt-grade-list a {
  font-family: 'Pretendard', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== 시간표 학년 선택 – 모바일 레이아웃 / 타이포 축소 ===== */
@media (max-width: 768px) {

  /* 헤더 바로 밑에 최대한 붙게 */
  .tt-wrap {
    flex-direction: column;      /* 좌측/우측 → 위/아래 */
    gap: 6px;                    /* 학년탭 ~ 본문 사이 간격 줄이기 */
    padding: 0 16px 40px;      /* 위쪽 패딩 4px 로 최소화 */
  }

  /* 학년 선택 영역: 가로 100% */
  .tt-grade {
    width: 100%;
    flex-shrink: 0;
  }

  /* 학년 버튼들을 가로 탭처럼 나열 (학원 안내랑 동일 스타일) */
  .tt-grade-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 6px;
    border-bottom: 1px solid #e5e7eb;

     margin-bottom: 10px;    /* 숫자 더 키우면 간격 더 넓어짐 */
  }

  .tt-grade-list a {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.8rem;          /* 학년 탭 글자 작게 */
  }

  .tt-grade-list a.is-active {
    background: #16a34a;
    color: #fff;
    font-weight: 600;
  }

  .tt-main {
    min-height: auto;
  }

  /* ===== 타이포 전체 축소 (제목/필터/표) ===== */

  /* "중1 시간표" 제목 작게 */
  .tt-header h2 {
    font-size: 1.0rem;          /* 기존 28px → 모바일용 */
    margin-bottom: 4px;
     margin-left: 8px;
  }

  /* 필터 라벨/칩/검색 입력 글자 줄이기 */
  .tt-filter-label,
  .tt-chip {
    font-size: 0.8rem;
  }

  .tt-filter-search {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  /* 한눈에 보기 토글 버튼 글자 줄이기 */
  .overview-toggle-btn {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  /* 테이블 글씨/셀 여백 줄이기 */
  .tt-table {
    font-size: 0.8rem;          /* 전체 글자 크기 축소 */
  }

  .tt-table th,
  .tt-table td {
    padding: 6px 8px;           /* 세로 높이 줄이기 */
  }

/* 헤더(로고+탭+네비) 아래 여백 줄이기 */
    .camp-masthead {
      padding-bottom: 0px;    /* 기본보다 훨씬 작게 */
    }

     /* 네비게이션 바 자체의 아래쪽 여백도 줄이기 */
        .camp-navrow {
          margin-bottom: 0px;     /* 필요하면 0~6px 사이로 조절 */
        }




}
