/* Global — 브랜드 토큰(색·폰트 패밀리)은 공통, 간격·타이포·그림자는 뷰포트별 :root 오버라이드 */
/* 기준: html { font-size: 16px } → 1rem = 16px */
:root {
  --font-kr: 'Noto Sans KR', sans-serif;
  --font-en: 'IBM Plex Sans', sans-serif;
  --font-atl: 'Charlie Display', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Noto Sans', sans-serif;

  --fc-dark: #191919;
  --fc-light: #fff;

  --fc-natural-50: #E8E8E8;
  --fc-natural-100: #B8B8B8;
  --fc-natural-200: #969696;
  --fc-natural-300: #666;
  --fc-natural-400: #484848;

  --bg-0: #191919;
  --bg-50: #F9FBFB;
  --bg-100: #EEF2F2;
  --bg-200: #E5ECEC;
  --bg-300: #D9E4E4;
  --bg-400: #D2DEDE;
  --bg-500: #C7D6D6;
  --bg-600: #B5C3C3;
  --bg-700: #8D9898;
  --bg-800: #6D7676;
  --bg-900: #545A5A;

  --atl-50 : #F1F5F8;
  --atl-100 : #F0F2F6;
  --atl-200 : #357DE8;
  --atl-300 : #1868DB;
  --atl-400 : #0052CC;

  --dmove-50: #F1F8F8; /* E9F7F7 */
  --dmove-100: #BAE6E6;
  --dmove-200: #99D9D9;
  --dmove-300: #6AC8C8;
  --dmove-400: #4DBDBD;
  --dmove-500: #21ADAD;
  --dmove-600: #1E9D9D;
  --dmove-700: #177B7B;
  --dmove-800: #125F5F;
  --dmove-900: #0E4949;
  --dmove-bright: #28C5C7;

  /* ≥1281px: 대형 데스크톱(기존 값 기준) */
  --radius-1: 0.25rem;   /* 4px */
  --radius-2: 0.5rem;    /* 8px */
  --radius-3: 1rem;      /* 16px */
  --radius-4: 1.5rem;    /* 24px */
  --radius-5: 50%;

  --gap-1: 0.5rem;       /* 8px */
  --gap-2: 1rem;         /* 16px */
  --gap-3: 1.5rem;       /* 24px */
  --gap-4: 2rem;         /* 32px */
  --gap-5: 2.5rem;       /* 40px */
  --gap-6: 3rem;         /* 48px */

  --fs-h1: 4.75rem;      /* 76px */
  --fs-h2: 3.5rem;       /* 56px */
  --fs-h3: 2.5rem;       /* 40px */
  --fs-h4: 2rem;         /* 32px */
  --fs-h5: 1.625rem;     /* 26px */
  --fs-p: 1.375rem;      /* 22px */
  --fs-span: 1.125rem;   /* 18px */

  --line-ht-1: 1.3;
  --line-ht-2: 1.6;

  /* box-shadow는 hairline 보존을 위해 px 유지 */
  --box-shadow-dark: 0 2px 16px rgba(0, 0, 0, 0.06);
  --box-shadow-blue: 0 2px 16px #d3d7e5;
  --box-shadow-dmove: 0 2px 16px #d6e7e7;
}

@media (max-width: 1280px) {
  :root {
    --radius-1: 0.25rem;   /* 4px */
    --radius-2: 0.5rem;    /* 8px */
    --radius-3: 0.875rem;  /* 14px */
    --radius-4: 1.25rem;   /* 20px */
    --radius-5: 50%;

    --gap-1: 0.5rem;       /* 8px */
    --gap-2: 0.875rem;     /* 14px */
    --gap-3: 1.375rem;     /* 22px */
    --gap-4: 1.75rem;      /* 28px */
    --gap-5: 2.25rem;      /* 36px */
    --gap-6: 2.75rem;      /* 44px */

    --fs-h1: 4rem;         /* 64px */
    --fs-h2: 3rem;         /* 48px */
    --fs-h3: 2.25rem;      /* 36px */
    --fs-h4: 1.75rem;      /* 28px */
    --fs-h5: 1.375rem;     /* 22px */
    --fs-p: 1.1875rem;     /* 19px */
    --fs-span: 1rem;       /* 16px */

    --line-ht-1: 1.28;
    --line-ht-2: 1.62;

    --box-shadow-dark: 0 2px 14px rgba(0, 0, 0, 0.055);
    --box-shadow-blue: 0 2px 14px #d5d9e6;
    --box-shadow-dmove: 0 2px 14px #d8e8e8;
  }
}

@media (max-width: 1024px) {
  :root {
    --radius-1: 0.25rem;   /* 4px */
    --radius-2: 0.375rem;  /* 6px */
    --radius-3: 0.75rem;   /* 12px */
    --radius-4: 1.125rem;  /* 18px */
    --radius-5: 50%;

    --gap-1: 0.375rem;     /* 6px */
    --gap-2: 0.75rem;      /* 12px */
    --gap-3: 1.125rem;     /* 18px */
    --gap-4: 1.5rem;       /* 24px */
    --gap-5: 1.875rem;     /* 30px */
    --gap-6: 2.25rem;      /* 36px */

    --fs-h1: 3.25rem;      /* 52px */
    --fs-h2: 2.5rem;       /* 40px */
    --fs-h3: 2rem;         /* 32px */
    --fs-h4: 1.625rem;     /* 26px */
    --fs-h5: 1.25rem;      /* 20px */
    --fs-p: 1.0625rem;     /* 17px */
    --fs-span: 0.9375rem;  /* 15px */

    --line-ht-1: 1.3;
    --line-ht-2: 1.6;

    --box-shadow-dark: 0 2px 12px rgba(0, 0, 0, 0.05);
    --box-shadow-blue: 0 2px 12px #d8dce8;
    --box-shadow-dmove: 0 2px 12px #daeaea;
  }
}

@media (max-width: 768px) {
  :root {
    --radius-1: 0.25rem;   /* 4px */
    --radius-2: 0.375rem;  /* 6px */
    --radius-3: 0.625rem;  /* 10px */
    --radius-4: 1rem;      /* 16px */
    --radius-5: 50%;

    --gap-1: 0.375rem;     /* 6px */
    --gap-2: 0.625rem;     /* 10px */
    --gap-3: 0.875rem;     /* 14px */
    --gap-4: 1.25rem;      /* 20px */
    --gap-5: 1.5rem;       /* 24px */
    --gap-6: 1.75rem;      /* 28px */

    --fs-h1: 2.25rem;      /* 36px */
    --fs-h2: 1.875rem;     /* 30px */
    --fs-h3: 1.625rem;     /* 26px */
    --fs-h4: 1.375rem;     /* 22px */
    --fs-h5: 1.125rem;     /* 18px */
    --fs-p: 1rem;          /* 16px */
    --fs-span: 0.875rem;   /* 14px */

    --line-ht-1: 1.32;
    --line-ht-2: 1.58;

    --box-shadow-dark: 0 2px 10px rgba(0, 0, 0, 0.045);
    --box-shadow-blue: 0 2px 10px #e0e4ef;
    --box-shadow-dmove: 0 2px 10px #e0efef;
  }
}

@media (max-width: 480px) {
  :root {
    --radius-1: 0.1875rem; /* 3px */
    --radius-2: 0.375rem;  /* 6px */
    --radius-3: 0.5rem;    /* 8px */
    --radius-4: 0.875rem;  /* 14px */
    --radius-5: 50%;

    --gap-1: 0.25rem;      /* 4px */
    --gap-2: 0.5rem;       /* 8px */
    --gap-3: 0.75rem;      /* 12px */
    --gap-4: 1rem;         /* 16px */
    --gap-5: 1.25rem;      /* 20px */
    --gap-6: 1.5rem;       /* 24px */

    --fs-h1: 2rem;         /* 32px */
    --fs-h2: 1.75rem;      /* 28px */
    --fs-h3: 1.375rem;     /* 22px */
    --fs-h4: 1.25rem;      /* 20px */
    --fs-h5: 1.0625rem;    /* 17px */
    --fs-p: 0.9375rem;     /* 15px */
    --fs-span: 0.8125rem;  /* 13px */

    --line-ht-1: 1.35;
    --line-ht-2: 1.55;

    --box-shadow-dark: 0 1px 8px rgba(0, 0, 0, 0.04);
    --box-shadow-blue: 0 1px 8px #e6eaf4;
    --box-shadow-dmove: 0 1px 8px #e6f2f2;
  }
}

.pt16 {padding-top: 1rem;}
.mt0 {margin-top: 0;}
.mt16 {margin-top: 1rem;}
.mt32 {margin-top: 2rem;}
.mt40 {margin-top: 2.5rem;}
.mt48 {margin-top: 3rem;}
.mt56 {margin-top: 3.5rem;}
.mt80 {margin-top: 5rem;}

.bg-dmove-50 {background-color: #F2F8F8;}
.bg-dmove-500 {background-color: #21ADAD;}
.bg-blue-50 {background-color: #f8fafd;}
.bg-blue-500 {background-color: #0052CC;}

/* 텍스트 */
.fontType-h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}
.fontType-h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
}
.fontType-h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
}
.fontType-h3.en {font-weight: 800;}
.fontType-h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
}
.fontType-h5 {
  font-size: var(--fs-h5);
  font-weight: 400;
  color: var(--fc-natural-300);
}
.fontType-p {
  font-size: var(--fs-p);
  font-weight: 400;
}
.fontType-span {
  font-size: var(--fs-span);
  font-weight: 400;
  color: var(--fc-natural-300);
}

/* 버튼 */
.btnType-1 {
  background-color: var(--fc-light);
  color: var(--dmove-500) !important;
  padding: 0.5rem;
  padding-left: 1rem;
  border-radius: var(--radius-4);
  font-size: 1.125rem;
  line-height: 2;
  display: inline-block;
  cursor: pointer;
}
.btnType-2 {
  background-color: var(--dmove-500);
  color: #fff;
  padding: 0.5rem 1rem;
  padding-left: 1.5rem;
  border-radius: var(--radius-4);
  font-size: 1.125rem;
  line-height: 2;
  display: inline-block;
  cursor: pointer;
}
.btnType-3 {
  background-color: var(--dmove-50);
  color: var(--dmove-500) !important;
  padding: 0.5rem;
  padding-left: 1rem;
  border-radius: var(--radius-4);
  font-size: 1.125rem;
  line-height: 2;
}
.btnType-1 svg,
.btnType-2 svg{
  background-color: var(--dmove-500);
  color: #fff;
  border-radius: var(--radius-5);
  margin-left: 0.625rem;
  padding: 0.375rem;
  box-sizing: content-box;
  overflow: hidden;
  display: inline-block;
}
.btnType-3 svg {
  padding: 0.375rem;
  box-sizing: content-box;
  overflow: hidden;
}
.btnType-1 svg path {
  transition: transform 0.35s ease;
}
.btnType-1 .arrow2 {
  transform: translateX(-120%);
}
.btnType-1:hover .arrow1 {
  transform: translateX(120%);
}
.btnType-1:hover .arrow2 {
  transform: translateX(0);
}
.btnType-2:hover {
  background: #0b0b0b;
}
.btnType-2:hover svg {
  background: #0b0b0b;
}
.solution-detail .overview .btnType-2:hover {
  background: #fff;
  color: #0b0b0b;
}
.solution-detail .overview .btnType-2:hover svg {
  background: #fff;
  color: #0b0b0b;
}

html {font-size: 16px; scroll-behavior: smooth;}
body {font-family: var(--font-kr); color: #0b0b0b; line-height: 1.6; letter-spacing: -0.015em; word-break: keep-all; text-wrap: balance;}
body.modal-open {overflow: hidden;}
.en {font-family: var(--font-en);}
.inner {height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;}
.b-flex {display: flex;}
.t_c { text-align: center !important;}
.t_w {text-wrap: auto !important;}
.wrap {position: relative;}
.blind {display: none !important;}
/* .pc_none {display: none;}
.mo_none {display: none;} */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
li::marker {
  color: var(--dmove-500);
}

@media (max-width: 1280px){.mo_none {display: none;}}
@media (max-width: 1024px){}
@media (max-width: 768px){.pc_none {display: none;}}

/* 하단 약관 */
.privacy {
  text-wrap: auto;
}

/* Floating Top Button */
.floating-top-button {
  position: fixed;
  right: 32px;   /* fixed 위치값 px 유지 */
  bottom: 32px;  /* fixed 위치값 px 유지 */
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-5);
  border: none;
  background: linear-gradient(135deg, var(--dmove-500) 0%, var(--dmove-600) 100%);
  color: var(--fc-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);  */
  cursor: pointer;
}
.floating-top-button::after {
  content: 'TOP';
}
.floating-top-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

/* 다크 영역 */
.detail .section--dark {
  background: #0b1320;
  color: #fff;
}
.detail .section--dark .section--head__heading,
.detail .section--dark .section--head__sub-heading,
.detail .section--dark .service-section__desc {
  color: #fff;
}
.detail .section--dark .sub-hero__title,
.detail .section--dark .sub-hero__desc {
  color: #fff;
}
.detail .section--dark .section--hero__label {
  color: rgba(255, 255, 255, 0.7);
}
.detail .section--solution-benefit.section--dark p {
  color: #fff;
}
.detail .section--security-summary.section--dark .section__desc {
  color: #fff;
}
.detail .section--security-summary.section--dark .sub-summary-list__title {
  color: var(--fc-dark);
}

/* ------------------ Sub Global ------------------ */
/* 페이지 헤더: 밝은 히어로 위에서 어두운 텍스트 */
.wrap .header .gnb .gnb__link,
.wrap .header .shortCut a {
  color: var(--fc-dark);
}
.wrap .header .shortCut li {
  background-color: rgba(11, 11, 11, 0.08);
}
.wrap .header .shortCut a:hover {
  color: var(--dmove-600);
}

/* 서브 헤더 (별도 섹션) */
.detail  .section-head {
  background-image: url(../img/sub/sub-headerBg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7.5rem 0 5rem;
  color: var(--fc-dark);
  font-family: var(--font-en);
}
.detail  .section-head .inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.detail  .section--head__breadcrumb {
  width: fit-content;
  color: var(--fc-natural-300);
  margin-bottom: 1rem;
  margin-left: auto;
  text-align: end;
  background-color: #ffffff80;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-4);
}
.detail  .section--head__breadcrumb .current-page {
  color: var(--dmove-400);
  font-weight: bold;
}

/* 서브 히어로 텍스트 */
.detail  .section--hero__label {
  font-size: var(--fs-span);
  color: var(--dmove-600);
  font-weight: 600;
  margin-bottom: 2rem;
}
.detail  .section--hero__label img {
  height: 40px;
}
.detail  .section__desc {
  font-size: var(--fs-p);
  color: var(--fc-natural-300);
  line-height: var(--line-ht-2);
}
.detail  .section--head__sub-heading {
  text-align: center;
  color: var(--dmove-500);
  font-size: var(--fs-h5);
  font-family: var(--font-en);
  font-weight: 600;
  margin-bottom: 1rem;
}
.detail .section--head__headline,
.detail .section--head__heading {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--line-ht-2);
}
.detail .section__header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
  align-items: flex-start;
}

/* Swiper */
.solution-detail .main .swiper {
  position: relative;
  overflow: hidden;
  /* padding-bottom: 80px; */
}

/* Swiper 화살표 */
.sliderWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sliderWrap .sliderContainer {
  display: flex;
  align-items: center;
  position: relative;
}
.sliderContainer .swiper-pagination-custom {
  display: flex;
  align-items: center;
  left: -100%;
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
}
.swiper-pagination-custom .current {
  font-weight: 500;
  color: var(--dmove-500);
}
.swiper-pagination-custom .total {
  font-weight: 500;
  color: var(--fc-natural-100);
}
.progress__bar {
  position:relative;
  width:80%;
  height:4px;
  margin:0 1.25rem;
  background-color:var(--dmove-50);
}
.progress__fill {
  position:absolute;
  inset:0;
  display:block;
  height: 100%;
  background-color: var(--dmove-500);
}
.sliderWrap .sliderNav {margin: 0;}
.sliderNav {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-2);
  margin-top: 5rem;
}
.sliderNav__btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-5);
  border: 1px solid var(--bg-300);
  background-color: var(--fc-light);
  color: var(--fc-natural-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.sliderNav__btn--prev {
  transform: scaleX(-1);
}
.sliderNav__btn:hover {
  background-color: var(--dmove-600);
  border-color: var(--dmove-600);
}
.sliderNav__btn:hover svg {color: #fff;}
.sliderNav__btn.swiper-button-disabled {
  border: 1px solid var(--bg-300);
  background-color: var(--fc-light);
  color: var(--fc-natural-300);
}
.sliderNav__btn.swiper-button-disabled svg {
  color: var(--fc-natural-300);
}

/* CTA */
.detail .section--cta {
  background-image: url(../img/sub/sub-cta-visual.webp);
  background-repeat: no-repeat; 
  background-position-y: center;
  -webkit-background-size: cover;
  background-size: cover;
}
.detail .section--cta .section__header{
  text-align: left;
}
.section--cta-end .section__header p {
  color: var(--dmove-500);
  font-weight: 700;
}

/* -------- Press/Tech영역(검색) -------- */
.section-content {padding: 6.25rem 0;} /* && privacy */
.table-detail section.board-wrap--fc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 7.5rem;
  box-sizing: border-box;
}
/* 검색 영역 */
.table-detail .board-wrap--fc .board-search-wrap--fc {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
}
.table-detail .board-wrap--fc .board-search-wrap--fc form {
  min-width: 0;
}
.table-detail .board-wrap--fc .board-search-wrap--fc fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.table-detail .board-wrap--fc .board-search-wrap--fc legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.table-detail .board-wrap--fc .search-select-wrap--fc {
  margin: 0;
}
.table-detail .board-wrap--fc .search-select-wrap--fc select {
  /* min-width: 140px; */
  padding: 0.625rem 2.25rem 0.625rem 0.875rem;
  border: 1px solid var(--bg-300);
  border-radius: var(--radius-2);
  font-size: 0.9375rem;
  color: var(--fc-dark);
  background-color: var(--fc-light);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23484848' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.table-detail .board-wrap--fc .search-input-wrap--fc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 200px;
  min-width: 160px;
  margin: 0;
}
.table-detail .board-wrap--fc .search-input-inner--fc {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.table-detail .board-wrap--fc .search-input-wrap--fc input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 0.625rem 2.75rem 0.625rem 0.875rem;
  border: 1px solid var(--bg-300);
  border-radius: var(--radius-2);
  font-size: 0.9375rem;
  color: var(--fc-dark);
  background-color: var(--fc-light);
}
.table-detail .board-wrap--fc .search-input-wrap--fc input[type="text"]:focus {
  outline: none;
  border-color: var(--dmove-400);
  box-shadow: 0 0 0 3px rgba(33, 173, 173, 0.15);
}
.table-detail .board-wrap--fc .search-submit--fc {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-2);
  background: transparent;
  color: var(--fc-natural-400);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.table-detail .board-wrap--fc .search-submit--fc:hover {
  color: var(--dmove-600);
  background-color: var(--dmove-50);
}
.table-detail .board-wrap--fc .search-submit--fc:focus-visible {
  outline: none;
  color: var(--dmove-600);
  box-shadow: 0 0 0 3px rgba(33, 173, 173, 0.25);
}
.table-detail .board-wrap--fc .board_list_total--fc {
  flex-shrink: 0;
  font-size: var(--fs-span);
  color: var(--fc-natural-300);
  line-height: var(--line-ht-2);
}
.table-detail .board-wrap--fc .search-total-num__accent--fc {
  font-weight: 700;
  color: var(--dmove-600);
}
/* 게시판 테이블 */
.table-detail .board-wrap--fc table.board-list--fc,
.table-detail .board-wrap--fc table.basic-board-list--fc {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  line-height: var(--line-ht-2);
  background-color: var(--fc-light);
  border-radius: var(--radius-3);
  overflow: hidden;
}
.table-detail .board-wrap--fc table.board-list--fc thead th,
.table-detail .board-wrap--fc table.basic-board-list--fc thead th {
  padding: 1rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fc-dark);
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(180deg, var(--dmove-50) 0%, var(--bg-50) 100%);
  border-bottom: 1px solid var(--dmove-300);
  white-space: nowrap;
}
.table-detail .board-wrap--fc table.board-list--fc thead th:first-child,
.table-detail .board-wrap--fc table.basic-board-list--fc thead th:first-child {
  border-top-left-radius: 0.75rem;
}
.table-detail .board-wrap--fc table.board-list--fc thead th:last-child,
.table-detail .board-wrap--fc table.basic-board-list--fc thead th:last-child {
  border-top-right-radius: 0.75rem;
}
.table-detail .board-wrap--fc table.board-list--fc tbody td,
.table-detail .board-wrap--fc table.basic-board-list--fc tbody td {
  padding: 1rem 0.875rem;
  vertical-align: middle;
  color: var(--fc-natural-400);
  border-bottom: 1px solid var(--bg-200);
  transition: background-color 0.2s ease;
}
.table-detail .board-wrap--fc table.board-list--fc tbody tr:last-child td,
.table-detail .board-wrap--fc table.basic-board-list--fc tbody tr:last-child td {
  border-bottom: 0;
}
.table-detail .board-wrap--fc table.board-list--fc tbody tr:last-child td:first-child,
.table-detail .board-wrap--fc table.basic-board-list--fc tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.75rem;
}
.table-detail .board-wrap--fc table.board-list--fc tbody tr:last-child td:last-child,
.table-detail .board-wrap--fc table.basic-board-list--fc tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.75rem;
}
.table-detail .board-wrap--fc table.board-list--fc tbody tr:hover td,
.table-detail .board-wrap--fc table.basic-board-list--fc tbody tr:hover td {
  background-color: rgba(241, 248, 248, 0.65);
}
.table-detail .board-wrap--fc .board-num--fc,
.table-detail .board-wrap--fc .board-hit--fc {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--fc-natural-300);
  font-size: 0.875rem;
}
.table-detail .board-wrap--fc .board-date--fc {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-size: 0.875rem;
  color: var(--fc-natural-300);
}
.table-detail .board-wrap--fc .board-name--fc {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fc-natural-400);
}
.table-detail .board-wrap--fc .board-subject--fc {
  text-align: left;
}
.table-detail .board-wrap--fc .board-subject--fc a {
  color: var(--fc-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: var(--line-ht-2);
  transition: color 0.2s ease;
}
.table-detail .board-wrap--fc .board-subject--fc a:hover {
  color: var(--dmove-600);
}
.table-detail .board-wrap--fc .board-subject--fc .list-file--fc {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-top: -2px; /* hairline 위치 보정용 px 유지 */
  opacity: 0.75;
}
/* 페이징 */
.table-detail .board-wrap--fc .board-paging {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}
.table-detail .board-wrap--fc .board-paging ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-1);
}
.table-detail .board-wrap--fc .board-paging a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-2);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fc-natural-300);
  text-decoration: none;
  border: 1px solid var(--bg-300);
  background-color: var(--fc-light);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.table-detail .board-wrap--fc .board-paging a:hover {
  color: var(--dmove-600);
  border-color: var(--dmove-300);
  background-color: var(--dmove-50);
}
.table-detail .board-wrap--fc .board-paging li.on a {
  color: var(--fc-light);
  background-color: var(--dmove-500);
  border-color: var(--dmove-500);
  font-weight: 600;
}
.table-detail .board-wrap--fc .board-paging li.on a:hover {
  color: var(--fc-light);
  background-color: var(--dmove-600);
  border-color: var(--dmove-600);
}

/* -------- Responsive refinement -------- */
@media (max-width: 1280px) {
  .inner {
    max-width: 100%;
    padding: 0 3rem;
  }
  .detail .section-head {
    padding: 6.75rem 0 4.5rem;
  }
  .detail .section--head__headline,
  .detail .section--head__heading {
    font-size: var(--fs-h3);
  }
}

@media (max-width: 1024px) {
  .detail .section--head__breadcrumb {
    margin-left: 0;
    text-align: left;
  }
  .sliderWrap .sliderContainer {
    margin-bottom: 2rem;
  }
  .swiper-pagination.component-pagination.swiper-pagination-custom.swiper-pagination-horizontal {
    left: 0;
    width: 50%;
  }
  .sliderWrap .sliderNav {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .section--head__breadcrumb {display: none;}
  .inner {padding: 0 1rem;}
  .mt16 {margin-top: 0.5rem;}
  .mt32 {margin-top: 1rem;}
  .mt40 {margin-top: 1.5rem;}
  .mt48 {margin-top: 2rem;}
  .mt56 {margin-top: 2.5rem;}
  .mt80 {margin-top: 3rem;}
  .detail .section-head {
    padding: 5.75rem 0 1.25rem;
  }
  .sliderWrap {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-2);
  }
  .sliderNav {
    margin-top: 2rem;
    justify-content: center;
  }
  .btnType-1, .btnType-2, .btnType-3  {
    border-radius: 30px; /* TODO: 디자인 의도 확인 후 토큰화 검토 */
    font-size: 1.05rem;
    padding: 0.25rem;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 2rem;
    width: fit-content;
  }
  .table-detail section.board-wrap--fc {
    padding: 3rem 1rem 5rem;
  }
  .table-detail .board-wrap--fc .board-search-wrap--fc {
    flex-direction: column-reverse;
    align-items: stretch;
    margin-bottom: 0;
  }
  .table-detail .board-wrap--fc .board_list_total--fc {
    text-align: end;
    font-size: var(--fs-h5);
  }
  .table-detail .board-wrap--fc table.board-list--fc,
  .table-detail .board-wrap--fc table.basic-board-list--fc {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-2);
  }
  .table-detail .board-wrap--fc table.board-list--fc thead th,
  .table-detail .board-wrap--fc table.basic-board-list--fc thead th,
  .table-detail .board-wrap--fc table.board-list--fc tbody td,
  .table-detail .board-wrap--fc table.basic-board-list--fc tbody td {
    padding: 0.75rem 0.625rem;
    font-size: 0.875rem;
  }
  .section-content {padding: 2rem 0;}
  .detail .section--cta {
    background-image: url(../img/sub/sub-cta-visual.webp);
    background-repeat: no-repeat;
    background-position-y: unset;
    background-position-x: center;
    background-size: cover;
    text-wrap: auto;
  }
  .floating-top-button {
    right: 16px;   /* fixed 위치값 px 유지 */
    bottom: 16px;  /* fixed 위치값 px 유지 */
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .floating-top-button {
    width: 42px;
    height: 42px;
    font-size: 0.6875rem;
  }
}
