/* 연도 탭: 원래 테두리 탭 바 유지 + 좌우 버튼으로 연도 묶음 전환 (가로 스크롤 없음) */
.current-state .section-content .tab-list .year-tabs-wrap {
  display: flex;
  align-items: stretch;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .current-state .section-content .tab-list .year-tabs-wrap {
    margin-bottom: 65px;
  }
}
@media (min-width: 992px) {
  .current-state .section-content .tab-list .year-tabs-wrap {
    margin-bottom: 20px;
  }
}

/* 탭 줄: 보이는 연도들이 가로폭을 균등 분할 (원래 풀폭 바와 동일) */
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs:before,
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs:after {
  content: none;
  display: none;
}
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li {
  float: none;
  width: auto;
  flex: 1 1 0;
}
/* JSON 로딩 전에도 최종 묶음 크기를 유지해 전체 연도가 순간 노출되지 않게 한다. */
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li {
  display: none;
}
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li:nth-child(-n+4) {
  display: block;
}
@media (min-width: 768px) {
  .current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li:nth-child(-n+6) {
    display: block;
  }
}
@media (min-width: 992px) {
  .current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li:nth-child(-n+8) {
    display: block;
  }
}
/* 좌측 경계는 ‹ 버튼이 제공하므로 첫 탭의 좌측 보더 제거 (이중선 방지) */
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li:first-child > a {
  border-left: 0;
}

/* 좌우 버튼 — 원래 탭 셀과 같은 테두리/높이로 바에 자연스럽게 통합 */
.current-state .section-content .tab-list .year-nav {
  flex: 0 0 auto;
  width: 38px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #dfdfdf;
  color: #2b2b2b;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (min-width: 768px) {
  .current-state .section-content .tab-list .year-nav {
    line-height: 43px;
    font-size: 18px;
  }
}
/* ›는 마지막 탭의 우측 보더를 공유 (이중선 방지) */
.current-state .section-content .tab-list .year-next {
  border-left: 0;
}
.current-state .section-content .tab-list .year-nav:hover {
  background: #fafafa;
}
.current-state .section-content .tab-list .year-nav.disabled {
  color: #cfcfcf;
  background: #fff;
  cursor: default;
}

.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li > a:focus {
  outline: 1px solid #e40009;
  outline-offset: -1px;
}
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li > a:focus:not(:focus-visible) {
  outline: 0;
}
.current-state .section-content .tab-list .year-tabs-wrap .nav-tabs > li > a:focus-visible {
  outline: 2px solid #e40009;
  outline-offset: -2px;
}

.current-state .performance-empty {
  padding: 56px 16px !important;
  color: #777;
  text-align: center !important;
}
