@charset "UTF-8";

/* [접근성] 숨김 텍스트 기법 (화면에는 안 보이지만 스크린 리더는 100% 읽음) */
.blind {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 기본 내장 브라우저 포커스 아웃라인을 제거하여 더블 라인 현상 방지 */
main#contents a:focus,
main#contents button:focus,
main#contents input:focus,
main#contents select:focus,
main#contents textarea:focus,
main#contents [tabindex="0"]:focus {
  outline: none;
}

/* 포커스 링 - 키보드 Tab 접근 시에만 발동되는 고대비 접근성 스타일링 */
main#contents a:focus-visible,
main#contents button:focus-visible,
main#contents input:focus-visible,
main#contents select:focus-visible,
main#contents textarea:focus-visible,
main#contents [tabindex="0"]:focus-visible {
  outline: 0.25rem solid #8673ff;
  outline-offset: 0.2rem;
  border-radius: 0.4rem;
}

/* 💡 [메모 반영] 어두운 배경(Active 탭, 메인 배너 컬러 등) 영역 내부 포커스 반전 */
.tab_list .tab.active:focus-visible,
.title-banner:focus-visible,
.effect-badge:focus-visible {
  outline: 0.25rem solid #8673ff !important; /* 밝은 컬러의 고대비 포커스 매칭 */
  outline-offset: -0.3rem !important; /* 안쪽으로 인셋 처리하여 시각 인지 극대화 */
}


/* ========================================================
    Subpage 공통 - sub-navigation
======================================================== */
.sub-navigator-bar {
  height: 4.5rem;
  padding: 1rem 0 1.1rem 0;
  width: 100%;
  font-family: "Pretendard", sans-serif;
  border-bottom: 0.1rem solid #ddd;
  font-size: 1.4rem; /* 10px = 1rem 규칙 기반 설계 매칭 */
}
.sub-navigator-bar .inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.depth-text {
  font-style: normal;
  display: block;
  position: relative;
  line-height: 2.4rem;
  color: #333;
  text-decoration: none;
}
.depth-text.current {
  font-weight: 700;
  white-space: nowrap;
}

.depth-text::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/images/kisa/sub/icon_navi_arrow.png) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  left:-2.4rem;
  top: 0;
}

.depth-text.current::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/images/kisa/sub/icon_navi_arrow.png) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  left:-2.4rem;
  top: 0;
}

.home-link img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
  display: block;
}

/* ========================================================
    Subpage 공통레이아웃
======================================================== */
.sub-container {
  max-width: 140rem;
  margin: 0 auto;
}
.sub-title-box {
  display: flex;
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  background:url('/images/kisa/sub/sub_header_bg.png') no-repeat 220px -150px;
}
.sub-h2 {
  margin: 6rem auto 2rem;
  font-size: 3.8rem;
  font-weight: 800;
  text-align: center;
  width: fit-content;
  line-height: 1.5;
}
.sub-h2 span {
  display: inline;
  background: linear-gradient(to top, var(--bg-theme1) 20%, transparent 20%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.4rem;
}
.title-util-group {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
.btn-ipfs-link {
  display: inline-block;
  padding: 1rem 4rem 1rem 1.5rem;
  border: 0.2rem solid var(--gray2);
  color: var(--color-main-3);
  position: relative;
  font-weight: 600;
  text-decoration: none;
}
.btn-ipfs-link::after {
  content: "";
  position: absolute;
  background-image: url(../images/kisa/sub/abel_arrow.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
/* ========================================================
    Subpage 공통 Tab 레이아웃
======================================================== */
.tab_list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 1rem;
}
.tab_list .tab_content {
  width: 100%;
}
.tab_list.calc2 > li {
  flex: 1;
  width: 100%;
}
.tab_list.calc2 .tab {
  width: 100%;
}
.tab_list .tab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--bg);
  border: 1px solid var(--gray2);
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition:
          border-color 0.25s ease,
          box-shadow 0.25s ease;
  box-sizing: border-box;
}
.tab_list .tab:hover {
  border-color: var(--color-main-2);
  box-shadow: 0rem 0rem 0.5rem 0.1rem rgb(134 115 255 / 46%);
}
.tab_list .tab.active,
.tab_list .tab[aria-selected="true"] {
  background-color: var(--color-main-1);
  color: #ffffff;
  font-weight: 600;
  border-color: var(--color-main-1);
}
.tab_panel[hidden] {
  display: none !important;
}
.tab_panel {
  display: block;
  margin-top: 2rem;
}

/* ========================================================
    Sub01_Tab01
======================================================== */
.body-content-tit h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 2rem 0 1rem 0;
  letter-spacing: -0.02em;
}
.title-banner {
  background-color: var(--color-main-1);
  color: #ffffff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.2rem;
  margin-bottom: 2rem;
}
.summary-text {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.6;
  margin: 2.5rem 0;
  letter-spacing: -0.04em;
}
.summary-text strong {
  font-weight: 800;
}

/* 다이어그램 2분할 플렉스 */
.diagram-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.diagram-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
  background-color: var(--bg);
  border: 0.1rem solid var(--gray2);
  padding: 2rem;
}
.diagram-flex-box {
  display: flex;
}
.diagram-graphic-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.diagram-graphic-side img {
  width: 100%;
  max-width: 55rem;
  height: auto;
}
.diagram-cards-box {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-content: space-between;
}
.desc-card {
  width: calc(50% - 0.6rem);
  height: calc(50% - 0.6rem);
  background-color: #ffffff;
  border: 0.1rem solid var(--gray2);
  padding: 2.4rem 2.2rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
}
.desc-card .card-tit {
  font-size: 2.2rem;
  font-weight: 800;
}
.desc-card p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  word-break: keep-all;
}

/* 가치 영역 - 기대효과 */
.value-box-content {
  margin-bottom: 6rem;
}
.effect-container {
  display: flex;
  border: 0.1rem solid var(--gray2);
  background-color: #ffffff;
  align-items: stretch;
  margin-top: 2rem;
}
.effect-badge {
  background-color: var(--color-main-1);
  color: #ffffff;
  width: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.2rem;
  flex-shrink: 0;
}
.effect-desc {
  padding: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

/* 하단 응용 서비스 카드 */
.blockchain-services-wrap {
  margin-bottom: 5rem;
}
.blockchain-services-wrap .diagram-title {
  margin: 4rem 0 1.5rem;
}
.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.services-grid-layout .service-card {
  border: 0.1rem solid var(--gray2);
  border-radius: 1.5rem;
  padding: 2.2rem;
  box-sizing: border-box;
  background-color: #ffffff;
}

/* [접근성 고도화] 가상요소 백그라운드를 차단하고 헤더 내부 배치 밸런싱 */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.card-icon-img {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}
.card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-header .title-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-header .title-info .cate-label {
  display: block;
  font-size: 1.5rem;
  color: var(--color-main-3);
  font-weight: 700;
}
.card-header .title-info .sub-en {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin: 0;
  color:#333;
}
.card-header .title-info .card-tit {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color:#5236ff;
}
.card-body {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* ========================================================
    Sub01_Tab02
======================================================== */
.sub-buttonlist .cont { display: block; }

.tab_control_list {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 4rem;
  list-style: none;
  padding: 0;
}
.tab_control_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border: 0.1rem solid var(--gray2);
  border-radius: 1rem;
  box-sizing: border-box;
  transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease;
  position: relative;
}
.tab_control_item:hover {
  border: 0.1rem solid var(--color-main-2);
  box-shadow: 0rem 0rem 0.5rem 0.1rem rgb(134 115 255 / 46%);
}
.tab_control_item.active {
  border: 0.1rem solid var(--color-main-2);
  box-shadow: 0rem 0rem 0.5rem 0.1rem rgb(134 115 255 / 46%);
  background: var(--bg-theme2);
}
.tab_control_btn {
  flex: 1;
  display: flex;
  width: 100%;
  background: none;
  border: none;
  padding: 2.4rem 2.4rem 1.6rem 2.4rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}
.card-inner-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tab_control_btn .date {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.tab_control_btn .tit {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: var(--color-main-3);
}
.tab_control_btn .bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tab_control_btn .bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: var(--gray2);
  transition: background-color 0.2s ease;
}
.tab_control_item.active .tab_control_btn .bottom::before {
  background-color: var(--color-main-2);
}
.tab_control_btn .sub-pitch {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  padding-top: 1.2rem;
}
.tab_control_btn .txt_list span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.tab_control_btn .txt_list span:last-child {
  margin-bottom: 0;
}
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  background-color: var(--gray1);
  border: none;
  border-top: 0.1rem solid var(--gray2);
  border-radius: 0 0 1rem 1rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.download-btn:hover {
  background-color: var(--color-main-1);
  color: #ffffff;
}
.tab_control_item.active .download-btn {
  background-color: var(--color-main-1);
  color: #ffffff;
}

.tab_control_item.active:focus .tab_control_btn {
  outline: none !important;
}
.tab_control_item.active .download-btn.is-focused {
  outline: 0.2rem solid var(--color-main-2) !important;
  outline-offset: -3px;
  border-radius: 0.4rem;
}

.cont_img {
  width: 100%;
}
.cont_img.mo {
  display: none;
}
/* ========================================================
    Sub01_Tab03
  ======================================================== */
.sub-policy-center section {
  margin-bottom: 4rem;
}
.sub-policy-center section .spc-section-title {
  margin-bottom: 2rem;
}
.sub-policy-center .body-content-tit h3 {
  font-size: 3.2rem;
  margin: 2rem 0;
  padding-left: 3rem;
  position: relative;
}
.sub-policy-center .body-content-tit h3::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.6rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 5px solid var(--color-main-2);
  border-radius: 0.2rem;
}
.sub-policy-center section .spc-section-title h4 {
  font-size: 2.8rem;
  font-weight: 800;
}
/* 목적 영역 */
.sub-policy-center .spc-purpose-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: var(--bg);
  padding: 3rem 4rem;
  border-radius: 0.2rem;
  border: 0.1rem solid var(--gray2);
}
.sub-policy-center .spc-purpose-box p {
  font-size: 2.0rem;
  line-height: 1.4;
  word-break: keep-all;
}
.sub-policy-center .spc-purpose-box-logo img {
  max-height: 4rem;
  object-fit: contain;
}
.spc-purpose-box-text {
  flex: 3;
}
.spc-purpose-box-logo {
  flex: 1;
}

/* 지원대상 및 내용 영역 */
.spc-info-group2:first-child {
  margin-bottom: 8rem;
}
.sub-policy-center .spc-info-group-container {
  display: flex;
  gap: 1.5rem;
  background-color: #ffffff;
}
.sub-policy-center .spc-info-group-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 0.1rem solid var(--gray2);
  border-radius: 2px;
  overflow: hidden;
}
.sub-policy-center .spc-info-group-label {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  background: var(--color-main-1);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.sub-policy-center .spc-info-group-content {
  flex: 1;
}

.sub-policy-center .spc-info-group-content .preContent img{ margin:0 auto; }

/* 불릿 도트 리스트 */
.sub-policy-center .spc-info-group-content {
  padding: 1.5rem;
}
.sub-policy-center .spc-bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  list-style: none;
}
.sub-policy-center .spc-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.75rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #666;
  border-radius: 50%;
}
.sub-policy-center .spc-bullet-list li:last-child {
  margin-bottom: 0;
}

/* 특수 텍스트 서식 */
.sub-policy-center .spc-alert-text {
  display: block;
  margin-top: 2ch;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text_alert);
}
.sub-policy-center .spc-notice-box {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: #666;
  background-color: #f9f9f9;
  padding: 1.2rem 2rem;
  border-radius: 0.4rem;
  border-left: 0.3rem solid #999;
}

/* 운영현황 테이블 영역 */
.sub-policy-center .spc-data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.2rem solid #333;
}
.sub-policy-center .spc-data-table th {
  background-color: var(--bg-theme2);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem;
  border-bottom: 1px solid var(--gray2);
  border-right: 1px solid var(--gray2);
}
.sub-policy-center .spc-data-table th span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.2rem;
}
.sub-policy-center .spc-data-table th:last-child {
  border-right: none;
}
.sub-policy-center .spc-data-table td {
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.4;
  border-bottom: 0.1rem solid var(--gray2);
  border-right: 0.1rem solid var(--gray2);
  text-align: center;
  vertical-align: middle;
}
.sub-policy-center .spc-data-table td:last-child {
  border-right: none;
}
.sub-policy-center .spc-data-table tbody td:nth-child(2) {
  text-align: left;
}
.sub-policy-center .spc-data-table .table-row-th {
  font-size: 1.6rem;
}
.sub-policy-center .spc-data-table-block-text {
  display: block;
}
.sub-policy-center .spc-data-table-link {
  color: var(--color-main-3);
  text-decoration: none;
  display: block;
}
.sub-policy-center .spc-data-table-link:hover {
  text-decoration: underline;
}
.sub-policy-center .spc-data-table-btn-modal {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.sub-policy-center .spc-data-table-btn-modal:hover {
  color: var(--color-main-3);
}
.spc-data-table-m-title {
  display: none !important;
}

/* 특화 클러스터 로드맵 영역 */
.sub-policy-center .spc-roadmap-group-visual {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border: 0.1rem solid #e1e4e9;
  padding: 4rem 2rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
}
.sub-policy-center .spc-roadmap-group-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.sub-policy-center .spc-roadmap-group-img--mo {
  display: none !important;
}

/* 블록체인 특화 클러스터 조성 area */
.sub-policy-center .spc-contact-container {
  display: flex;
  gap: 2rem;
  width: 100%;
}
.sub-policy-center .spc-contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}
.sub-policy-center .spc-contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sub-policy-center .spc-contact-card-row {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.sub-policy-center .spc-contact-card-label {
  width: 10rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #333333;
  flex-shrink: 0;
  position: relative;
}
/* 기획 화면 디자인에 맞춘 세련된 세로 구분 바 처리 */
.sub-policy-center .spc-contact-card-label::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 1.2rem;
  background-color: var(--gray2);
}
.sub-policy-center .spc-contact-card-value {
  font-size: 1.6rem;
  flex: 1;
  word-break: keep-all;
}

/* ========================================================
  Sub01_Tab03 -modal
======================================================== */
.main-layer-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #fff;
}

.main-layer-popup .popup-container {
  width: 500px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
}

.main-layer-popup .popup-contents {
  width: 100%;
  background-color: #fff;
}

/* 기존 컨테이너 스크롤 박스는 단순 래퍼 역할로 변경 (스크롤 제거) */
.main-layer-popup .popup-scroll-box {
  max-height: none;
  overflow-y: visible;
  box-sizing: border-box;
}

/* 타이틀 영역 (상단 고정) */
.popup-contents .tit {
  padding: 2rem;
  border-bottom: 1px solid #d9d9d9;
  font-size: 2.3rem;
  font-weight: 800;
  word-break: keep-all;
}

.popup-contents .inner {
  padding: 2rem;
}

/* 상단 정보 텍스트 영역 (상단 고정) */
.popup-contents .cont_top .cont_tit {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  word-break: keep-all;
}

.popup-contents .cont_top .page_info > span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #666;
}

/* 테이블 박스 단독 스크롤 구현 */
.popup-contents .table_box {
  max-height: 50vh;
  overflow-y: auto;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

/*스크롤바 커스텀*/
.popup-contents .table_box::-webkit-scrollbar {
  width:5px;
}
.popup-contents .table_box::-webkit-scrollbar-thumb {
  background-color: #cacaca;
  border-radius: 4px;
}
.popup-contents .table_box::-webkit-scrollbar-track {
  background-color: #e9e9e9;
}

/* 테이블 영역 레이아웃 상세 바인딩 */
.popup-contents .moveinEnterTable {
  width: 100%;
  border-top: 2px solid #111;
  border-collapse: collapse; /
}

.popup-contents .moveinEnterTable thead tr th {
  padding: 1.2rem 0.5rem;
  text-align: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #858585;
  font-size: 1.6rem;
  color: #111;
  font-weight: 700;
  word-break: keep-all;
  background: #f0eeff;
}

.popup-contents .moveinEnterTable tbody tr td {
  padding: 12px 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  word-break: keep-all;
  text-align: center;
}

.popup-contents .moveinEnterTable thead tr th:last-child,
.popup-contents .moveinEnterTable tbody tr td:last-child {
  border-right: none;
}

/* 팝업 하단 닫기 컨트롤 영역 */
.main-layer-popup .popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2d3748;
  padding: 12px 20px;
  box-sizing: border-box;
}

.main-layer-popup .btn-popup-close {
  background: #4a5568;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 0.6rem;
  transition: background 0.2s ease;
}

.main-layer-popup .btn-popup-close:hover {
  background-color: #718096;
}

.main-layer-popup .btn-popup-close:focus{
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.video-card-wrap .videoitem .videoitem-alink:focus-visible {

}

/* 암전 레이어 */
.popup-dim-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

/* ========================================================
    Sub01_Tab04
======================================================== */

.spc-bullet-list.abel-top-explanation {
  margin-bottom: 2rem;
}
.spc-purpose-box.diagram-chart-box {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.diagram-chart-image-wrap img {
  max-width: 100rem;
  height: auto;
  margin: 0;
}
.abel-status-summary {
  margin-bottom: 1rem;
}
.abel-status-summary strong {
  font-size: 2rem;
}
.abel-composition-section .diagram-graphic-side img {
  max-width: 100rem;
  margin-bottom: 0;
}
.abel-slider-section {
  margin-top: 4rem;
}
.abel-slider-section .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e2e8f5;
}
/* > ABLE 현장 사진 Slick 슬라이더 컴포넌트 튜닝 (sub.css) */
.abel-slider-section {
  margin-top: 4rem;
  width: 100%;
}
.js-slick-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.js-slick-slider .gallery-slide-item {
  padding: 0 8px;
  box-sizing: border-box;
}
.js-slick-slider .gallery-slide-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--gray2);
  display: block;
}
.slick-btn-prev,
.slick-btn-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background-color: #ffffff;
  border: 1px solid var(--gray2);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  cursor: pointer;
  text-indent: -9999px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: block !important;
  transition:
          background-color 0.25s ease,
          border-color 0.25s ease;
}
.slick-btn-prev {
  left: -2rem !important;
}
.slick-btn-next {
  right: -2rem !important;
}
/* 꺾쇠 화살표 모양 생성 가상 요소 */
.slick-btn-prev::before,
.slick-btn-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-left: 2px solid #333333;
}
.slick-btn-prev::before {
  transform: translate(-30%, -50%) rotate(-45deg);
}
.slick-btn-next::before {
  transform: translate(-70%, -50%) rotate(135deg);
}
.slick-btn-prev:hover,
.slick-btn-next:hover,
.slick-btn-prev:focus-visible,
.slick-btn-next:focus-visible {
  border-color: var(--color-main-1);
  background-color: var(--color-main-1);
}
.slick-btn-prev:hover::before,
.slick-btn-next:hover::before,
.slick-btn-prev:focus-visible::before,
.slick-btn-next:focus-visible::before {
  border-color: #ffffff;
}

/* ========================================================
    Sub01_Tab05
  ======================================================== */
.forum-greeting-content {
  margin: 6rem 0;
  padding: 2rem;
}
.forum-greeting-content .greeting-top {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-main-1);
  margin-bottom: 2.5rem;
  word-break: keep-all;
}
.forum-greeting-content .greeting-middle {
  font-size: 1.6rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  word-break: keep-all;
}
.forum-greeting-content .greeting-bottom {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  margin-top: 4rem;
  display: flex;
  gap: 5rem;
  justify-content: end;
  align-items: center;
}
.forum-greeting-content .greeting-bottom::after {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background: url(/images/kisa/sub/forum_img_bg.png) no-repeat center center;
  background-size: contain;
}
.spc-purpose-box.forum-chart-box {
  width: 100%;
  background: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.forum-chart-image-wrap img {
  max-width: 100rem;
  height: auto;
  margin: 0;
}
.forum-bold-lead {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.forum-role-bold {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-main-1);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.sub-policy-center .spc-info-group-container.forum-role-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ========================================================
    Sub02_Tab01
======================================================== */
.sub-case.sub-policy-center .spc-purpose-box {
  margin-bottom: 2rem;
}
.sub-case.sub-policy-center .spc-purpose-box-logo img {
  max-height: unset;
}
.sub-case.sub-policy-center section {
  margin-bottom: 2rem;
}
.sub-policy-center .spc-bullet {
  font-size: 1.6rem;
}
.sub-case .spc-info-group-column:first-child {
  width: 35rem;
  height: auto;
  flex: none;
}
.sub-case .spc-info-group-column:first-child .cont {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-case .spc-info-group-column .explain_icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 3rem 0;
}
.sub-case .spc-info-group-column .explain_icon_wrap .explain_ic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sub-case
.spc-info-group-column
.explain_icon_wrap
.explain_ic
.explain_ic_tBox
.explain_ic_tit {
  font-size: 1.8rem;
  font-weight: 700;
}
.sub-case
.spc-info-group-column
.explain_icon_wrap
.explain_ic
.explain_ic_tBox
.cases_count {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-main-3);
  margin-left: 0.5rem;
}
.sub-case
.spc-info-group-column
.explain_icon_wrap
.explain_ic
.explain_ic_tBox
.Enter {
  font-size: 1.6rem;
  color: var(--color-main-3);
}

/* 영상도서관 상세(liveRfrncDetail) - 유튜브 iframe 16:9 반응형
   접근성 개편으로 .subject_wrap 구조가 사라져 기존 실서버 규칙이 적용되지 않으므로
   새 마크업(.subject_content > .video_wrap > iframe)에 맞춰 동일 비율로 재정의 */
.subject_content .video_wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.subject_content .video_wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 태그검색 필터 폼 영역 */
.sub-case #listFrm {
  width: 100%;
}
.sub-case .accordion_btn {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 1.6rem;
}
.sub-case .accordion_btn::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 1rem;
  margin-bottom: 0.8rem;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(2px) rotate(135deg);
  transition: transform 0.3s ease;
}
.sub-case .accordion_btn.active::after {
  transform: translateY(4px) rotate(-45deg);
}
.sub-case .accordion_cont {
  display: none;
}
.sub-case .accordion_cont.show {
  display: block;
}
.sub-case .checkbox_list {
  border-top: 1px solid var(--gray2);
}

.sub-case .checkbox_list > li{
  display:flex;
  align-items: flex-start;
  padding: 2rem;
}

.sub-case .checkbox_list > li:not(:last-child){
  border-bottom:1px solid #ddd;
}


.sub-case .checkbox_list > li > p {
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  min-width:200px;
}
.sub-case .checkbox_list > li > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  flex-grow: 1;
}


.sub-case .check_box {
  min-width: 5rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
}
.sub-case .check_box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--gray2);
  border-radius: 0.1rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  margin: 0;
  margin-right: 0.2rem;
  outline: none;
}
.sub-case .check_box input[type="checkbox"]:checked {
  background-color: var(--color-main-3);
  border-color: var(--color-main-3);
}
.sub-case .check_box input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.1rem;
  width: 0.5rem;
  height: 0.9rem;
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}

.sub-case .search_box {
  display: flex;
  margin-top: 2rem;
  gap: 0.8rem;
}
.sub-case .search-box-btnwrap {
  display: flex;
  gap: 0.8rem;
}
.sub-case .search_input {
  flex-grow: 1;
}
.sub-case .search_input input[type="search"] {
  width: 100%;
  height: 4.8rem;
  border: 1px solid var(--gray2);
  padding: 0 1.6rem;
  font-size: 1.6rem;
  outline: none;
  background-color: #fff;
}
.sub-case .search_input input[type="search"]:focus {
  border-color: var(--color-main-1);
}
.sub-case .search_input input[type="search"]::placeholder {
  color: #707070;
  font-weight: 300;
}
.sub-case .btn_search,
.sub-case .btn_reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 4.8rem;
  padding: 0 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.sub-case .btn_search:hover,
.sub-case .btn_reset:hover {
  opacity: 0.85;
}
.sub-case .btn_search {
  background-color: var(--color-main-1);
}
.sub-case .btn_search::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("/images/kisa/sub/icon_search.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}
.sub-case .btn_reset {
  background-color: var(--sub);
}
.sub-case .btn_reset::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("/images/kisa/sub/icon_reset.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

/* 상단 총 건수 및 제안/수행 범례 인디케이터 */
.sub-case .card_wrap_inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--text-h);
}
.sub-case .card_category {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -4%;
}
.sub-case .card_category .total {
  font-size: 2rem;
  font-weight: 800;
}

/* 카드 swiper 영역 */
.sub-case .wrapper {
  position: relative;
  padding: 0;
  margin-top: 1.5rem;
  align-items: stretch;
}
.sub-case .swiper-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.sub-case .swiper-slide {
  height: auto;
}
.sub-case .swiper-button-next,
.sub-case .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-5rem);
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid var(--gray2);
  border-radius: 50% !important;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.sub-case .swiper-button-prev {
  left: -2rem;
}
.sub-case .swiper-button-next {
  right: -2rem;
}
.sub-case .swiper-button-next:hover,
.sub-case .swiper-button-prev:hover {
  background-color: #001232;
  border-color: #001232;
}
.sub-case .swiper-button-next::after,
.sub-case .swiper-button-prev::after {
  display: none;
}
/* 웹 접근성 표준 컴플라이언스를 충족하는 화살표 내부 가상 Border 대칭형 아이콘 생성 */
.sub-case .swiper-button-prev::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #64748b;
  border-left: 2px solid #64748b;
  transform: rotate(-45deg);
  margin-left: 0.3rem;
}

.sub-case .swiper-button-next::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #64748b;
  border-right: 2px solid #64748b;
  transform: rotate(45deg);
  margin-right: 0.3rem;
}

/* 호버 시 화살표 색상 화이트 반전 */
.sub-case .swiper-button-prev:hover::before {
  border-color: #fff;
}
.sub-case .swiper-button-next:hover::before {
  border-color: #fff;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.sub-case .swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 0 1rem;
  letter-spacing: 0.05em;
  width: 100%;
  border-bottom: 1px solid var(--gray3);
}
.sub-case .card_wrap_inner_bullet {
  display: flex;
  gap: 2.4rem;
}
.sub-case .card_wrap_inner_bullet .dot {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.sub-case .card_wrap_inner_bullet .dot::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
  border-radius: 0.2rem;
}
.sub-case .card_wrap_inner_bullet .dot1::before {
  background:#f3fff9;
  border-left: 3px solid #129e56;
}
.sub-case .card_wrap_inner_bullet .dot2::before {
  background: #fcf2ff;
  border-left: 3px solid #b62fd9;
}
.sub-case .card_wrap.mt25 {
  margin: 8rem 0 5rem;
}
.sub-case .card_wrap_inner_title {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1rem;
  margin-top:2rem;
}
.sub-case .card_tit {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -4%;
}
.sub-case .page_info {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.2rem;
}
.sub-case .page_info .total {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0.2rem;
}
.sub-case .card_one {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--gray2);
  border-radius: 0.4rem;
  padding: 2.8rem 2.4rem;
  height: 100%;
  transition:
          border-color 0.2s ease,
          background-color 0.2s ease;
  cursor: pointer;
}
.sub-case .card_one:focus {
  z-index: 100;
}
.sub-case .card_one:hover {
  background: var(--bg);
  border-color: var(--gray3);
}
.sub-case .card_one .top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.sub-case .card_one .top li {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  background-color: var(--bg);
  border: 1px solid var(--gray2);
  border-radius: 2rem;
}
.sub-case .card_one .top li.blue {
  color: #016292;
  background-color: #f0f9ff;
  border-color: #bae6fd;
}
.sub-case .card_one .top li.green {
  color: #04712c;
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}
.sub-case .card_one .top li.white {
  background-color: #fff;
  border: 1px solid var(--gray2);
}
.sub-case .card_one .tit.hand_shape {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 8rem;
}
.sub-case .card_one:hover .tit.hand_shape {
  color: #001232;
  text-decoration: underline;
}
.sub-case .card_one .company {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.sub-case .card_one .white_space_1,
.sub-case .card_one .white_space_2 {
  font-size: 1.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 4.7rem;
  line-height: 1.4;
}
.sub-case .card_one .white_space_1 {
  background-color: var(--bg-theme2);
  border-left: 5px solid #b3a8ff;
  font-weight: 500;
}
.sub-case .card_one .white_space_2 {
  background-color: #f8fafc;
  border-left: 5px solid var(--gray3);
  font-weight: 500;
}
.sub-case .card_one .white_space_2 span:empty::before {
  content: "-";
  color: var(--sub);
}
/* swiper 하단 해시태그 구역 */
.sub-case .card_one .bottom .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.sub-case .card_one .bottom .tag span {
  font-size: 1.4rem;
  color: var(--sub);
}

/* 크로스브라우징 반응형 중단점 규격 */
@media (max-width: 1200px) {
  .sub-title-box {
    flex-direction: column;
  }
  .sub-h2 {
    margin: 4rem auto 2rem;
  }
  .title-util-group {
    position: relative;
    right: auto;
    bottom: 0;
  }
  /* ========================================================
    Sub01_Tab01
  ======================================================== */
  .diagram-flex-box {
    flex-direction: column;
  }
  .diagram-graphic-side img {
    max-width: 80rem;
    margin-bottom: 2rem;
  }
  .diagram-cards-box {
    gap: 1.5rem;
  }
  .desc-card {
    width: 100%;
  }

  /* ========================================================
    Sub01_Tab02
  ======================================================== */
  .tab_control_list {
    flex-direction: column;
  }
  .strategy-grid-3,
  .task-compare-container {
    flex-direction: column;
  }

  /* ========================================================
    Sub01_Tab03
  ======================================================== */
  .sub-policy-center .spc-purpose-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2.5rem;
    gap: 1.5rem;
  }
  .sub-policy-center .spc-purpose-box p {
    font-size: 1.7rem;
  }
  .sub-policy-center .spc-info-group-column {
    gap: 0.8rem;
  }
  .sub-policy-center .spc-info-group-label {
    width: 100%;
  }
  .sub-policy-center .spc-info-group-container {
    gap: 1rem;
  }
  .sub-policy-center .spc-info-group-content {
    padding: 1.2rem;
  }

  .sub-case .checkbox_list > li{
    flex-direction: column;
    gap: 1rem;
    padding:1rem 0 2rem 0;
  }

  /* 테이블 영역 */
  .sub-policy-center .spc-data-table th,
  .sub-policy-center .spc-data-table td {
    padding: 1.2rem 0.6rem;
  }

  /* ========================================================
    Sub01_Tab04
  ======================================================== */
  .spc-purpose-box.diagram-chart-box {
    align-items: center;
  }

  /* ========================================================
    Sub01_Tab05
  ======================================================== */
  .forum-chart-image-wrap img {
    max-width: 100%;
  }

  /* ========================================================
    Sub02_Tab01
  ======================================================== */
  .sub-case .card_wrap.mt25 {
    margin: 6rem 0 4rem;
  }
}
@media (max-width: 1024px){

  /* ========================================================
      Sub01_Tab02(모바일 column변화)
    ======================================================== */
  .sub-buttonlist .cont {
    display: flex;
    flex-direction: column;
    margin-bottom:4rem;
  }

  .sub-buttonlist .cont .tab_control_list {
    display: contents;
  }
  .sub-buttonlist .cont .tab_control_list li:not(:last-child){
    margin-bottom:2rem;
  }

  .sub-buttonlist .cont .tab_control_list li.active{
    margin-bottom:0rem;
  }

  .sub-buttonlist .cont .tab_control_list .tab_control_item[data-tab="tabContent1"] { order: 1; }
  .sub-buttonlist .cont #tabContent1 { order: 2; }

  .sub-buttonlist .cont .tab_control_list .tab_control_item[data-tab="tabContent2"] { order: 3; }
  .sub-buttonlist .cont #tabContent2 { order: 4; }

  .sub-buttonlist .cont .tab_control_list .tab_control_item[data-tab="tabContent3"] { order: 5; }
  .sub-buttonlist .cont #tabContent3 { order: 6; }

  .sub-buttonlist .cont .tab_panel {
    display: none;
  }

  .sub-buttonlist .cont .tab_panel.active {
    display: block !important;
    width: 100%;
    margin-top: 12px;    /* 버튼과의 간격 */
    margin-bottom: 24px; /* 다음 버튼과의 간격 */
  }

  .sub-buttonlist .cont .tab_panel.active[hidden] {
    display: block !important;
  }

}

@media (max-width: 768px) {
  .tab_list {
    flex-direction: column;
    gap: 0.6rem;
  }
  .tab_list.calc2 .tab {
    width: 100%;
    flex: auto;
  }

  /* ========================================================
    Sub01_Tab01
  ======================================================== */
  .cont_img {
    display: none;
  }
  .cont_img.mo {
    display: block;
    width: 100%;
    height: auto;
  }

  /* [예외] 진단도구 Depth 다이어그램(diagnosticUrl)은 모바일 전용(.mo) 이미지가 없는
     단일 이미지라, 위 일괄 숨김을 적용하면 768px 이하에서 이미지가 통째로 사라진다.
     해당 영역만 모바일에서도 계속 노출. */
  .diagram-graphic-side .cont_img {
    display: block;
    width: 100%;
    height: auto;
  }

  .summary-text {
    font-size: 1.8rem;
  }
  .effect-container {
    flex-direction: column;
  }
  .desc-card {
    padding: 1.5rem;
  }
  .effect-badge {
    width: 100%;
    padding: 1.2rem 0;
  }
  .effect-desc {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
  .services-grid-layout {
    grid-template-columns: 1fr;
  }
  .card-icon-img {
    width: 6rem;
    height: 6rem;
  }

  .btn-ipfs-link{
    width:80%;
    background:#fff;
  }

  /* ========================================================
    Sub01_Tab03
  ======================================================== */
  .sub-policy-center .spc-roadmap-group-img--pc {
    display: none !important;
  }
  .sub-policy-center .spc-roadmap-group-img--mo {
    display: inline-block !important;
  }
  .sub-policy-center .spc-purpose-box {
    padding: 2.5rem 2rem;
  }
  .spc-info-group-container {
    flex-direction: column;
  }

  /* 테이블 영역 */
  .sub-policy-center .spc-data-table {
    display: block;
    border-top: none;
  }

  .sub-policy-center .spc-data-table thead {
    display: none;
  }

  .sub-policy-center .spc-data-table tbody,
  .sub-policy-center .spc-data-table tr {
    display: block;
    width: 100%;
  }
  .sub-policy-center .spc-data-table tr {
    border-top: 0.1rem solid #333;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  .sub-policy-center .spc-data-table tr:last-child {
    margin-bottom: 0;
    border-bottom: 0.1rem solid #e2e8f0;
  }
  .sub-policy-center .spc-data-table td {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.5rem;
    border-bottom: 0.1rem solid #e2e8f0;
    border-right: none;
    width: 100%;
    box-sizing: border-box;
  }
  .sub-policy-center .spc-data-table td:last-child {
    border-bottom: none;
  }
  .sub-policy-center .spc-data-table tbody th {
    display: flex;
    background-color: var(--bg-theme2);
    margin: -1.5rem -1.5rem 0.5rem -1.5rem;
    padding: 1.5rem;
    font-size: 1.7rem;
    border-bottom: 0.1rem solid var(--gray2);
    width: calc(100% + 3rem);
  }
  .sub-policy-center .spc-data-table .table-row-th {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-main-1);
    border-right: 0;
  }
  .spc-data-table-m-title {
    display: inline-block !important;
    flex-shrink: 0;
    width: 10rem;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .spc-data-table-m-content {
    display: block;
    flex: 1;
    word-break: keep-all;
  }
  .spc-data-table-m-content p {
    margin: 0 0 0.4rem 0;
  }
  .sub-policy-center .spc-data-table-link {
    display: inline-block;
  }
  .sub-policy-center .spc-data-table-btn-modal {
    font-size: 1.6rem;
    text-align: left;
  }
  .sub-policy-center .spc-roadmap-group-img--pc {
    display: none !important;
  }
  .sub-policy-center .spc-roadmap-group-img--mo {
    display: inline-block !important;
  }
  .sub-policy-center .spc-roadmap-group-visual {
    padding: 2rem 1rem;
  }
  .spc-data-table-m-title > span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .spc-info-group2:first-child {
    margin-bottom: 6rem;
  }

  /* 블록체인 특화 클러스터 조성 area */
  .spc-tab2-area {
    margin-bottom: 6rem;
  }

  /* ========================================================
    Sub01_Tab04
  ======================================================== */
  .diagram-chart-image-wrap img {
    max-width: 50rem;
  }

  /* ========================================================
    Sub01_Tab05
  ======================================================== */
  .forum-greeting-content {
    margin: 3rem 0;
    padding: 0;
  }
  .forum-greeting-content .greeting-top {
    font-size: 2.4rem;
  }
  .forum-greeting-content .greeting-bottom {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .sub-policy-center .spc-info-group-container.forum-role-container {
    grid-template-columns: repeat(1, 1fr);
  }

  /* ========================================================
    Sub02_Tab01
  ======================================================== */
  .sub-case .spc-info-group-column:first-child {
    width: 100%;
  }
  .sub-case .search_box {
    flex-direction: column;
  }
  .sub-case .btn_search,
  .sub-case .btn_reset {
    flex: 1;
  }
  .sub-case .card_wrap.mt25 {
    margin: 4rem 0;
  }
}


/* ========================================================
  sub02_tabl01
======================================================== */
.businessList-item:not(:first-child){
  border-top:1px solid #d9d9d9;
  margin-top:3rem;
}

.businessList-item:last-child{
  margin-bottom:3rem;
}

.detail-card-type{
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
}

.detail-card-type .slick-list {
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0 -5px; /* ★ 중요: 아래 slick-slide의 padding 값과 반드시 일치시켜야 양 끝이 맞습니다. */
  padding: 5px 0 5rem;
  width: auto;
}

.detail-card-type .slick-slide {
  display: flex;
  justify-content: flex-start;
  height: auto;
  padding: 0 5px;
  box-sizing: border-box;
}

.detail-card-type .slick-slide > div{ width:100%; }

.detail-card-type .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start !important;
  align-items: stretch !important;
  width: 100%;
}

/* ★ 카드가 1~2개뿐이라 부족할 때만 (is-minimal) 인라인 너비를 제압하고 왼쪽 정렬 */
.detail-card-type.is-minimal .slick-track {
  width: 100% !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

/* 카드가 부족할 때도 개별 카드가 거대해지지 않고 딱 1/3(33.333%) 크기 고정 */
.detail-card-type.is-minimal .slick-slide {
  width: 33.3333% !important;
  max-width: 33.3333% !important;
  flex-shrink: 0 !important;
}


.detail-card-type > li {
  display: flex;
  width: 100%;
  min-width: 0;
}

/* ========================================================
   🎯 [Slick Dots] 숫자형 페이지 네이션 (1/3 형식) 스타일링
======================================================== */
/* 1. 도트 래퍼 중앙 배치 */
.detail-card-type .slick-dots,
.video-card-item .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index:1;
}

/* 2. ❌ 비활성화 상태의 숫자 리스트들은 물리적으로 보이지 않게 차단 */
.detail-card-type .slick-dots li,
.video-card-item .slick-dots li {
  display: none;
}

/* 3. 🌟 현재 포커싱 및 활성화된(.slick-active) 페이지 넘버만 화면 노출 */
.detail-card-type .slick-dots li.slick-active,
.video-card-item .slick-dots li.slick-active {
  display: inline-flex;
  align-items: center;
}

/* 4. 활성화된 현재 숫자 디자인 설정 */
.detail-card-type .slick-dots li.slick-active button.num-dot,
.video-card-item .slick-dots li.slick-active button.num-dot {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  font-weight:800;
  color: #5236ff; /* 활성 텍스트 색상 */
  padding: 0;
  line-height: 1; /* "/ N" 와 높이(베이스라인) 정렬 */
  cursor: pointer;
}

/* 5. 🔥 [완벽 연동] 스크립트가 주입한 총 개수 속성을 가져와 슬래시 뒤에 자동 합성 */
.detail-card-type .slick-dots li.slick-active::after,
.video-card-item .slick-dots li.slick-active::after {
  content: " / " attr(data-total-pages);
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  margin-left: 4px;
  line-height: 1; /* 숫자 버튼과 높이 정렬 */
  white-space: nowrap;
}

/* 개별 카드 내부 링크 및 컨텐츠 정렬 */
.card-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 1px solid #dddddd;
  padding:2rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

@media (hover: hover) {
  .card-link:hover {
    border: 1px solid #8673ff;
    box-shadow: 0px 0px 5px 1px rgb(134 115 255 / 46%);
  }
  .card-link:hover .post-title {
    color: var(--color-main-3);
  }
}

.card-link:focus-visible {
  outline: 2px solid #8673ff;
  outline-offset: -2px;
}

/*카드 벳지*/
.card-badge-wrap{
  display:flex;
  flex-flow:row;
  gap:0.3rem;
}

.card-badge-wrap .badge{
  padding: 0.4rem 1.2rem;
  font-size: 1.4rem;
  border-radius:2rem;
  font-weight:700;
}

.card-badge-wrap .badge.date{
  background: #e5e5e5;
  color:#333;
}

.card-badge-wrap .badge.public{
  background:#f0f9ff;
  border:1px solid #bae6fd;
  color:#016292;
}

.card-badge-wrap .badge.basic{
  background:#fff;
  border:1px solid #ddd;
  color:#333;
}

.card-badge-wrap .badge.private{
  background:#f3fff7;
  border:1px solid #bbf7d0;
  color:#04712c;
}

.card-badge-wrap .badge.tech{
  background:#ffeef0;
  border:1px solid #e06777;
  color:#e06777;
}

/*카드 타이틀*/
.card-link .post-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  min-height:6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s ease;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  margin:1rem 0 2rem 0;
}

/*카드 내 기관구분*/
.detail-card-type .company {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 2rem;
  width:100%;
  border-bottom:1px solid #d9d9d9;
  min-height:170px;
}
.detail-card-type .white_space_1,
.detail-card-type .white_space_2 {
  padding:1.2rem;
  border-radius: 0.3rem;
  width:100%;
  box-sizing: border-box;
  min-height:70px;
}

.detail-card-type .white_space_1 span,
.detail-card-type .white_space_2 span{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.4;
  word-break: break-all;
}

.detail-card-type .white_space_1 {
  border-left: 5px solid #129e56;
  background:#f3fff9;
  font-weight: 500;
}
.detail-card-type .white_space_2 {
  background-color: #fcf2ff;
  border-left: 5px solid #b62fd9;
  font-weight: 500;
}

/*카드 태그*/
.card-tags {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  height: auto;
  word-break: keep-all;
}

.card-link .post-date {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
  font-weight: 400;
  color: #666;
}


/*카드섹션 슬릭 화살표 커스텀*/
.detail-card-type .slick-arrow, .video-card-item .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width:40px;
  height:40px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

/* 화살표 내부 모양 공통 생성 (Pseudo-element 활용) */
.detail-card-type .slick-arrow::after, .video-card-item .slick-arrow::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  display: inline-block;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .detail-card-type .slick-arrow:hover:not(.slick-disabled), .video-card-item .slick-arrow:hover:not(.slick-disabled){
    background-color: #001232;
    border-color: #001232;
  }
  .detail-card-type .slick-arrow:hover:not(.slick-disabled)::after, .video-card-item .slick-arrow:hover:not(.slick-disabled)::after{
    border-color: #ffffff;
  }
}

/* >> 왼쪽 버튼 (Previous) 개별 스타일 */
.detail-card-type .slick-prev, .video-card-item .slick-prev{ left: -20px; }
/* >> 왼쪽을 바라보도록 화살표 회전 */
.detail-card-type .slick-prev::after, .video-card-item .slick-prev::after{ transform: translate(-30%, -50%) rotate(-135deg); }
/* >> 오른쪽 버튼 (Next) 개별 스타일 */
.detail-card-type .slick-next, .video-card-item .slick-next{ right: -20px; }
/* >> 오른쪽을 바라보도록 화살표 회전 */
.detail-card-type .slick-next::after, .video-card-item .slick-next::after{ transform: translate(-70%, -50%) rotate(45deg); }

/* >> [핵심 오퍼레이션] 비활성화 상태 (slick-disabled) 스타일 */
.detail-card-type .slick-arrow, .video-card-item .slick-arrow{ display: block !important; }
.detail-card-type .slick-arrow.slick-disabled, .video-card-item .slick-arrow.slick-disabled{
  background-color: #ffffff;
  border-color: #b3b3b3;
  cursor: not-allowed;
  box-shadow: none;
}

.detail-card-type .slick-arrow.slick-disabled::after,
.video-card-item .slick-arrow.slick-disabled::after{
  border-color: #aaaaaa; }


/* 2. 성과사례 Slick 슬라이더 좌우 화살표 포커스 */
.detail-card-type .slick-arrow:focus-visible, .video-card-item .slick-arrow:focus-visible{
  outline: none !important;
  border-color: #8673ff !important;
  box-shadow: 0 0 0 4px rgba(134, 115, 255, 0.3);
  background-color: #ffffff;
  z-index: 10;
}

.detail-card-type .slick-arrow.slick-disabled:focus-visible,
.video-card-item .slick-arrow.slick-disabled:focus-visible{
  outline: none !important;
  border-color: #8673ff !important;
  box-shadow: 0 0 0 4px rgba(134, 115, 255, 0.3);
  background-color: #ffffff;
  z-index: 10;
}

@media (max-width: 1200px) {
  .detail-card-type .slick-prev, .video-card-item .slick-prev{ left: -10px; }
  .detail-card-type .slick-next, .video-card-item .slick-next{ right: -10px; }
}
/* ========================================================
  Sub02_Tabl02
======================================================== */
.sub-technology-center .forum-bold-lead{ margin-bottom:0; }
.sub-case.sub-technology-center .spc-purpose-box-logo img{ max-width:250px; }


/* ========================================================
  Sub03-Tab01 > 요약
======================================================== */
.sub-Current-situation .spc-purpose-box p.forum-basic-lead{
  position: relative;
  font-size: 1.6rem;
  padding-left: 1rem;
  font-weight: 700;
}

.sub-Current-situation .spc-purpose-box p.forum-basic-lead::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #5236ff;
  border-radius: 100px;
  top: 10px;
  left: 0;
}

.sub-policy-center section.spc-purpose-box{ margin-bottom:2rem; }

.sub-Current-situation .survey-download-form{
  display:flex;
  flex-flow:row wrap;
  gap:1rem;
  margin-bottom:1rem;
}

.sub-Current-situation .serch-select .select_box select{ width:250px; max-width:300px; }
.sub-Current-situation .survey-download-form .btn-download{
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gray2);
  color: var(--color-main-3);
  position: relative;
  font-weight: 600;
  text-decoration: none;
}

.report-dashboard-container {
  width: 100%;
  box-sizing: border-box;
}

.report-dashboard-container .tit{
  width: 100%;
  text-align:center;
  font-size:2.8rem;
  font-weight:800;
}

.report-dashboard-container .sub_tit {
  width: 100%;
  text-align:center;
  font-size:2.0rem;
  margin-top:1rem;
}

.report-dashboard-container .sub_tit .point{
  font-weight:800;
  color: #5236ff;
}


.report-dashboard-container .report-dashboard-comment.right{
  width:100%;
  text-align:right;
  padding:0.5rem 0;
  color:#7b7b7b;
}

/* 이미지 반응형 기본 제어 */
.chart-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/*실태조사 통계데이터 01 영역 :: 2x2 격자 구조 레이아웃 배치 (PC 기준)*/
.report-dashboard-container.sec01 .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* 개별 섹션 아이템 상자 */
.report-dashboard-container.sec01 .dashboard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background:#fff;
  border:1px solid var(--gray1);
}
.report-dashboard-container.sec01 .dashboard-item.grayBg{ background:var(--bg); }


/* 타이틀 스타일 */
.chart-title {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
  color: #000;
  padding:3rem 0 1rem 0;
  text-align: center;
}

/* 이미지 래퍼 스타일 */
.report-dashboard-container.sec01 .chart-img-wrap {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}


/*실태조사 통계데이터 02 영역 :: 3x3 격자 구조 레이아웃 배치 (PC 기준)*/
.report-dashboard-container.sec02{ margin:8rem 0; }
.report-dashboard-container.sec02 .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
}

/* 개별 섹션 아이템 상자 */
.report-dashboard-container.sec02 .dashboard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.report-dashboard-container.sec02 .chart-img-wrap {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

/*실태조사 통계데이터 03 영역 :: 1x1 격자 구조 레이아웃 배치 (PC 기준)*/
.report-dashboard-container.sec03{ margin:8rem 0 1rem 0; }
.report-dashboard-container.sec03 .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

/* 개별 섹션 아이템 상자 */
.report-dashboard-container.sec03 .dashboard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.report-dashboard-container.sec03 .chart-img-wrap {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

/* > 태블릿 & 모바일 반응형 최적화 (@media 1024px 이하)  */
@media screen and (max-width: 1024px) {
  /* 태블릿과 모바일에서는 가로 폭 부족으로 1줄 배열 전환 */
  .report-dashboard-container.sec01 .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-dashboard-container.sec02{ margin:4rem 0; }
  .report-dashboard-container.sec02 .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 768px){
  .report-dashboard-container.sec01 .dashboard-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .report-dashboard-container.sec02 .dashboard-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ========================================================
  Sub03-Tab01 > 세부사항
======================================================== */
.stat-dashboard-wrap {
  display: grid;
  grid-template-columns:220px 210px 1fr;
  gap: 0;
  width: 100%;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  min-height: 600px;
}

/* [1] 대분류 영역 (좌측 열) */
.category-main-zone {
  border-right: 1px solid #e2e8f0;
  background-color: #f1f1f1;
}

.category-main-zone .tit {
  font-size: 2.0rem;
  margin: 2rem;
  font-weight: 800;
}

.tab-list-main { display: flex; flex-direction: column; }
.tab-list-main-mo, .tab-list-sub-mo { display: none; }

/* PC 전용 셀렉트 스타일링 */
.tab-main-btn {
  width: 100%;
  padding:15px 10px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  border-left:4px solid transparent;
  transition: all 0.2s ease;
}

.tab-main-btn.active {
  background-color: #fff;
  color: #111;
  font-weight: 700;
  border-left-color: #5c45ff; }

/* 모바일 전용 셀렉트 스타일링 */
.mo-stat-select {
  position:relative;
  width: 100%;
  padding: 12px 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  border:1px solid #d9d9d9;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  appearance: none;
  cursor: pointer;
}


/* [2] 상세분류 영역 (가운데 열) */
.category-sub-zone {
  border-right: 1px solid #e2e8f0;
  background-color: #fff;
}

.category-sub-zone .tit {
  font-size: 2.0rem;
  margin: 2rem;
  font-weight: 800;
}

.sub-panel { display: none; }
.sub-panel.active { display: block; }

.tab-list-sub { display: flex; flex-direction: column; }
.tab-sub-btn {
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  font-size: 1.5rem;
  font-weight:600;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  transition: all 0.2s ease;
}
.tab-sub-btn.active {
  color: #5c45ff;
  font-weight: 700;
  background-color: #f8f7ff;
}

/* [3] 테이블 데이터 영역 (우측 열 전체) */
.table-data-zone {
  padding:1.5rem;
  background-color: #fff;
  overflow: hidden;
}
.table-panel { display: none; }
.table-panel.active { display: block !important; }

/* 테이블 메타 바 (단위, 엑셀 다운로드 버튼) */
.table-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:1rem;
}
.unit-text { font-size: 1.4rem; color: #333; }
.btn-excel-download {
  padding: 6px;
  font-size: 1.4rem;
  color: #5540ec;
  border: 1px solid #6a58ff;
  text-decoration: none;
  background-color: #e8e5ff;
  border-radius: 4px;
  font-weight: 700;
}

/* 반응형 테이블 접근성 전용 가로 스크롤 상자 */
.table-responsive-scroll {
  width: 100%;
  overflow-x: auto;
  border-top:2px solid #333;
}


/* 테이블 본체 마크업 스타일링 */
/* >> 1. 첫 번째 열 [특성별(1)] 고정 */
.col-sticky-1 {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #fff;
  border-right:1px solid #c3c3c3c3;
}

/* >> 2. 두 번째 열 [특성별(2)] 고정 */
.col-sticky-2 {
  position: sticky;
  left:160px;
  z-index:1;
  background-color: #fff;
  border-right:1px solid #c3c3c3c3;
}

/* >> 3. 헤더 층(thead)의 고정 열은 최상단에 위치해야 하므로 레이어 순위(z-index)를 더 높임 */
thead .col-sticky-1, thead .col-sticky-2 { z-index:1; background-color: #f6f5ff ;}

.stat-data-table {
  width: 100%;
  min-width:800px;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-size: 1.5rem;
}

/* [고정열 폭 고정] auto 레이아웃은 공간이 부족하면 colgroup 지정폭(160/240px)을
   min-width 까지 축소한다. 축소되면 .col-sticky-2 의 고정 offset(left:160px)과
   1열 실제 폭이 어긋나 스크롤 시 두 고정열 사이에 빈 틈이 생기므로,
   min-width 를 offset 과 동일하게 두어 축소를 차단한다. */
.stat-data-table th.col-sticky-1 {
  width: 160px;
  min-width: 160px;
  text-align:left;
}
.stat-data-table th.col-sticky-2,
.stat-data-table td.col-sticky-2 { width: 240px; min-width: 240px; text-align:left; }


/* separate 모드이므로 모든 셀에 사방 보더를 기본적으로 부여 */
.stat-data-table th,
.stat-data-table td {
  border-right: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  padding:10px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  font-weight:500;
}

.stat-data-table th:last-child, .stat-data-table td:last-child{ border-right:none; }

/* 데이터 셀 숫자가 글자 단위로 꺾이지 않게 내용 폭 유지
   → 열이 많아 표가 넓어지면 래퍼(.table-responsive-scroll)에서 가로 스크롤
   (특성별 텍스트 열인 col-sticky-2 는 긴 문장 줄바꿈 유지를 위해 제외) */
.stat-data-table td:not(.col-sticky-2) { white-space: nowrap; }

.stat-data-table thead th {
  background-color:#f6f5ff;
  font-weight: 700;
  font-size:1.6rem;
  color: #111;
  border-bottom:1px solid #c3c3c3;
  word-break: keep-all; /* 헤더는 단어 중간(남/자)이 아닌 어절 단위로만 줄바꿈 */
}


/* > 모바일 및 태블릿 반응형 레이아웃 대변환 (@media 1024px) */
@media screen and (max-width: 1024px) {

  /* PC용 탭 목록 숨기기 */
  .tab-list-main-pc, .tab-list-sub-pc { display: none !important; }
  /* 모바일용 셀렉트 메뉴 켜기 */
  .tab-list-main-mo, .tab-list-sub-mo { display: block; background-color: #fff; }

  /* 3열 구조를 해제하여 위에서 아래로 떨어지도록 적층형 블록 배치 */
  .stat-dashboard-wrap {
    grid-template-columns: 1fr;
  }

  /* 대분류 모바일 가로 스크롤형 바 형태 변환 */
  .category-main-zone {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px;
  }

  .category-main-zone .tit, .category-sub-zone .tit{ margin:1rem 0; }

  .tab-list-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: visible !important;
    gap: 8px;
    width: 100%;
  }
  .tab-main-btn {
    display: inline-block;
    width: auto;
    white-space: nowrap ;
    flex-shrink: 1;
    padding:6px 10px;
    font-size: 1.6rem;
    border: 1px solid #c3c3c3;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
  }
  .tab-main-btn.active {
    border-color:#5c45ff;
    background-color:#5c45ff;
    color: #fff;
  }

  /* 상세분류 모바일 리스트 가로 배치 */
  .category-sub-zone {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px;
  }
  .tab-list-sub {
    flex-wrap:wrap;
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
  }
  .tab-sub-btn {
    width: auto;
    white-space: nowrap;
    padding:6px 10px;
    border: 1px solid #d4d4d4;
    border-radius:20px;
  }
  .tab-sub-btn.active {
    background-color:#f8f7ff;
  }

  .table-data-zone {
    padding: 15px;
  }

  .stat-data-table { min-width:400px; }
  .col-sticky-2{ left:110px; }
  /* 고정열 폭 = sticky offset (JS colgroup 값과 동일 유지) */
  .stat-data-table th.col-sticky-1 { width:110px; min-width:110px; }
  .stat-data-table th.col-sticky-2,
  .stat-data-table td.col-sticky-2 { width:150px; min-width:150px; }
}

@media screen and (max-width:768px){
  .stat-data-table { min-width:200px; }
  .col-sticky-2{ left:100px; }
  /* 고정열 폭 = sticky offset (JS colgroup 값과 동일 유지) */
  .stat-data-table th.col-sticky-1 { width:100px; min-width:100px; }
  .stat-data-table th.col-sticky-2,
  .stat-data-table td.col-sticky-2 { width:120px; min-width:120px; }
}

/* ========================================================
  Sub03-Tab02 > 솔루션현황
======================================================== */
.blockchain-solution-container {
  width: 100%;
  box-sizing: border-box;
  background:#f7f7f7;
  padding:2rem;
  margin-bottom:1rem;
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom:2.5rem;
}
.title-zone {
  flex: 1 1 500px; /* 제목 영역 최소 폭 확보 */
}
.main-title {
  font-size: 2.2rem;
  font-weight:800;
  margin: 0 0 0.5rem 0;
}
.main-title .highlight { color: #5236ff; font-weight: 800; }
.sub-notice { color:#666; margin: 0; }

/*버튼스타일링*/
.blockchain-solution-container .download-btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blockchain-solution-container .btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding:13px 35px 13px 15px;
  font-weight: 700;
  color: #5236ff; /* 직접 입력 (포인트 퍼플) */
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  text-decoration: none;
  transition: background 0.2s;
}

.blockchain-solution-container .btn-download::before{
  content: "";
  position: absolute;
  background-image: url('../images/kisa/sub/icon_download_themecolor.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width:18px;
  height:18px;
  right:13px;
  top: 50%;
  transform: translateY(-50%);
}


.blockchain-solution-container .btn-download:hover,
.blockchain-solution-container .btn-download:focus {
  background-color: #f1eeff;
}

/*솔루션 검색영역*/
.sub-solution .solution-category{ flex:50%; }
.sub-solution .solution-category .category{ font-weight:800; }

.sub-case.sub-solution .search_box{ margin-top:0; }

/* --- Tab List Responsive Grid Layout --- */
.sub03-img-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  box-sizing: border-box;
}

.sub03-img-tab.tab_list.calc2 > li {
  flex:0 0 calc((100% - (1.2rem * 7)) / 8);
  min-width: 110px;
  box-sizing: border-box;
}

.sub03-img-tab .tab-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  padding: 1.5rem 0.5rem 1rem 0.5rem;
  background-color: #f9f9f9; /* 회색 배경 박스 */
  border: 1px solid #d9d9d9;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

/* 우측 상단 숫자 배지 */
.sub03-img-tab .tab-item .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #5236ff;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  padding:5px 10px;
  border-radius:20px;
  z-index: 2;
}

/* 아이콘 래퍼 공간 확보 */
.sub03-img-tab .tab-item .icon-wrap {
  width:55px;
  height:55px;
  margin-bottom: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 가상 아이콘 예시 (실제 프로젝트 이미지 매칭 영역) */
.infoimg01 { background-image: url('../images/kisa/sub/ico_status01.png'); }
.infoimg02 { background-image: url('../images/kisa/sub/ico_status02.png'); }
.infoimg03 { background-image: url('../images/kisa/sub/ico_status03.png'); }
.infoimg04 { background-image: url('../images/kisa/sub/ico_status04.png'); }
.infoimg05 { background-image: url('../images/kisa/sub/ico_status05.png'); }
.infoimg06 { background-image: url('../images/kisa/sub/ico_status06.png'); }
.infoimg07 { background-image: url('../images/kisa/sub/ico_status07.png'); }
.infoimg08 { background-image: url('../images/kisa/sub/ico_status08.png'); }
.infoimg09 { background-image: url('../images/kisa/sub/ico_status09.png'); }
.infoimg10 { background-image: url('../images/kisa/sub/ico_status10.png'); }
.infoimg11 { background-image: url('../images/kisa/sub/ico_status11.png'); }


.sub03-img-tab .tab-item .tab-label { font-weight: 600; color: #333333; }


/* [핵심] 활성화 상태 스타일 (Active / Selected) */
.sub03-img-tab .tab-item.active {
  background-color: #ffffff;
  border: 2px solid #5236ff;
  padding:1rem;
}
.sub03-img-tab .tab-item.active .tab-label { color: #5236ff; font-weight: 700; }

/* --- [Footer Layout] --- */
.solution-footer {
  margin-top: 1.5rem;
}
.info-request-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-notice-text { font-weight:500; color: #333; }

.link-email {
  position: relative;
  color: #5236ff;
  text-decoration: underline;
  padding-left: 2.6rem;
  font-weight: 600;
}

.link-email::before {
  content: "";
  position: absolute;
  background-image: url('../images/kisa/sub/icon_mail.png');
  background-repeat: no-repeat;
  background-size: contain;
  width:17px;
  height:17px;
  left:7px;
  top: 50%;
  transform: translate(0px, -50%);
}



.btn-application {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size:1.4rem;
  gap: 0.4rem;
  background-color: #5236ff;
  color: #ffffff;
  padding:0.9rem 2.6rem;
  font-weight: 500;
  text-decoration: none;
}
.btn-application::before {
  content: "";
  position: absolute;
  background-image: url('../images/kisa/sub/icon_assignment.png');
  background-repeat: no-repeat;
  background-size: contain;
  width:17px;
  height:17px;
  left:7px;
  top: 50%;
  transform: translate(0px, -50%);
}
.btn-application::after {
  content: "";
  position: absolute;
  background-image: url('../images/kisa/sub/icon_download_whcolor.png');
  background-repeat: no-repeat;
  background-size: contain;
  width:17px;
  height:17px;
  right :7px;
  top: 50%;
  transform: translate(0px, -50%);
}

.sub03-sol-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin:1.5rem 0;
  box-sizing: border-box;
  border-top: 1px solid #1a202c;
}

/* 1. 개별 행(Row) 전체 하이퍼링크 스타일 */
a.sub03-sol-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* 마우스 호버(Hover) 및 키보드 초점(Focus) 진입 시 행 전체 일괄 디자인 변화 */
a.sub03-sol-item:hover,
a.sub03-sol-item:focus {
  outline: none;
  background-color: #f7f5fd;
  border-bottom-color: #5236ff;
}


/* 2. 좌측 텍스트 콘텐츠 영역 */
.sub03-sol-info{
  width:80%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 2rem;
}

.sub03-sol-img{
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 1.3rem;
  border-radius: 20%;
  border: 1px solid #eee;
  background:#fff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.sub03-sol-content {
  flex: 1;
  padding-right: 2.5rem;
  box-sizing: border-box;
  text-align: left;
  min-width: 0;
}

/* 상단 메타라인 (기업명 | 솔루션 타이틀) */
.sub03-sol-meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-direction: column;
  width: 100%;
}

.sub03-sol-title {
  display: inline-block;
  font-size: 2.0rem;
  font-weight: 800;
  color: #333;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub03-sol-desc {
  color: #333;
  letter-spacing: -0.2px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.sub03-sol-tag{
  color: #5236ff;
  font-size: 1.4rem;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 3. 우측 바로가기 디자인 영역 */
.sub03-sol-action {
  flex: 0 0 auto;
}

/* 행 전체에 호버 처리가 되도록 내부의 가짜 버튼 스타일 디자인화 */
.sub03-sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:1.5rem 3rem;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius:3rem;
  font-weight: 600;
  color: #333333;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* 💡 행 전체(a 태그)에 호버가 일어나는 즉시 내부 버튼도 함께 퍼플 컬러로 반전 트리거 */
a.sub03-sol-item:hover .sub03-sol-btn,
a.sub03-sol-item:focus .sub03-sol-btn {
  background-color: #4b26ff;
  border-color: #4b26ff;
  color: #ffffff;
}


/* 호버 시 화살표 색상 반전 및 우측 이동 모션 */
a.sub03-sol-item:hover .sub03-sol-arrow,
a.sub03-sol-item:focus .sub03-sol-arrow {
  border-color: #ffffff;
  transform: translate(2px, 0) rotate(45deg);
}


/* [Responsive Media Queries] 가로 리스트 반응형 대응 */
@media (max-width: 1024px) {
  .solution-imgtab-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .solution-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .title-zone {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .sub03-img-tab .tab-item{
    min-height:auto;
    width:100%;
    text-align:left;
    padding:1rem 9rem 1rem 1rem;
  }

  .sub03-img-tab .tab-item .tab-label{
    width:100%;
    text-align:left;
  }

  .sub03-img-tab .tab-item .icon-wrap{
    border:1px solid blue;
    display:none;
  }

  .sub03-img-tab .tab-item.active .badge{ top:7px; right: 20px; }
  .sub03-img-tab .tab-item .badge{ top:5.5px; right: 20px; }

  a.sub03-sol-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 0.75rem;
  }

  .sub03-sol-content {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .sub03-sol-meta {
    gap: 0.5rem;
  }

  .sub03-sol-split {
    display: none;
  }

  .sub03-sol-action {
    width: 100%;
    text-align: right;
  }

  .sub03-sol-btn {
    width: 100%;
    max-width: 140px;
  }
}

@media (max-width: 640px) {
  .solution-imgtab-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .tab-item {
    min-height: 125px;
    /* 모바일 패딩 축소 (1.5rem -> 1.25rem) */
    padding: 1.25rem 0.4rem 0.85rem 0.4rem;
  }
  .tab-item.active {
    padding: calc(1.25rem - 1px) 0.4rem calc(0.85rem - 1px) 0.4rem;
  }
  .tab-item .badge {
    top: -6px;
    right: -2px;
  }
  .download-btn-group {
    width: 100%;
    flex-direction: column;
  }
  .btn-download {
    width: 100%;
    justify-content: space-between;
  }
  .info-request-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .btn-application{ width:100%; margin-top:0.5rem; }

  .sub03-sol-info {
    width: 100%;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .sub03-sol-content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    min-width: 0;
  }

  .sub03-sol-meta {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    width: 100%;
  }

  .sub03-sol-title { width: 100%; }
  .sub03-sol-desc { width: 100%; }
  .sub03-sol-tag { width: 100%; }
  .sub03-sol-btn{ max-width:100%; margin-top:1rem; }

}



/* ========================================================
  Sub04-Tab01
======================================================== */
.sub-weekNews-center .spc-purpose-box p.forum-basic-lead{
  position: relative;
  font-size:1.6rem;
  padding-left:1rem;
  font-weight:700;
}
.sub-weekNews-center .spc-purpose-box p.forum-basic-lead span{
  color:#5236ff;
}
.sub-weekNews-center .spc-purpose-box p.forum-basic-lead::before{
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #5236ff;
  border-radius: 100px;
  top: 10px;
  left: 0;
}

.weekNewSerchBox{
  display:flex;
  flex-flow:row wrap;
}

.weekNewSerchBox .serch-select, .weekNewSerchBox .serch-data{ margin-right:4px; }
.sub-case.sub-weekNews-center .search_box{ margin-top:0rem; flex:1; }

/*serch-select*/
/* select를 감싸는 label 박스 정돈 */
.serch-select
.serch-select .select_box {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

/* 셀렉트 너비 제어 */
.serch-select .select_box select {
  width: 120px;
  max-width: 160px;
}

/* 셀렉트 본체 및 커스텀 화살표 인입 */
.select_box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: 1px solid #d9d9d9;
  background-color:#fff;
  height: 4.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.04em;
  color: #111;
  padding: 12px 40px 12px 15px;
  box-sizing: border-box;
}
.serch-select .select_box{ position: relative; }
.serch-select .select_box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width:6px;
  height:6px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  pointer-events: none;
}
/* 파이어폭스 등 일부 브라우저에서 화살표 숨기기 전용 핵 추가 방어 */
.select_box select::-ms-expand { display: none; }


/*serch-data*/
.serch-data {
  display: inline-flex;
  align-items: center;
  gap:4px;
  vertical-align: middle;
}

/* 기간 구분선 (~) 스타일 */
.serch-data .data-sep {
  font-size: 1.6rem;
  color: #666;
  font-weight: 500;
  padding: 0 2px;
}

/* 시작일, 종료일 각각의 개별 인클로저 박스 */
.serch-data .data-start,
.serch-data .data-end {
  position: relative;
  display: inline-block;
}

.serch-data .hasDatepicker {
  width: 140px;
  height: 4.8rem;
  border: 1px solid #d9d9d9;
  background-color:#fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111;
  padding: 12px 40px 12px 15px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}

/* placeholder 폰트 스타일 제어 */
.serch-data .hasDatepicker::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* ★ [핵심] ::after 가상 요소로 순수 CSS 달력 아이콘 그리기 */
.serch-data .data-start::after,
.serch-data .data-end::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-radius: 3px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #333 3px, transparent 3px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* (옵션) 플러그인 자동 생성 버튼 숨김 처리
   만약 제이쿼리가 버튼을 강제로 노출시킨다면 아래 코드로 깔끔하게 숨겨 줍니다. */
.serch-data .ui-datepicker-trigger {
  display: none !important;
}

/*주간동향 공지사항테이블*/
.notice-table-wrap {
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
}

/* 상단 카운트 및 셀렉트 라인 */
.table-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 10px;
}
.table-top-info .total-count {
  font-size: 1.4rem;
  color: #555;
}
.table-top-info .total-count strong {
  color: #111;
  font-weight: 600;
}
.sort-select-area {
  display: flex;
  gap: 8px;
}

/* 테이블 기초 레이아웃 정돈 */
.responsive-notice-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #111;
}

/* 헤더 영역 */
.responsive-notice-table thead tr th {
  padding: 15px 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #111;
  background-color: #fff;
}

/* 바디 셀 공통 */
.responsive-notice-table tbody tr td {
  padding:10px 15px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align:middle;
  box-sizing: border-box;
}
.responsive-notice-table tbody tr td:first-child{ border-right: 1px solid #e2e8f0; }
.responsive-notice-table.ResearchType tbody tr td:not(:last-child){ border-right: 1px solid #e2e8f0; }

@media (hover: hover){
  .responsive-notice-table tbody tr { transition: background-color 0.25s ease; }
  .responsive-notice-table tbody tr:has(.subject-link:hover) {
    background-color: #eae8ff;
    cursor: pointer;
  }

}



/* 번호 셀 */
.cell-num {
  text-align: center;
  font-size: 1.6rem;
  color: #444;
  font-weight: 500;
  padding-top: 28px;
}

/* 내용 콘텐츠 내부 정렬 */
.cell-content .content-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 주간 배지 및 제목 링크 */
.subject-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  text-decoration: none;
}
.badge-weekly {
  background-color: #5850ec;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.subject-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:1;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  font-size:2.0rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.03em;
  text-align:left;
  max-width:90%;
}
.ResearchType .subject-text{ font-size:1.6rem; }
.subject-link:hover .subject-text {
  text-decoration: underline;
}
.badge-new {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ff0000;
  margin-left: 2px;
}

/* 본문 요약문 영역 */
.summary-desc {
  text-align:left;
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.summary-desc p {
  margin: 0;
}
.summary-desc .summary-tit {
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
/* DB 본문(bbsoCn)을 <pre>로 출력할 때 브라우저 기본 <pre> 스타일(고정폭 폰트,
   white-space:pre로 인한 줄바꿈 미적용) 때문에 폰트가 달라 보이고 긴 줄이
   내용 컬럼을 늘려 번호 컬럼을 찌그러뜨리는 문제를 보정한다. */
.summary-desc .preContent {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: pre-wrap;   /* DB 줄바꿈은 유지하되 긴 줄은 자동 줄바꿈 */
  word-break: break-word;  /* 긴 단어/URL 강제 줄바꿈 */
}

/* 하단 메타 정보 그룹 */
.meta-info-group {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  color: #666;
  margin-top: 4px;
}
.meta-item strong {
  color: #111;
  font-weight:500;
  margin-right: 5px;
}

/* Pure CSS로 구현한 첨부파일 서류 아이콘 */
.file-icon {
  display: inline-block;
  width: 13px;
  height: 16px;
  border: 2px solid #666;
  border-top-right-radius: 4px; /* 서류 귀퉁이 접힌 느낌 연출 */
  position: relative;
  vertical-align: middle;
  margin-left: 2px;
}
.file-icon::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 4px;
  height: 4px;
  background-color: #666;
}


/*  768px 이하 모바일 / 태블릿 반응형 전환 레이아웃  */
@media screen and (max-width: 768px) {
  /* 1. 테이블 기본 구조 해체 (블록화) */
  .responsive-notice-table,
  .responsive-notice-table tbody,
  .responsive-notice-table tr,
  .responsive-notice-table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  /* PC 테이블 헤더 격리 숨김 */
  .responsive-notice-table thead {
    display: none;
  }

  /* 2. 하나의 행(tr)을 카드 컨테이너로 변환 */
  .responsive-notice-table tbody tr {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }

  /* 3. [시안 반영] 번호 셀(.cell-num)을 카드 상단 연보라색 헤더 바 모양으로 탈바꿈 */
  .cell-num {
    background-color: #f0eeff; /* 시안 특유의 연보라 배경 */
    border-bottom: 1px solid #d9e2ec;
    display: flex;
    align-items: center;
    padding:0 15px 0 15px;
    color: #333;
    font-weight: 500;
    text-align: left;
  }
  /* 스크린 리더용 글자 매칭 보완 효과 */
  .cell-num::before {
    content: '번호: ';
  }

  /* 4. 내용 영역 패딩 초기화 */
  .cell-content {
    padding: 15px !important;
    border: none !important;
  }

  /* 본문 제목 기호 폰트 크기 다운사이징 */
  .subject-text {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .summary-desc {
    font-size: 1.6rem;
    margin-top: 4px;
  }

  /* 5. [시안 반영] 하단 메타 정보 그룹을 3단 분할 보더 바로 대개조 */
  .meta-info-group {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0; /* 상단 구분선 */
    width: 100%;
  }

  /* 메타 아이템 개별 제어 */
  .meta-item {
    font-size: 1.4rem;
    color: #111;
    display: flex;
    align-items: center;
  }

  /* "등록일", "조회수", "첨부파일" 강한 텍스트 라벨 스타일 */
  .meta-item strong {
    font-weight:700;
    color: #111;
    margin-right:3px; /* PC 공백 초기화 */
  }

  /* 데이터 값들 우측 정렬 유도 및 시안 매칭 */
  .meta-item.item-date {
    flex-direction:row;
    align-items: flex-start;
    gap: 2px;
  }
  /* 시안처럼 등록일 글자 아래 혹은 옆 분리 가독성 확보 */
  .meta-item.item-date strong::after { content: ''; display: block; }

  /* 조회수 숫자 정렬 */
  .meta-item.item-views {
    flex-direction:row;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
    margin-right: 25px; /* 첨부파일 아이콘과의 간격 */
  }

  /* 첨부파일 영역 세로 배열로 아이콘 하단 배치 */
  .meta-item.item-file {
    flex-direction:row;
    align-items: flex-end;
    gap: 6px;
  }

  /*paging*/
  .pn_list li:nth-child(n+4) {
    display: none !important;
  }

  .paing_wrap {
    gap:2px;
  }
}

/*paging*/
.paging_zone{margin-top:35px;position:relative;}
.paging_zone .data_paing_wrap{margin-top:0;}
.paing_wrap{text-align:center;display:flex; flex-wrap: wrap; align-items: center;justify-content: center; margin-top:10px; margin-bottom:5rem}
.first_go,
.prev_go,
.next_go,
.last_go{display:inline-block;width:40px;height:40px;vertical-align: middle;border:1px solid #d5d5d5;border-radius:80px;margin:0 4px;background-position:50% 50%;background-repeat:no-repeat;}
.first_go:hover,
.prev_go:hover,
.next_go:hover,
.last_go:hover{border:1px solid #888;}
.first_go{background-image:url("/images/kisa/sub/ico_pprev.png");}
.prev_go{background-image:url("/images/kisa/sub/ico_prev.png");}
.next_go{background-image:url("/images/kisa/sub/ico_next.png");}
.last_go{background-image:url("/images/kisa/sub/ico_nnext.png");}
.pn_list{display:flex;margin:0 15px;align-items: center;justify-content: center;}
.pn_list > li{}
.pn_list > li:last-of-type{}
.pn_link{display:inline-block;margin:0 10px;padding:0 4px;height:42px;color:#777;line-height:42px;font-size:18px;letter-spacing: -1px;}
.pn_link.active,
.pn_link:hover{color:#5236ff;font-weight:500;border-bottom:2px solid #5236ff;}
.pnelse_low{text-align:right;position:absolute;top:-10px;right:0;}



/* ========================================================
  Sub05
======================================================== */
.VideoList-item:not(:first-child){
  border-top:1px solid #d9d9d9;
  margin-top:3rem;
}

.VideoList-item:last-child{
  margin-bottom:3rem;
}


.video-card-item .slick-slide{
  margin-top:2rem;
  position:relative;
  padding:0 5px;
}
.video-card-item{
  display:flex;
  flex-flow:row;
  align-items: stretch;
  gap:1rem;
}


.video-card-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap:1rem;
}

/* [핵심] slick 가동 후에는 block 으로 전환.
   flex 컨테이너 안에서 slick-list 폭이 내용물 크기로 수축(shrink-to-fit)되어
   카드가 1~2건뿐이면 슬라이드 폭이 0 에 가깝게 계산돼 카드가 세로로 붕괴하던 문제 차단.
   (정상 동작하는 .detail-card-type 슬라이더와 동일하게 block 기준으로 폭 계산) */
.video-card-item.slick-initialized {
  display: block;
}

.videoitem{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 33.3333%;
  flex-grow: 1;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius:1.5rem;
}

.videoitem .videoitem-alink {
  position: relative;
  display: flex;
  flex-flow:column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height:315px;
  flex-grow: 1;
  padding: 30px;
  border-radius: 1.5rem;
  border:1px solid #d9d9d9;
  box-sizing: border-box;
}

@media (hover: hover) {
  .videoitem .videoitem-alink:hover {
    border: 1px solid #8673ff;
    box-shadow: 0px 0px 5px 1px rgb(134 115 255 / 46%);
  }
}


/*유투브 썸네일 이미지*/
.videoitem-alink .youtubeThum-wrap{
  width:100%;
  height:157px;
  position: relative;
  border-radius:1.2rem;
  background-size:cover;
  overflow:hidden;
}

.videoitem-alink .youtubeThum{ width:100%; height:100%; object-fit:cover; }

.videoitem-alink .info-box{
  width:100%;
  margin-top:2rem;
}

.videoitem-alink .info-box .tit{
  min-height:36px;
  color: #333;
  font-size:1.8rem;
  font-weight:700;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  margin-bottom:1.3rem;
}

.videoitem-alink .info-box .tag{
  font-size:1.5rem;
  font-weight:600;
  color:#5236ff;
  padding-right: 3px;
  word-break: break-all;
}

.videoitem .videoitem-alink:focus{
  outline: 2px solid #8673ff !important;
  outline-offset: -2px  !important;
}

.videoitem .videoitem-alink:focus-visible {
  outline: 2px solid #8673ff !important;
  outline-offset: -2px  !important;
}

/* 모바일(1개 보기): 실서버와 동일하게 테두리는 유지하되 안쪽 여백 제거 —
   썸네일이 카드 테두리에 붙고, 높이는 고정(157px) 대신 폭 비례 16:9 */
@media (max-width: 768px) {
  .videoitem .videoitem-alink {
    padding: 0;
    min-height: auto;
    overflow: hidden; /* 카드 라운드 밖으로 썸네일 모서리 안 삐져나오게 */
  }

  .videoitem-alink .youtubeThum-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0; /* 카드 자체 라운드를 사용 */
  }

  .videoitem-alink .info-box {
    padding: 0 1.6rem 1.6rem;
    margin-top: 1.6rem;
  }
}



/* ========================================================
  WEB3.0_URL진단
======================================================== */
.sub-web3 .is-hidden {
  display: none;
}
.sub-web3 .forum-bold-lead {
  margin-bottom: 0;
}
.sub-web3 .card-header .title-info .card-tit {
  font-size: 2rem;
  color: var(--color-main-3);
}
.sub-web3 .services-grid-layout .service-card {
  position: relative;
}
.sub-web3 .card-icon-img {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.sub-web3 .card-body {
  max-width: calc(100% - 9rem);
}

.sub-web3 .diagram-process-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sub-web3 .diagram-process-box .desc-card {
  width: calc(25% - 1rem);
  height: auto;
  flex: 1;
}
.sub-web3 .diagram-process-box .desc-card .card-tit {
  display: flex;
  gap: 0.4rem;
}
.sub-web3 .diagram-process-box .desc-card .card-tit::before {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--color-main-3);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-web3 .diagram-process-box .desc-card p {
  line-height: 1.3;
}
.sub-web3 .diagram-process-box .desc-card:nth-child(1) .card-tit::before {
  content: "1";
}
.sub-web3 .diagram-process-box .desc-card:nth-child(2) .card-tit::before {
  content: "2";
}
.sub-web3 .diagram-process-box .desc-card:nth-child(3) .card-tit::before {
  content: "3";
}
.sub-web3 .diagram-process-box .desc-card:nth-child(4) .card-tit::before {
  content: "4";
}
.sub-web3 .diagram-flex-box {
  gap: 2rem;
}
.sub-web3 .spc-info-group {
  margin-bottom: 1rem;
}
.sub-web3 .spc-info-group:last-child {
  margin-bottom: 4rem;
}
.sub-web3.sub-policy-center .spc-info-group-column {
  flex: 0.5;
  height: fit-content;
}
.sub-web3.sub-policy-center .spc-info-group-content {
  background: #fff;
}
.sub-web3 .diagram-graphic-side img {
  max-width: unset;
}
.sub-web3.sub-policy-center .spc-purpose-box.web3-purpose-box {
  background: #fff;
}
.sub-web3.sub-policy-center .spc-purpose-box .diag-notice-desc {
  font-size: 1.6rem;
  line-height: 1.8;
}
.sub-web3.sub-policy-center .spc-purpose-box .diag-notice-desc .txt-blue {
  color: var(--color-main-3);
}
.sub-web3.sub-policy-center .spc-purpose-box .diag-notice-desc .txt-red {
  color: var(--text_alert);
}
/* 진단도구 사용현황 관련 */
.sub-web3.sub-policy-center .spc-bullet-list li {
  display: flex;
  gap: 0.8rem;
}
.sub-web3 .progressbar {
  display: inline-block;
  zoom: 1;
  background-color: var(--gray1);
  width: 200px;
  height: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0px 0 0 0;
}
.sub-web3 .progressbar,
.status {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.sub-web3 .status {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--gray1);
  z-index: 2;
}
.sub-web3 .nones .status {
  width: 0%;
}
.sub-web3 .one .status {
  width: 12%;
  background: #00719a;
  background: -webkit-linear-gradient(left, #00516f, #00719a);
  background: -o-linear-gradient(right, #00516f, #00719a);
  background: -moz-linear-gradient(right, #00516f, #00719a);
  background: linear-gradient(to right, #00516f, #00719a);
}
.sub-web3 .two .status {
  width: 24%;
  background: #008fc1;
  background: -webkit-linear-gradient(left, #00719a, #00c1a6);
  background: -o-linear-gradient(right, #00719a, #00c1a6);
  background: -moz-linear-gradient(right, #00719a, #00c1a6);
  background: linear-gradient(to right, #00719a, #00c1a6);
}
.sub-web3 .three .status {
  width: 36%;
  background: #84d040;
  background: -webkit-linear-gradient(left, #00719a, #84d040);
  background: -o-linear-gradient(right, #00719a, #84d040);
  background: -moz-linear-gradient(right, #00719a, #84d040);
  background: linear-gradient(to right, #00719a, #84d040);
}
.sub-web3 .four .status {
  width: 48%;
  background: #f3b000;
  background: -webkit-linear-gradient(left, #00969f, #f3b000);
  background: -o-linear-gradient(right, #00969f, #f3b000);
  background: -moz-linear-gradient(right, #00969f, #f3b000);
  background: linear-gradient(to right, #00969f, #f3b000);
}
.sub-web3 .five .status {
  width: 60%;
  background: #f30000;
  background: -webkit-linear-gradient(left, #efaf03, #f30000);
  background: -o-linear-gradient(right, #efaf03, #f30000);
  background: -moz-linear-gradient(right, #efaf03, #f30000);
  background: linear-gradient(to right, #efaf03, #f30000);
}
.sub-web3 .six .status {
  width: 72%;
  background: #009efd;
  background: -webkit-linear-gradient(left, #d53369, #009efd);
  background: -o-linear-gradient(right, #d53369, #009efd);
  background: -moz-linear-gradient(right, #d53369, #009efd);
  background: linear-gradient(to right, #d53369, #009efd);
}
.sub-web3 .seven .status {
  width: 84%;
  background: #2a0845;
  background: -webkit-linear-gradient(left, #6441a5, #2a0845);
  background: -o-linear-gradient(right, #6441a5, #2a0845);
  background: -moz-linear-gradient(right, #6441a5, #2a0845);
  background: linear-gradient(to right, #6441a5, #2a0845);
}
.sub-web3 .eight .status {
  width: 100%;
  background: #33001b;
  background: -webkit-linear-gradient(left, #ff0084, #33001b);
  background: -o-linear-gradient(right, #ff0084, #33001b);
  background: -moz-linear-gradient(right, #ff0084, #33001b);
  background: linear-gradient(to right, #ff0084, #33001b);
}
.diagnosis_gauge .tit,
.diagnosis_gauge .gaugetxt,
.diagnosis_gauge i,
.progressbar {
  vertical-align: middle;
}
/* 진단 form section */
.sub-web3 #validatorForm {
  width: 100%;
}
.sub-web3 fieldset legend {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  line-height: normal;
  color: #333;
  position: static;
  padding-bottom: 0.5rem;
}
.sub-web3 .diag-row label.diag-row-tit,
.sub-web3 .diag-row label.answer {
  padding-bottom: 0.5rem;
}
.diag-row {
  display: block;
  padding-bottom: 5rem;
}
.diag-row:first-child {
  padding-top: 0;
}
.diag-row:last-of-type {
  border-bottom: none;
}
.diag-row-tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray2);
}
.sub-policy-center .spc-purpose-box .diag-row-tit p.captcha-tit-desc {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-left: 1rem;
  color: var(--color-main-3);
}
.diag-row-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.diag-row-cont .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.diag-row-cont.diagdetail-row-cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#validatorForm .diag-row .diag-row-tit i.ic-diag {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#validatorForm .diag-row .diag-row-tit i.ic-diag.gubun {
  background-image: url("../images/renew/web3.0_icon05.png");
}
#validatorForm .diag-row .diag-row-tit i.ic-diag.item {
  background-image: url("../images/renew/web3.0_icon06.png");
}
#validatorForm .diag-row .diag-row-tit i.ic-diag.detail {
  background-image: url("../images/renew/web3.0_icon07.png");
}
#validatorForm .diag-row .diag-row-tit i.ic-diag.url {
  background-image: url("../images/renew/web3.0_icon08.png");
}
#validatorForm .diag-row .diag-row-tit i.ic-diag.security {
  background-image: url("../images/renew/web3.0_icon09.png");
}
/* 라디오 버튼 커스텀 */
.diag-row-cont .radio-lbl {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 3rem;
  font-size: 1.6rem;
  line-height: 1.4;
  cursor: pointer;
}
.diag-row-cont .radio-lbl input[type="radio"] {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.8rem;
  accent-color: var(--color-main-3); /* 메인 컬러에 맞춤 */
}
.diag-row-cont .radio-lbl .txt-bold {
  font-weight: 700;
  margin-right: 0.5rem;
}
.diag-row-cont .radio-lbl .txt-desc {
  font-size: 1.5rem;
}
.sub-policy-center .spc-purpose-box p.diag-notice-txt {
  font-size: 1.4rem;
  width: 100%;
}

/* 체크박스 버튼 커스텀 */
.diag-row-cont .check_box {
  min-width: 5rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
}
.diag-row-cont .check_box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--gray2);
  border-radius: 0.1rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  margin: 0;
  margin-right: 0.4rem;
  outline: none;
}
.diag-row-cont .check_box input[type="checkbox"]:checked {
  background-color: var(--color-main-3);
  border-color: var(--color-main-3);
}
.diag-row-cont .check_box input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.1rem;
  width: 0.5rem;
  height: 0.9rem;
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}


/* 세부선택 관련 */
.diag-row-cont.diagdetail-row-cont .diag-detail-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.diag-row-cont.diagdetail-row-cont .diag-detail-options .detail-label {
  min-width: 8rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.diag-detail-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.detail-select-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.detail-label {
  font-size: 1.5rem;
  font-weight: 500;
}
.diag-select {
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  background-color: #fff;
  min-width: 24rem;
  cursor: pointer;

  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem auto;
}
/* URL 관련 */
.diag-row.captcha-row {
  padding-bottom: 0;
}
.diag-input-text {
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  background-color: #fff;
  min-width: 50rem;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.diag-input-text::placeholder {
  color: #707070;
}
/* 보안문자 입력 관련 */
.captcha-row .diag-row-cont {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.captcha-row .diag-input-text {
  min-width: 32rem;
}
.captcha-row .diag-row-cont .captcha-ui-box {
  display: flex;
  gap: 0.4rem;
}
.captcha-btn-wrap {
  display: flex;
  gap: 0.5rem;
}
.btn-captcha {
  padding: 0 1.5rem;
  font-size: 1.4rem;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  height: 100%;
  background-color: var(--sub);
  transition: opacity 0.25s ease;
}
.btn-captcha:hover {
  opacity: 0.85;
}
.diag-submit-wrap {
  text-align: center;
  margin-top: 2rem;
}
.btn-main3-color {
  background-color: var(--color-main-3);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem 6rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.btn-main3-color:hover,
.btn-main3-color:focus {
  opacity: 0.85;
}

/* ========================================================
  WEB3.0 진단중(diagnosticStart) - 디자인(WEB3.0_진단중) 이식
======================================================== */
.UnderDiagnosis {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  margin: 2rem 0;
  background: var(--bg);
  border: 1px solid var(--gray1);
}
.ud_id {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}
.ud_id .idtit {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 25px;
  margin-top: 15px;
  background: url('../images/renew/clinic_ing.png') center 0 no-repeat;
  padding: 240px 0 0 0;
}
.ud_id .idTbox {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.8rem;
}
.ud_id .idTbox .notice strong { font-weight: 800; }
.ud_pregress {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 1rem;
  padding: 4rem;
  width: 100%;
}
.progressv {
  position: relative;
  height: 10px;
  border-radius: 10px;
  display: block;
  width: 680px;
  max-width: 100%;
  background-color: #ccc;
  overflow: hidden;
}
.progressv_active {
  position: absolute;
  width: 100px;
  height: 100%;
  background: #5236ff;
  border-radius: 10px;
  left: 80px;
}
/* 수집중(indeterminate) : 막대가 좌우로 왕복 이동 */
.progressv_active:not(.determinate) {
  left: 0;
  animation: progressv-indeterminate 1.4s ease-in-out infinite alternate;
}
@keyframes progressv-indeterminate {
  from { left: 0; }
  to { left: calc(100% - 100px); }
}
/* 진단중(determinate) : 좌측 0부터 진행률(%) 만큼 채움 */
.progressv_active.determinate {
  left: 0;
  animation: none;
  border-radius: 10px;
  transition: width 0.4s ease;
}
.progressv_txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.ud_info {
  width: 70%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}
.ud_btn { margin: 4rem; }
.ud_btn.CenterCenter { display: flex; justify-content: center; }

@media (max-width: 1200px) {
  .sub-web3 .diagram-graphic-side img {
    max-width: 80rem;
  }
  .sub-web3 .diagram-process-box .desc-card {
    flex: auto;
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 768px) {
  .card-icon-img {
    width: 8rem;
    height: 8rem;
  }
  .sub-web3.sub-policy-center .spc-bullet-list li {
    flex-wrap: wrap;
  }
  .sub-web3 .diagram-process-box .desc-card {
    width: 100%;
  }
  .diag-select {
    min-width: unset;
    flex: 1;
  }
  .diag-input-text {
    min-width: unset;
    width: 100%;
  }
  .captcha-row .diag-row-cont .captcha-input-wrap {
    width: 100%;
  }
  .captcha-row .diag-input-text {
    min-width: unset;
  }
}

/* ========================================================
  WEB3.0_진단결과 조회
======================================================== */
.sub-web3 #tab_content2 .search_box {
  margin-top: 0;
  flex: 1;
}
/* 검색 영역 spc-purpose-box는 폼 하나만 담으므로 flex(본문+로고 2단 배치)를 해제해
   form/weekNewSerchBox가 전체 너비를 갖도록 한다. (검색창이 짧아지는 문제 보정) */
.sub-web3.sub-policy-center #tab_content2 section:first-child .spc-purpose-box {
  display: block;
}
.sub-web3 #tab_content2 section:first-child .spc-purpose-box > form,
.sub-web3 #tab_content2 .weekNewSerchBox {
  width: 100%;
}
.sub-web3.sub-policy-center #tab_content2 section:first-child {
  margin-bottom: 2rem;
}
.sub-web3.sub-policy-center #tab_content2 .spc-purpose-box .diag-notice-desc {
  text-align: center;
  line-height: 1.4;
}
.sub-web3.sub-policy-center #tab_content2 .spc-purpose-box {
  align-items: center;
}
.sub-web3.sub-policy-center #tab_content2 .spc-data-table th {
  background-color: inherit;
}
.sub-web3.sub-policy-center
#tab_content2
.spc-data-table
tbody
td:nth-child(2) {
  text-align: center;
}
.btn-view-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 3rem;
  background-color: #007fad;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #tab_content2 .weekNewSerchBox .serch-select {
    width: 100%;
    margin: 0 0 0.4rem 0;
  }
  #tab_content2 .serch-select .select_box select {
    width: 100%;
    max-width: unset;
  }
  .sub-web3.sub-policy-center
  #tab_content2
  .spc-data-table
  tbody
  td:nth-child(2) {
    text-align: left;
  }
  .sub-web3.sub-policy-center #tab_content2 .spc-data-table th {
    background-color: var(--bg-theme2);
  }
  .sub-web3.sub-policy-center #tab_content2 .spc-data-table th span {
    font-weight: 700;
  }
}

/* ========================================================
  WEB3.0_진단결과 조회 Detail
======================================================== */
.sub-web3-detail .tab_type01 {
  margin-bottom: 0;
}
.sub-web3-detail .tab_type01_ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sub-web3-detail .tab_type01_ul li {
  flex: 1;
}
.sub-web3-detail .tab_type01_ul button,
.sub-web3-detail .tab_type01_ul a {
  width: 100%;
  display: block;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sub);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gray2);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
          border 0.2s ease,
          color 0.2s ease;
}
.sub-web3-detail .tab_type01_ul button:hover,
.sub-web3-detail .tab_type01_ul button.on,
.sub-web3-detail .tab_type01_ul a:hover,
.sub-web3-detail .tab_type01_ul a.on {
  color: var(--color-main-1);
  border-bottom: 2px solid var(--color-main-1);
  position: relative;
}
.sub-web3-detail .tab_type01_ul button.on::after,
.sub-web3-detail .tab_type01_ul button:hover::after,
.sub-web3-detail .tab_type01_ul a.on::after,
.sub-web3-detail .tab_type01_ul a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-main-1);
}
.sub-web3-detail .diagnosis_investigation {
  position: relative;
  background-color: var(--bg);
  margin: 1rem 0 2rem;
  padding: 4rem;
}
.sub-web3-detail .detail-box-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding-left: 30rem;
  background: url("../images/kisa/stats_img04.png") no-repeat -2rem center;
  background-size: 30rem auto;
}
.sub-web3-detail .investigation_lst {
  display: flex;
  align-items: flex-start;
  font-size: 1.6rem;
  line-height: 1.5;
}
.sub-web3-detail .investigation_lst .tit {
  width: 12rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.2rem;
  flex-shrink: 0;
}
.sub-web3-detail .investigation_lst .tit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 50%;
}
.sub-web3-detail .investigation_lst .incont {
  flex: 1;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-width: 0;
}
@media (hover: hover) {
  .sub-web3.sub-policy-center #tab_content2 .spc-data-table tbody tr {
    transition: background-color 0.25s ease;
  }
  .sub-web3.sub-policy-center #tab_content2 .spc-data-table tbody tr:hover {
    background-color: #eae8ff;
  }
}
.etc_btnwrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.etc_btnwrap button[type="button"] {
  height: 4.8rem;
  padding: 0 1.6rem;
  font-size: 1.6rem;
  outline: none;
}
.etc_btnwrap .btn_before {
  background-color: var(--text-h);
}
.etc_btnwrap .btn_download {
  background-color: var(--sub);
}
.btn-guideline {
  top: 2rem;
  right: 2rem;
  position: absolute !important;
  background-color: var(--sub);
}
.btn_before,
.btn_download,
.btn-guideline,
.btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 4.8rem;
  padding: 0 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn_list {
  background: #fff;
  color: var(--color-main-1);
  border: 1px solid var(--gray3);
  transition:
          color 0.25s ease,
          background-color 0.25s ease,
          border-color 0.25s ease;
}
.btn_list:hover {
  background: var(--color-main-3);
  color: #fff;
  border: 1px solid var(--color-main-3);
}
.sub-web3.sub-web3-detail.sub-policy-center .spc-info-group-column {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  flex: unset;
  height: fit-content;
}
.sub-web3.sub-web3-detail.sub-policy-center .spc-info-group-content {
  padding: 0;
}
.sub-policy-center .spc-bullet-list.no-dot li {
  padding-left: 0;
}
.sub-policy-center .spc-bullet-list.no-dot li::before {
  display: none;
}

/* 진단결과 Detail 전용 table */
.sub-web3-detail.sub-policy-center .spc-data-table th {
  background-color: #fff;
}
.sub-web3-detail.sub-policy-center .spc-data-table td {
  padding: 0.8rem;
}
.sub-web3-detail.sub-policy-center
.spc-data-table
tbody
.spc-data-table-m-content {
  display: block;
  width: 100%;
  text-align: center;
}
.btn-toggle-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 3rem;
  background-color: var(--color-main-3);
  color: #fff;
  font-size: 1.4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-toggle-detail::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-2px) rotate(-45deg);
  transition: transform 0.3s ease;
}
.btn-toggle-detail.is-open {
  background-color: var(--sub);
}
.btn-toggle-detail.is-open::before {
  transform: translateY(2px) rotate(135deg);
}
.btn-excel-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 3rem;
  background-color: #586178;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-excel-down::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url("/images/kisa/sub/exl-download2.png") no-repeat center /
    contain;
}
.sub-policy-center .spc-data-table td.detail-full-cell {
  padding: 0;
}
.web3-result-table .detail-full-cell {
  border-bottom: 1px solid #ddd;
}
.detail-content-box {
  padding: 2rem 3rem;
  background-color: var(--bg);
}
.detail-summary {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.detail-summary-desc {
  text-align: left;
  font-size: 1.5rem;
}
.detail-empty {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main-3);
}
.txt-red {
  color: var(--text_alert);
}

/* ========================================================
  진단결과 자세히보기 펼침 내부 - 오류/경고 탭 및 결과 목록
  (디자인에 없는 기존 UI를 .detail-content-box 구조에 맞춰 이식)
======================================================== */
.detail-content-box h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; text-align: left; }
.detail-content-box h4 { color: #676767; font-weight: bold; font-size: 1.4rem; margin: 0 0 1.2rem; padding-left: 1.6rem; text-align: left; }
.detail-content-box .transtion_tab { overflow: hidden; border-bottom: 1px solid #c3c7ce; margin: 1.5rem 0 1.3rem; padding: 0; }
.detail-content-box .transtion_tab li { list-style: none; cursor: pointer; border: 1px solid #bdc6d5; border-bottom: 0; margin: 0 2px 0 0; float: left; width: 121px; height: 35px; text-align: center; line-height: 19px; padding: 7px 0 0 0; color: #555; font-size: 14px; background-color: #f9f9fb; border-top-left-radius: 3px; border-top-right-radius: 3px; background-repeat: no-repeat; background-position: 26px 8px; }
.detail-content-box .transtion_tab li.first { background-image: url(/images/sub/ic_error1.png); }
.detail-content-box .transtion_tab li.second { background-image: url(/images/sub/ic_warning1.png); }
.detail-content-box .transtion_tab li.on { color: #fff; background-color: #89909d; font-weight: bold; border: 0; }
.detail-content-box .transtion_tab li a { color: inherit; text-decoration: none; }
.detail-content-box .transtion_tab li span { padding: 0 0 0 15px; }
.detail-content-box .demo-dt { display: flex; align-items: flex-start; gap: 10px; margin-top: 5px; border-bottom: 1px solid #d6dbe3; padding: 4px 0 15px; font-weight: normal; cursor: pointer; font-size: 14px; line-height: 22px; }
.detail-content-box .demo-dt > p { flex: 1 1 auto; min-width: 0; line-height: 20px; margin: 0; word-break: break-all; overflow-wrap: anywhere; }
.detail-content-box .demo-dt .infoshow { flex: 0 0 auto; width: 103px; height: 28px; }
.detail-content-box dl.detail_sub { border: 1px solid #ddd; border-top: 0; margin: 0; }
.detail-content-box dl.detail_sub dt { background: #f3f3f3; padding: 6px 12px 10px; border-bottom: 1px dashed #ddd; font-weight: bold; color: #555; font-size: 13px; line-height: 20px; }
.detail-content-box dl.detail_sub dd { background: #fff; padding: 8px 10px; font-size: 12px; line-height: 20px; border-bottom: 1px solid #ddd; }
.detail-content-box dl.detail_sub .sourcecd dt { background: none; border-bottom: 0; font-size: 12px; float: left; font-weight: bold; padding: 2px 5px 4px 0; line-height: 17px; }
.detail-content-box dl.detail_sub .sourcecd dd { padding: 2px 10px 11px 66px; border-bottom: 0; line-height: 17px; letter-spacing: -0.07em; }
.detail-content-box .notic2 { text-align: center; font-size: 14px; line-height: 19px; padding: 1rem 0; }
.detail-content-box .result_nowrp { padding: 20px 10px; text-align: center; background: #efefef; border: 1px solid #dcdcdc; }
.detail-content-box .ur_result { padding: 7px 0 12px; border-top: 1px dashed #ddd; }
.detail-content-box .ur_result:first-child { border-top: 0; }
.detail-content-box .ur_result::after { content: ""; display: block; clear: both; }
.detail-content-box .ur_result .linep,
.detail-content-box .ur_result .columnp,
.detail-content-box .ur_result .linkp { float: left; line-height: 21px; font-size: 12px; padding: 0 10px 0 0; }
.detail-content-box .ur_result .linep { width: 90px; }
.detail-content-box .ur_result .columnp { width: 120px; }
.detail-content-box .ur_result .linkp { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 63%; }
.detail-content-box .ur_result .explanp { clear: both; float: none; padding: 6px 10px 4px 13px; font-size: 12px; line-height: 19px; background: url(/images/sub/explanp.png) 1px 11px no-repeat; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.detail-content-box .opennesscode { padding: 6px 10px 4px 13px; font-size: 12px; line-height: 19px; background: url(/images/sub/explanp.png) 1px 8px no-repeat; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #333; }

/* 웹 표준진단 ※예외사항 */
.sub-policy-center .spc-info-group-container.websearch-noresult {
  background: var(--gray1);
}
.websearch-noresult .forum-role-extr {
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed var(--gray3);
}
.sub-web3.sub-policy-center .websearch-noresult .spc-info-group-content {
  background: var(--gray1);
}
.websearch-noresult .forum-role-bold:last-child {
  margin: 1rem 0 0;
}
.sub-web3.sub-web3-detail.sub-policy-center
.websearch-noresult
.spc-info-group-column {
  padding: 2rem 3rem 3rem 3rem;
}

/* table 속 inner table */
table.web3-result-innertable th,
table.web3-result-innertable td {
  text-align: left;
}
.sub-policy-center .spc-data-table .web3-result-innertable {
  margin-top: 2rem;
  width: 100%;
  border: 1px solid var(--gray2);
}
.sub-policy-center .spc-data-table .web3-result-innertable th {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  background: inherit;
  border-right: unset;
}
.sub-policy-center .spc-data-table .web3-result-innertable td {
  display: block;
  font-weight: 800;
  text-align: left;
  background: #fff;
  padding: 1.2rem 0.8rem;
}
.sub-web3-detail.sub-policy-center
.spc-data-table
tbody
.User-agent-detail
.spc-data-table-m-content {
  text-align: left;
}
.sub-web3-detail.sub-policy-center
.spc-data-table
tbody
.User-agent-detail
.spc-data-table-m-content
.yellow-underline {
  background: #fff8ac;
}

.btn-robotswrap {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}
.btn-robots {
  background: var(--color-main-1);
  padding: 1rem;
  color: #fff;
}
.spc-notice-red {
  color: var(--text_alert);
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .sub-web3-detail .diagnosis_investigation:has(.btn-guideline) {
    padding: 7rem 3rem 3rem 3rem;
  }
  .sub-web3-detail .investigation_lst .tit {
    width: 10rem;
  }
  .sub-web3-detail .detail-box-img {
    padding-left: 0;
    background-image: none;
  }
  .sub-web3-detail .tab_type01_ul button,
  .sub-web3-detail .tab_type01_ul a {
    width: 100%;
    min-width: 15rem;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table tbody {
    margin-bottom: 0;
    border-bottom: 0.1rem solid #e2e8f0;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table tr.detail-row {
    padding: 0;
    border-top: 0.1rem solid var(--gray2);
  }
  .sub-web3-detail.sub-policy-center .spc-data-table td {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .sub-web3-detail .detail-content-box {
    width: 100%;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table th span:first-child {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table th {
    width: 100%;
    padding: 1.2rem 0.8rem;
    margin: 0;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table tr {
    padding: 0rem;
  }
  .sub-web3-detail.sub-policy-center .spc-data-table th span {
    font-size: 1.6rem;
    margin-top: 0;
  }
  .sub-web3-detail .spc-data-table-m-title {
    width: 11rem;
  }
}

/* ========================================================
  [popup] 웹개방성진단-가이드라인
  ======================================================== */
.exmp_tab > ul {
  margin: 0 0 20px 0;
  border-bottom: 2px solid #5236ff;
}
.exmp_tab > ul li {
  float: left;
}
.exmp_tab > ul li button {
  display: block;
  padding: 10px 32px 12px;
  line-height: 20px;
  font-size: 16px;
  color: #777;
  background: #eaeaea;
  margin-right: 4px;
  min-width: 110px;
  text-align: center;
  text-decoration: none;
}
.exmp_tab > ul li button.on {
  color: #fff;
  background-color: #5236ff;
}
.exmp_tab > ul li button:hover {
  color: #fff;
  background-color: #5236ff;
}
.hmpop_wrap .hmpop_header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  line-height: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: #485566;
}
.hmpop_wrap .hmpop_header h1 {
  font-size: 16px;
  color: #fff;
  padding-right: 30px;
  margin: 0;
  padding: 10px 0 14px;
  font-weight: bold;
}
.hmpop_wrap .hmpop_header a.hmpop_close {
  position: absolute;
  top: 12px;
  right: 21px;
}
.hmpop_wrap .hmpop_content {
  padding: 20px 20px;
  line-height: 1.5em;
  color: #555555;
}
.hmpop_wrap .hmpop_content p {
  margin: 0;
}
.hmpop_wrap .strapline02 {
  background: url(/images/renew/popbullet02.png) left center no-repeat;
  padding-left: 13px;
  font-size: 15px;
  color: #000;
  font-family: "맑은 고딕", "Malgun Gothic";
  font-weight: bold;
  margin: 30px 0 5px;
}
.hmpop_wrap .blt01 li {
  background: url(/images/sub/blt_dot.png) left 7px no-repeat;
  padding-left: 15px;
  font-size: 13px;
  line-height: 21px;
}
.hmpop_wrap .blt02 li {
  background: url(/images/sub_common/depdesbg.gif) no-repeat left 9px;
  padding-left: 10px;
  font-size: 14px;
  color: #666;
  line-height: 20px;
}
.hmpop_wrap .blt02 li a {
  color: #555;
}
.hmpop_wrap .blt03 dt {
  background: url(/images/sub/popblt03.gif) no-repeat left 4px;
  padding-left: 10px;
  font-size: 13px;
  color: #444;
  line-height: 20px;
}
.hmpop_wrap .blt03 dd {
  margin: 10px 0 10px 10px;
}
.hmpop_wrap .blt02 li .company_name {
  color: #688aca;
}
.hmpop_wrap .blt02 li .company_name img {
  vertical-align: text-top;
  margin-left: 5px;
}
.hmpop_content .sub_h3tit {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #5236ff;
}
.hmpop_content .grubox {
  background: #f8f9fc;
  border: 1px solid #d6dbe3;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 10px 10px 4px 10px;
  text-align: center;
  line-height: 20px;
  margin-top: 10px;
  color: #666666;
}
.clfix {
  zoom: 1;
}
.clfix:after,
.clfix:before {
  line-height: 0;
  display: table;
  content: "";
}
.clfix:after {
  clear: both;
}

/* 웹개방성진단-가이드라인 전용 테이블 (white) */
.report_sec_udt {
  display: none;
}
.whtbg_tbl {
  width: 100%;
  line-height: 23px;
  margin: 0 0 10px 0;
  border-top: 2px solid #000;
}
.whtbg_tbl th {
  border-right: 1px solid #ddd;
  font-weight: 400;
  color: #333;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 23px;
  word-break: keep-all;
}
.whtbg_tbl td {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: start;
  padding: 10px 15px;
  vertical-align: middle;
  word-break: break-all;
  line-height: 21px;
  font-size: 15px;
  word-break: keep-all;
}
.whtbg_tbl th:last-child,
.whtbg_tbl td:last-child {
  border-right: 0;
}
.whtbg_tbl2 {
  width: 100%;
  line-height: 23px;
  margin: 0 0 10px 0;
  border-top: 2px solid #000;
}
.whtbg_tbl2 th {
  border-right: 1px solid #ddd;
  font-weight: 400;
  color: #333;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 23px;
  word-break: keep-all;
}
.whtbg_tbl2 .td1 {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  padding: 10px 15px;
  vertical-align: middle;
  word-break: break-all;
  line-height: 21px;
  font-size: 15px;
  word-break: keep-all;
  height: 40px;
}
.whtbg_tbl2 .td2 {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: left;
  padding: 10px 15px;
  vertical-align: middle;
  word-break: break-all;
  line-height: 21px;
  font-size: 15px;
  word-break: keep-all;
  height: 40px;
}
.whtbg_tbl2 th:last-child,
.whtbg_tbl2 td:last-child {
  border-right: 0;
}
.emp_blue {
  display: block;
  color: #5236ff;
  font-size: 12px;
}
.emp_orange {
  display: block;
  color: #f9772b;
  font-size: 12px;
}
.radizBox03 img {
  display: inline;
}
.exmmg {
  display: inline;
}
@media (max-width: 768px) {
  .whtbg_tbl th,
  .whtbg_tbl td {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 4px 8px;
  }
}

/* ========================================================
  WEB3.0_진단도구 FAQ
  ======================================================== */
.sub-web3.sub-policy-center #tab_content3 .spc-purpose-box .diag-notice-desc {
  line-height: 1.5;
}
.faq-accordion {
  border-top: 1px solid #333;
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--gray2);
}
.faq-q button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  text-align: left;
  padding: 2rem 5rem 2rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-q-arrow {
  position: absolute;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition:
          transform 0.3s ease,
          border-color 0.3s ease;
}
button[aria-expanded="true"] .faq-q-arrow {
  transform: rotate(-135deg);
  border-right: 2px solid var(--color-main-3);
  border-bottom: 2px solid var(--color-main-3);
}
.faq-a {
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--gray2);
}
.faq-a .faq-awrap {
  display: flex;
  align-items: start;
  gap: 2rem;
  text-align: left;
  padding: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
.faq-a[hidden] {
  display: none;
}
.q-mark,
.a-mark {
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.q-mark {
  color: var(--color-main-3);
  border: 1px solid var(--color-main-3);
}
.a-mark {
  color: #fff;
  background: var(--color-main-3);
  border: 1px solid var(--color-main-3);
}

/* ========================================================
  Sub_Detail
======================================================== */
.title-back-group {
  position: absolute;
  left: 0;
  bottom: 2rem;
}
.btn-history-back {
  width: 5rem;
  height: 5rem;
}
.sub-detail.sub-policy-center .spc-purpose-box {
  border: unset;
}
.sub-detail.sub-policy-center section .spc-section-title {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray2);
}

.sub-detail.sub-policy-center section .spc-section-title .spc-title{ font-weight:700; font-size:2.8rem; }

/* 최신동향 하위 디테일용 본문 */
.sub-detail.sub-policy-center .file-wrap,
.sub-detail.sub-policy-center .hash-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0 2rem;
}
.file-wrap .file-tit,
.hash-wrap .hash-tit {
  max-width: 10rem;
  background: var(--color-main-1);
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.file-wrap .file-list .file-link,
.hash-wrap .hash-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.file-wrap .file-list .file-name,
.hash-wrap .hash-name {
  color: var(--sub);
}
.file-icon {
  min-width: 13px;
}

.sub-detail .spc-purpose-box-text{ width:100%; }

/* 성과사례 하위 디테일용 본문 */
.case-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.case-detail-tit {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0;
  border-top: 2px solid var(--color-main-1);
  border-bottom: 1px solid var(--gray2);
}
.case-detail-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.case-detail-img img,
.case-detail-img video {
  max-width: 100rem;
  min-width: 0;
  height: auto;
  object-fit: cover;
}

/* 이전글 다음글 */
.sub-detail.sub-policy-center .spc-info-group-column.sub-detail-bottom {
  border: 1px solid var(--gray3);
  border-width: 1px 0px 1px 0px;
  margin-bottom: 2rem;
}
.sub-detail.sub-policy-center
.spc-info-group-column.sub-detail-bottom
.spc-info-group-content:first-child {
  border-bottom: 1px solid var(--gray2);
}
.sub-detail.sub-policy-center .spc-info-group-column.sub-detail-bottom a {
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sub-detail.sub-policy-center .spc-info-group-column.sub-detail-bottom a:hover {
  color: var(--color-main-3);
}
.sub-detail.sub-policy-center
.spc-info-group-column.sub-detail-bottom
a
strong {
  margin-right: 4rem;
  color: var(--color-main-1);
}

@media (max-width: 1200px) {
  .sub-detail.sub-policy-center .spc-info-group-column.sub-detail-bottom {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .sub-detail.sub-policy-center .file-wrap {
    gap: 1rem;
  }
  .sub-detail.sub-policy-center
  .spc-info-group-column.sub-detail-bottom
  a
  strong {
    display: flex;
    margin-bottom: 0.4rem;
  }
  .sub-policy-center section .spc-section-title .spc-title {
    font-size: 2.4rem;
    font-weight: 800;
  }
}

@media (max-width: 450px) {
  .sub-detail .sub-h2 {
    max-width: 28rem;
  }
}

/* 성과사례·영상 슬라이더 하단 영역 강제 패딩 부여 (숫자형 페이징 자리) */
.detail-card-type.slick-slider,
.video-card-item.slick-slider {
  padding-bottom:40px;
}

/* 도트 컨테이너 강제 노출 및 정렬 */
.detail-card-type.slick-slider .slick-dots {
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: center;
  list-style: none;
  width: 100% ;
  padding: 0;
  margin: 0;
  gap: 10px;
  z-index: 999;
}

/* [제거됨] 레거시 원형 도트 스타일 — 숫자형 페이지네이션(.num-dot, 위 2148~2191)과 충돌하여
   활성 숫자에 12px 보라색 원이 겹쳐 보이고 높이가 눌리는 문제가 있어 삭제.
   도트 외형은 숫자형 블록이 전담함. */
.blockchain-value-wrap .effect-badge {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blockchain-value-wrap .effect-badge::before {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background: url(/images/kisa/sub/intro_effect_icon01.png) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  left: calc(50% - 60px);
  top: 39%;
}

.blockchain-value-wrap .effect-badge::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background: url(/images/kisa/sub/intro_effect_icon02.png) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  right: calc(50% - 60px);
  top: 39%;
}

.blockchain-value-wrap .effect-badge span {
  display: inline-block;
  font-weight: 700;
}