/* 1) GNB를 플렉스로 깔끔 정리 (float/absolute 영향 제거) */
#shGnb {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px;             /* 로고-메뉴 간 기본 간격 */
  margin: 0 !important;
  padding: 0 !important; /* GNB 자체 패딩 제거 */
}

/* 2) 로고: 왼쪽으로 딱 붙도록 */
#shGnb .sh_logo {
  position: static !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}
#shGnb .sh_logo img { display: block; }

/* 3) 메뉴: 가로 배치, li 간격은 gap/패딩으로만 관리 */
#shGnb .sh_nav {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;      /* li 간격 (더 줄이려면 4~6px) */
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
#shGnb .sh_nav > li { margin: 0 !important; padding: 0 !important; }
#shGnb .sh_nav > li > a { display:block; padding:4px 8px !important; font-size:20px !important; line-height:1.2 }

/* 4) ★ 핵심: 부모 컨테이너의 왼쪽 패딩 제거 (Gnuboard/테마에서 흔한 클래스들) */
#shGnb,
#shGnb .inner,
#shGnb .wrap,
#shGnb .container,
#hd,
#hd_wr,
#gnb,
header .container {
  padding-left: 0 !important;
}

:root{ --brand:#005a9a; --ink:#0b2e4a; }
/* 5) 그래도 왼쪽에 15~30px 정도 남는다? 
      → 부모 패딩을 뚫기 위해 GNB 자체를 살짝 왼쪽으로 당김(음수 마진) */
#shGnb {
  margin-left: -15px !important;   /* 필요시 -20px, -24px 등으로 조정 */
}


#shGnb .sh_tip{
  margin-left: auto !important;   /* 핵심 */
  display: flex !important;
  gap: 10px;                       /* li 간격 */
  list-style: none;
  margin: 0;
  padding: 0;
  float: none !important;          /* 기존 float 무력화 */
  position: static !important;     /* 기존 absolute 무력화 */
}

/* li/a 기본 정리 */
#shGnb .sh_tip > li{ margin: 0; padding: 0; }
#shGnb .sh_tip > li > a{ display:block; padding:4px 8px; }

/* (옵션) 로고만 더 당기고 싶으면 아래 한 줄만 조정
#shGnb .sh_logo { margin-left: -15px !important; }
*/
.btn-custom {
  display: inline-block;
  background-color: #005a9a;   /* 기본 배경색 */
  color: #fff;                 /* 글자색 흰색 */
  padding: 10px 20px;          /* 버튼 안 여백 */
  border-radius: 6px;          /* 둥근 모서리 */
  text-decoration: none;       /* 밑줄 제거 */
  font-weight: 600;            /* 글자 굵기 */
  transition: all 0.3s ease;   /* hover 시 부드러운 전환 */
}

.btn-custom:hover {
  background-color: #0074cc;   /* hover 시 조금 더 밝은 파랑 */
  color: #fff;
}


/* 모바일 전용 */
@media (max-width: 768px){
  /* 데스크톱 로고 숨기기 */
  #shGnb .sh_logo{
    display:none !important;
  }

  /* 모바일 로고 크기 70%로 */
  #topmenuM #m_logo{
    text-align:center;              /* 가운데 정렬 */
  }
  #topmenuM #m_logo img{
    width:80% !important;           /* 70%로 축소 */
    height:auto !important;         /* 비율 유지 */
    max-width: none !important;     /* 테마의 max-width 제한 무력화 */
  }

  /* (선택) 상단 메뉴 간격 살짝 줄이기 */
  #shGnb{ gap:8px !important; }
}

/* 모바일 전용 */
@media (max-width: 1024px){
  /* GNB 전체 숨김 */
  #shGnb{
    display:none !important;
  }

  /* 모바일 헤더 보이기(혹시 테마가 데스크톱만 보이게 했다면 대비) */
  #topmenuM{
    display:block !important;
  }

  /* 모바일 로고 왼쪽 정렬 */
  #topmenuM #m_logo{
    text-align:left !important;
    padding-left:12px;      /* 필요시 여백 조정 */
  }
  #topmenuM #m_logo img{
    display:inline-block;   /* 왼쪽 정렬 유지에 도움 */
    height:auto;
  }

  .sh_lnb_bg{ display:none !important; }

}

#mainVisual { background:#000; overflow:hidden; }
#mainVisual video{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
@media (max-width: 1024px){
  /* 모바일/태블릿에선 고정 배치 없이 자연 흐름 */
  #mainVisual .main_view{ position:relative !important; }
}


/* 리스트 형태 정돈 + 각 li 안 텍스트 가운데 */

.section-title{
   margin-left:-70px;
  text-align:center;
  background:rgba(0,90,154,.9);     /* 005a9a 계열 */
  color:#fff;
  padding:6px 12px;
  border-radius:10px;
}

#greeting1007 #event-details .section-title {
  background: transparent !important;  /* 배경 제거 */
  color: inherit !important;           /* 글자색 전역 상속 */
  margin-left: 0 !important;           /* -70px 보정 */
  padding: 0 !important;               /* 패딩 원복 (필요 시 조절) */
  border-radius: 0 !important;         /* 둥근 모서리 제거 */
}

/* 제목/설명 글자색이 흰색으로 강제되어 있었다면 일반 텍스트 색으로 */
#greeting1007 #event-details .section-title h2,
#greeting1007 #event-details .section-title p {
  color: inherit !important;           /* or 원하는 색 예: #212529 */
}


/* Steps 섹션의 섹션 타이틀에서만 배경, 장식 제거 */
#steps .section-title,
#steps .section-title::before,
#steps .section-title::after {
  background: transparent !important;
  box-shadow: none !important;
}

/* 전역에서 준 마진/패딩/둥근모서리 원복 */
#steps .section-title {
  margin-left: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* 글자색 강제되어 있다면 일반 색으로 */
#steps .section-title,
#steps .section-title h2,
#steps .section-title p {
  color: inherit !important; /* 필요하면 #212529 등으로 지정 */
}


ul[data-aos="fade-up"] li a{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* li 중앙 오버레이 텍스트(배지) */
.center-flag{
   
  position:absolute;
  inset:0;                          /* 상하좌우 꽉 채우고 */
  display:flex;
  align-items:center;               /* 수직 가운데 */
  justify-content:center;           /* 수평 가운데 */
  pointer-events:none;              /* 배지 위에서도 링크 클릭 가능 */
}
.center-flag span{
  background:rgba(0,90,154,.9);     /* 005a9a 계열 */
  color:#fff;
  padding:6px 12px;
  border-radius:10px;
  font-size:25px;
  white-space:nowrap;
}

/* atc01 전용: 모바일에서 오버레이(center-flag) 숨기기 + 타이틀 가운데 정렬 */
@media (max-width: 768px){
  #atc01 .center-flag{
    display:none !important;
  }
  #atc01 .section-title{
    /* 기존 margin-left 등 초기화 */
    margin: 8px auto 0 !important;  /* 가운데 배치 */
    text-align: center !important;
    display: block;                  /* 블록으로 두고 */
    width: fit-content;              /* 내용 너비만큼만 */
  }

	  /* 데스크톱/공통에서 혹시 남아있는 왼쪽 밀림 제거 */
	#atc01 .section-title{
	  margin-left: 0 !important;
	}
	#atc01 ul[data-aos="fade-up"] li a{
	  /* 이미 쓰고 계신 가운데 정렬 보강 */
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  text-align:center;
	}
}

/* center-flag 배지 배경을 연회색으로 */
#atc01 .center-flag span{
  
  background: rgba(243, 244, 246, 0.45);
  color: #111;               /* 가독성 좋은 진한 글자색 */
 
}


body.fullmenu-open { overflow: hidden; }                           /* 패널 열릴 때 바디 스크롤 잠금 */
#fullmenu-panel .fullmenu-head { color: var(--accent-color); }     /* 칼럼 헤드 색상 강조 */


/* === Full-down panel base === */
#fullmenu-panel{
  position: fixed;
  top: var(--header-h, 72px);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #eef2f7;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  transform: translateY(-8px);
  opacity: 0; visibility: hidden;
  transition: transform .18s ease, opacity .18s ease, visibility .18s;
  z-index: 1000;
}
#fullmenu-panel.show{
  transform: translateY(0);
  opacity: 1; visibility: visible;
}

/* 내부 폭/여백 */
#fullmenu-panel .fullmenu-inner{
  max-width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 20px 28px 28px;
}

/* 그리드 */
#fullmenu-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 24px;
}
#fullmenu-grid .fullmenu-col h6{
  margin: 0 0 8px 0;
  font-size: 20px; font-weight: 800; letter-spacing: .2px;
}
#fullmenu-grid .fullmenu-head{
  color: #005a9a; text-decoration: none;
}
#fullmenu-grid ul{ margin: 0; padding: 0; list-style: none; }
#fullmenu-grid li a{
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #2a3950; text-decoration: none; white-space: nowrap;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
#fullmenu-grid li a:hover{
  background: #f6f9fc; color: #005a9a; padding-left: 14px;
}

/* 배경(기존 .sh_lnb_bg 재사용 또는 #fullmenu-backdrop) */
#fullmenu-backdrop,
.sh_lnb_bg.fullmenu-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(3, 18, 33, .35);
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  z-index: 999;
}
#fullmenu-backdrop.show,
.sh_lnb_bg.fullmenu-backdrop.show{
  opacity: 1; visibility: visible;
}

/* 스크롤 잠금 */
body.fullmenu-open{ overflow: hidden; }

/* 반응형: 태블릿 이하에선 패널 숨김(모바일 전용 메뉴 사용) */
@media (max-width: 1024px){
  #fullmenu-panel{ display: none !important; }
}


@media (min-width: 1025px){
  /* 풀다운 사용 시, 기존 2차 드롭다운은 숨김 */
  #shGnb .sh_nav > li > ul.sh_lnb_s{ display: none !important; }
}


/* 풀다운 패널 텍스트 가로 가운데 정렬 */
#fullmenu-grid .fullmenu-col { text-align: center; }

#fullmenu-grid .fullmenu-col h6{
  display: flex;
  justify-content: center;   /* 헤드 링크도 가운데 */
  margin: 0 0 10px 0;
}

#fullmenu-grid .fullmenu-head{
  display: inline-block;     /* 가운데 정렬 유지 */
}

/* 서브 링크들(2차 메뉴) */
#fullmenu-grid ul{ margin:0; padding:0; list-style:none; }
#fullmenu-grid li a{
  display: block;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #2a3950;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;       /* 줄바꿈 원하면 이 줄 삭제 */
}

/* hover 효과: 좌우 이동 없이 색상/살짝 부각만 */
#fullmenu-grid li a:hover{
  background: #f6f9fc;
  color: #005a9a;
  transform: translateY(-1px);
}


/* === 레거시 호버 드롭다운 완전 비활성화 === */
.use-fulldown #shGnb .sh_nav > li { position: static !important; }

/* 2차메뉴 통째로 숨김 + 클릭/호버 불가(스크립트 inline 스타일도 무력화) */
.use-fulldown #shGnb .sh_nav > li > ul.sh_lnb_s{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important; top: auto !important;
}

/* :hover 규칙이 있어도 강제로 숨김 유지 */
.use-fulldown #shGnb .sh_nav > li:hover > ul.sh_lnb_s{
  display: none !important;
}

/* 테마가 쓰던 배경 레이어는 기본 비표시(풀다운 백드롭으로 재활용 시에는 show로 제어) */
.use-fulldown #sh_hd_wrapper .sh_lnb_bg:not(.fullmenu-backdrop){
  display: none !important;
}



/* (선택) 패널 열고 닫을 때 Y이동 제거해 겹침 최소화 */
#fullmenu-panel { transform: none; }
#fullmenu-panel.show { transform: none; }


/* 풀다운 패널 제목(기관소개 등) */
#fullmenu-grid .fullmenu-head{
  font-size: 20px !important;
  font-weight: 800;           /* 필요 없으면 지워도 됨 */
  line-height: 1.3;
}

/* 풀다운 패널 하위 항목(기술교육원소개 등) */
#fullmenu-grid li a{
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.45;
}


/* 인라인 font-size를 덮어쓰는 반응형(인라인보다 강하게) */
.sec_page h2{
  /* 모바일~데스크톱까지 유동 폰트 */
  font-size: clamp(26px, 3.5vw + 8px, 64px) !important;
  line-height: 1.2;
}

.sec_page .count dt{
  font-size: clamp(13px, 1.2vw + 8px, 18px) !important;
  line-height: 1.35;
}

.sec_page .count .num{
  font-size: clamp(32px, 6vw + 6px, 64px) !important;
  line-height: 1.1;
}

/* (선택) 초대형 화면에서 50pt(≈66.7px) 근사치 유지하고 싶으면 */
@media (min-width: 1600px){
  .sec_page h2,
  .sec_page .count .num{ font-size: 66px !important; }
  .sec_page .count dt{ font-size: 20px !important; }
}


#shSubBnr .tit {
  white-space: nowrap;      /* 줄바꿈 방지 → 한 줄로 */
  text-align: center;       /* 텍스트 가운데 정렬 */
  display: block;           /* 블록 요소 그대로 */
  width: 100%;              /* 부모 너비 기준 */
  font-size: 40px;          /* 필요시 폰트 크기 조절 */
  overflow: hidden;         /* 혹시 너무 길면 넘침 방지 */
}


/* =========================
   공통 컨테이너
========================= */
#sh_content {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.sh_content .container { max-width: 1680px; }

@media (min-width: 1200px) {
  /* 첫 섹션만 가로 한 줄 + 8:2 비율 */
  .sh_content section:first-of-type .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .sh_content section:first-of-type .col-lg-9 { flex: 0 0 100%; max-width: 100%; margin-top:50px; }
}

.sidebar .widget-categories{ margin-top: calc(var(--side-start-gap) + var(--table-vs-list-gap)); }

/* 타이틀 영역 */
.tit_area h1 { font-size: 20pt; }
.tit_area p  { font-size: 16px; }
.tit_area img { max-width: 100%; height: auto; }

/* =========================
   가로 정렬 강제 (item1 / item2)
   - 외부 CSS의 float, width:100% 등을 리셋
========================= */
.pagecommon #item1,
.pagecommon #item2 {
  display: flex !important;          /* 강제 flex */
  flex-direction: row !important;    /* 가로 */
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
  /* 외부의 text-align:center가 자식에 영향 최소화 */
  text-align: left;
}

/* =========================
   item1 - 7:3 비율
========================= */
.pagecommon #item1-1 {
  flex: 0 0 70%;   /* 왼쪽 컨텐츠 */
  max-width: 70%;
  box-sizing: border-box;
}
.pagecommon #item1-2 {
  flex: 0 0 30%;   /* 오른쪽 이미지 */
  max-width: 30%;
  box-sizing: border-box;
}

/* =========================
   item2 - 5:5 비율
========================= */
.pagecommon #item2-1,
.pagecommon #item2-2 {
  flex: 0 0 47%;
  max-width: 53%;
  box-sizing: border-box;
}


.pagecommon #item1-1,
.pagecommon #item2-2 { padding-right: 20px; }

.pagecommon #item1-2 img,
.pagecommon #item2-1 img {
  width: 100%;
  height: auto;
  display: block;
}

/* 이미지가 부모보다 커져서 줄바꿈 나는 경우 방지 */
.pagecommon #item1-2,
.pagecommon #item2-1 {
  overflow: hidden;
}

/* =========================
   반응형
========================= */
@media (max-width: 1024px) {
  #sh_content { padding: 0 15px; }

  .pagecommon #item1,
  .pagecommon #item2 {
    flex-direction: column !important;  /* 태블릿 이하 세로 */
    gap: 24px;
  }

  .pagecommon #item1 > div,
  .pagecommon #item2 > div {
    flex: 1 1 100%;
    padding-right: 0;
    width: 100% !important;            /* 외부 강제 폭 무력화 */
  }
}

@media (max-width: 768px) {
  #sh_content { padding: 0 10px; }
  .tit_area h1 { font-size: 18pt; }
  .tit_area p  { font-size: 14px; }
}

/* item1 이미지 가운데 정렬 */
#item1-1 .img-center {
  text-align: center;
}
#item1-1 .img-center img {
  display: inline-block;
}


/* =========================
   추가 옵션 (필요시 사용)
   - item2의 순서를 PC에서 "텍스트 왼쪽 / 이미지 오른쪽"으로 고정하고 싶다면:
========================= */
/* 
@media (min-width: 1025px) {
  #item2 { flex-direction: row !important; }
  #item2-1 { order: 2; }  // 이미지
  #item2-2 { order: 1; }  // 텍스트
}
*/

/* === 모바일 전용: 텍스트 칼럼 안의 이미지도 꽉 차게 === */
@media (max-width: 1024px) {
  /* item1 왼쪽 텍스트 칼럼의 이미지(두 장) */
  #item1-1 .img-center {
    text-align: center;            /* 가운데 정렬 유지 */
  }
  #item1-1 .img-center img {
    display: block;
    width: 100%;                   /* 부모 폭에 맞춰 확대 */
    height: auto;
    max-width: none;               /* 외부 max-width 제한 해제 */
    margin: 0 auto 12px;
  }

  /* item2 오른쪽 텍스트 칼럼 내부 이미지(kf1.png 등)도 꽉 차게 */
  .pagecommon #item2-2 img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0 auto;
  }

  /* 혹시 테마에서 img에 max-width를 고정해 둔 경우 대비(안전장치) */
  .pagecommon #item1 img,
  .pagecommon #item2 img {
    max-width: 100% !important;
  }
}

/* ===== 모바일 강제 오버라이드 패치 ===== */
@media (max-width: 1024px) {
  /* 부모 폭을 꽉 채우도록 강제 */
  .pagecommon #item1,
  .pagecommon #item2,
  .pagecommon #item1 > div,
  .pagecommon #item2 > div {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* item1-1의 이미지 묶음(p.img-center)이 혹시 inline-block이면 폭이 줄어듦 → 블록+풀폭 */
  #item1-1 .img-center {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* 텍스트 칼럼 내부 이미지도 100%로 강제 확대 */
  #item1-1 .img-center img,
  .pagecommon #item2-2 img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    margin: 0 auto 12px !important;
  }

  /* 이미지 칼럼(오른쪽/왼쪽)도 확실히 100%로 */
  .pagecommon #item1-2 img,
  .pagecommon #item2-1 img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
  }

  /* 테마에서 img에 이상한 max-width가 걸려 있을 때의 안전장치 */
  .pagecommon #item1 img,
  .pagecommon #item2 img,
  .tit_area img {
    max-width: 100% !important;
  }

  /* 혹시 부모가 가운데 정렬이라 내부가 좁아지는 케이스 방지 */
  .tit_area,
  .tit_area * {
    box-sizing: border-box;
  }
}


/* 노트북(레티나 15" = CSS 1440px) 이하에서 로고만 축소 */
@media (max-width: 1440px){
  #shGnb .sh_logo img{
    height: 25px !important;   /* 필요시 36~42px 사이로 조정 */
    width: auto !important;    /* 비율 유지 */
  }
}

.section-head{
  text-align: left;
  margin: 0 0 16px;
  margin-top:100px;
}
.section-head .eyebrow{
  display: inline-block;
  color: var(--brand);      /* #005a9a 계열 */
  font-weight: 700;
  font-size: 14pt;          /* 요청 크기 */
  line-height: 1.2;
}
.section-head .title{
  font-size: 35pt;          /* 기존 값 유지 */
  color: #000;
  margin: 6px 0 4px;
  font-weight: 800;
  line-height: 1.2;
}
.section-head .subcopy{
  color: #6b7280;           /* 회색 계열 */
  font-size: 14pt;          /* 요청 크기 */
  margin: 10;
  line-height: 1.6;
}

:root {
  --brand: #005a9a;
  --tbl-line: #e4eaf3;   /* 일반 가로선 */
  --tbl-strong: #b7c3d6; /* 상/하단 진한선 */
  --tile-h: 112px;       /* 사이드 버튼 높이 (PC 기본) */
  --side-start-gap: 50px;      /* 테이블 시작 여백 */
  --table-vs-list-gap: 50px;   /* 테이블 vs 사이드 리스트 시작선 차이 */
}

@media (max-width: 1199.98px){
  :root{ --side-start-gap: 36px; --table-vs-list-gap: 50px; }
}
@media (max-width: 767.98px){
  :root{ --side-start-gap: 20px; --table-vs-list-gap: 50px; }
}


/* ================================
   K-FINCO: Info Sidebar (scoped)
================================= */
.kf-info{
  --kf-border: var(--bs-border-color, #dee2e6);
  --kf-primary: var(--bs-primary, #005a9a);

  /* 기본(카드형)을 쓰던 걸 유지하기 위한 자리 - plain에선 제거 */
  background: transparent;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: .75rem;
}

/* 배경/박스테두리 제거 전용 모드 */
.kf-info.kf-info--plain{
  background: transparent !important;
  border: 0 !important;
  padding: 0;              /* 카드 여백도 제거해서 주변과 자연스럽게 */
  border-radius: 0;
}

/* Title */
.kf-info__title{
  margin: 0 0 .75rem 0;
  padding-bottom: 1.5rem;
  font-weight: 800;
  font-size: 2.075rem;     /* ≈22px */
  line-height: 1.2;
  border-bottom: 2px solid var(--kf-border);
}

/* List */
.kf-info__list{ list-style: none; margin: 0; padding: 0; }
.kf-info__item{
  padding: .85rem 0;
  border-bottom: 1px solid var(--kf-border);  /* 항목 구분선 유지 */
}
.kf-info__item:last-child{ border-bottom: 0; }

.kf-info__link{
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.5625rem;    /* 타이틀보다 작지만 진하게 */
}
.kf-info__link:hover{
  text-decoration: underline;
  color: var(--kf-primary);
}

/* ▸ 옵션: 항목 구분선도 없애고 싶으면 kf-info에 아래 클래스 추가
.kf-info--no-separators .kf-info__item{ border-bottom: 0; }
*/


/* 간격 + 마지막 하단선 추가 (스코프: .kf-info 내부에만) */
.kf-info .kf-info__item{
  padding: 2.04rem 0;                 /* 기존 .85rem → 약간 넓힘 */
  border-bottom: 1px solid var(--kf-border, #dee2e6);
}

/* 마지막 항목에도 하단선 유지 */
.kf-info .kf-info__item:last-child{
  border-bottom: 1px solid var(--kf-border, #dee2e6);
}

/* 제목과 리스트 사이도 살짝 여유(선택) */
.kf-info .kf-info__title{
  margin-bottom: 1rem;                /* 0.75rem → 1rem */
}


/* kf-info 전용: 위쪽 마진 증가 */
.kf-info{ margin-top: 1.5rem; }            /* 모바일 기본 */
@media (min-width: 992px){
  .kf-info{ margin-top: .75rem; }          /* 데스크톱에서 조금만 */
}


