/*-----------------------------------------
# 리스트 정렬/검색
-------------------------------------------*/
.kb__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;        
}
.kb__sort {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.kb__sort-btn {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: #888;
}
.kb__sort-btn.is-active {
  font-weight: 700;
  color: #111;
}
.kb__sort-div {
  width: 0.1rem;
  height: 1.4rem;
  background: #d9d9d9;
}
@media (max-width: 768px) {
  .kb__controls {
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .kb__sort { gap: 1.5rem;height: 4.4rem; }
  .kb__sort-btn { font-size: 1.4rem; line-height: 1; }
  .kb__sort-div { height: 1.2rem; }
}
/* ===== 검색 (닫힘 → 열림 토글) ===== */
.kb__search {
  display: flex;
  align-items: center;
  border: 0.1rem solid transparent;
  border-radius: 9.9rem;
  overflow: hidden;
  transition: border-color .2s ease, background-color .2s ease;
}
.kb__search-icon {
  flex-shrink: 0;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.kb__search-icon img {
  display: block;
  width: 5rem;          /* 여백 포함 아이콘 50px */
  height: 5rem;
}
.kb__search-input {
  width: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #111;
  opacity: 0;
  transition: width .25s ease, opacity .2s ease;
}
.kb__search-input::placeholder { color: #888; }

/* 열린 상태 */
.kb__search.is-open {
  background: #fff;
  border-color: #eee;
  padding-right: 2rem;
}
.kb__search.is-open .kb__search-input {
  width: 18rem;         /* 입력영역 180px */
  opacity: 1;
}
@media (max-width: 768px) {
	    /* 검색 */
  .kb__search-icon img { width: 3.5rem; height: 3.5rem; }
  .kb__search.is-open {  max-width: 20rem;flex: 1; margin-left: 0rem; }        /* 남은 폭만큼 확장 */
  .kb__search.is-open .kb__search-input { width: auto; flex: 1; }
	.kb__search.is-open .kb__search-input {width: 14rem;flex: 1;}
	.kb__search-input{font-size:1.4rem}
}



/* ===== 페이지네이션 ===== */
.kbnews__pager {display: flex;align-items: center;gap: 0.6rem;margin-top: 4rem;}
.kbnews__pages,
.kbnews__navs {display: flex;align-items: center;gap: 0.6rem;}
.kbnews__page {display: inline-flex;align-items: center;justify-content: center;width: 3.8rem;height: 3.8rem;border-radius: 9.9rem;font-weight: 500;font-size: 1.6rem;line-height: 1.6rem;color: #111;text-decoration: none;}
.kbnews__page.is-active {background: #f8f6f2;font-weight: 700;}
.kbnews__page:hover{border: 0.1rem solid #eee;}
.kbnews__ellipsis { width: 5rem; }
.kbnews__ellipsis:hover{border:none;}
.kbnews__nav {display: inline-flex;align-items: center;justify-content: center;width: 3.8rem;height: 3.8rem;border-radius: 0.4rem;text-decoration: none;}
.kbnews__nav img {display: block;width: 0.7rem;height: 1.2rem;}
.kbnews__nav.is-disabled {opacity: 0.3;pointer-events: none;cursor: default;}
@media (max-width: 768px) {
	.kbnews__pager { justify-content: space-between; }
	.kbnews__ellipsis,
	.kbnews__page--last { display: none; }
  .kbnews__pages, .kbnews__navs {gap: 0.4rem;}
}

/*-----------------------------------------
# 뉴스리스트
-------------------------------------------*/
.kbnews {
  box-sizing: border-box;
  background: #fff;
  border-radius: 1rem;
  padding: 19rem 0 10rem 0;                 /* PC 상하 100 */
  font-family: pretendard-400;
  color: #111;
}
.kbnews *,
.kbnews *::before,
.kbnews *::after { box-sizing: border-box; }

/* 공통 inner */
.kbnews__inner {
  max-width: 98rem;
  padding: 0 4rem;
  margin: 0 auto;
}

/* 타이틀 */
.kbnews__title {
  margin: 0 0 4rem;
  font-family: "KBFGDisplay", "KBFGDisplay-fb", pretendard-400, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 5.2rem;
  color: #111;
}


/* ===== 리스트 ===== */
.kbnews__list {
  list-style: none;
  margin: 0;
  padding: 2.6rem 0 0;              /* border-top 후 26 */
  border-top: 0.1rem solid #eee;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.kbnews__item {
  padding-bottom: 2.6rem;
  border-bottom: 0.1rem solid #eee;
}
.kbnews__item:last-child { border-bottom: 0; }

.kbnews__link {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-decoration: none;
}
.kbnews__link:hover .kbnews__subject{text-decoration: underline;}
.kbnews__label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: #ffbc00;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #111;
}
.kbnews__texts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.kbnews__subject {
	overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2; -webkit-box-orient: vertical;
  font-family: "KBFGText", "KBFGText-fb", pretendard-400, sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: #111;
}
.kbnews__desc {
	overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2; -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #888;
}
.kbnews__date {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #aaa;
}

/* ===== 모바일 (max-width) ===== */
@media (max-width: 1300px) {
	.kbnews {
		padding: 16rem 0 10rem 0;
	}
  .kbnews__inner { padding: 0 3rem; }
}

@media (max-width: 768px) {
  .kbnews__inner { padding: 0 2rem; }

  .kbnews { padding: 9.4rem 0 4rem; }   /* 상단 헤더 오프셋 + 하단 40 */

  .kbnews__title {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 3rem;
  }

  /* 리스트 */
  .kbnews__list { padding-top: 2rem; gap: 2rem; }
  .kbnews__item { padding-bottom: 2rem; }
  .kbnews__link { gap: 1rem; }
  .kbnews__label {
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .kbnews__subject { font-size: 1.6rem; line-height: 2.6rem; }
  .kbnews__desc { font-weight: 400; font-size: 1.4rem; line-height: 2rem; }
  .kbnews__date { font-size: 1.2rem; line-height: 1.4rem; }
}

/*-----------------------------------------
# 블로그 리스트
-------------------------------------------*/
/* ===== kbblog ===== */
.kbblog {
  box-sizing: border-box;
  background: #fff;
  border-radius: 1rem;
  padding: 19rem 0 10rem 0;
  font-family: pretendard-400, sans-serif;
  color: #111;
}
.kbblog *, .kbblog *::before, .kbblog *::after { box-sizing: border-box; }

/* 공통 inner */
.kbblog__inner {
  max-width: 98rem;
  padding: 0 4rem;
  margin: 0 auto;
}

/* ===== 타이틀 + 카테고리 ===== */
.kbblog__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.kbblog__title {
    word-break: auto-phrase;
    display: flex;
    margin: 0;
    font-family: "KBFGDisplay", "KBFGDisplay-fb", pretendard-400, sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 5.2rem;
    color: #111;
    align-items: center;
    justify-content: flex-start;
}
.kbblog__title span:before {
    margin: 0 2rem;
    content: '';
	    top: 0.2rem;
    position: relative;
    display: inline-block;
    width: 1px;
    height: 2.4rem;
    background: #D9D9D9;
}
.kbblog__title span{
	color: #111;
font-family: "KBFGText", "KBFGText-fb";
font-size: 2.4rem;
font-style: normal;
font-weight: 700;
line-height: 5.2rem;
}

/* 카테고리 : 90rem(inner 콘텐츠폭) 초과 시 가로 스와이프 */
.kbblog__cats-wrap { position: relative; }
.kbblog__cats {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.kbblog__cats::-webkit-scrollbar { display: none; }
.kbblog__cat {
  flex-shrink: 0;                 /* 텍스트 길이만큼 폭 자동, 줄바꿈 없이 옆으로 쌓임 */
  white-space: nowrap;
  padding: 1.4rem 2.4rem;
  border: 0;
  border-radius: 9.9rem;
  background: #f8f6f2;
  color: #111;
  cursor: pointer;
  text-decoration: none;          /* a 태그 링크 스타일 리셋 */
  font-family: inherit;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
.kbblog__cat.on { background: #ffbc00; font-weight: 700; }

/* 드래그 중 */
.kbblog__cats.is-grabbing { cursor: grabbing; }
.kbblog__cats.is-grabbing .kbblog__cat { pointer-events: none; }

/* 좌/우 페이드 (스크롤 여지 표시) */
.kbblog__cats-wrap::before,
.kbblog__cats-wrap::after {
  content: "";
  position: absolute; top: 0; height: 100%;
  width: 3.4rem; pointer-events: none;
  opacity: 0; transition: opacity .2s ease; z-index: 1;
}
.kbblog__cats-wrap::before { left: 0;  background: linear-gradient(to left,  rgba(255,255,255,0), #fff); }
.kbblog__cats-wrap::after  { right: 0; background: linear-gradient(to right, rgba(255,255,255,0), #fff); }
.kbblog__cats-wrap.can-left::before  { opacity: 1; }
.kbblog__cats-wrap.can-right::after  { opacity: 1; }

/* ===== 카드 그리드 ===== */
.kbblog__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 5rem;
}
.kbblog__card {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  text-decoration: none;
}
.kbblog__card:hover .kbblog__subject{text-decoration: underline;}
.kbblog__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 435 / 266;
  border: 0.1rem solid rgba(0,0,0,0.04);
  border-radius: 1rem;
  overflow: hidden;
  background: #f9f9f9;
}
.kbblog__thumb img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.kbblog__body { display: flex; flex-direction: column; gap: 1.6rem; }
.kbblog__label {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.7rem;
  background: #ffbc00;
  border-radius: 0.5rem;
  font-weight: 600; font-size: 1.5rem; line-height: 1.8rem; color: #111;
}
.kbblog__texts { display: flex; flex-direction: column; gap: 0.8rem; }
.kbblog__subject {
	    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  font-family: "KBFGText", "KBFGText-fb", pretendard-400, sans-serif;
  font-weight: 500; font-size: 2.2rem; line-height: 3.4rem; color: #111;
}
.kbblog__desc {     overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;font-weight: 500; font-size: 1.6rem; line-height: 2.2rem; color: #888; }
.kbblog__date { font-weight: 500; font-size: 1.4rem; line-height: 2rem; color: #aaa; }

/* ===== 반응형 (max-width) ===== */
@media (max-width: 1300px) {
  .kbblog { padding: 16rem 0 10rem 0; }
  .kbblog__inner { padding: 0 3rem; }
}

@media (max-width: 768px) {
  .kbblog__inner { padding: 0 2rem; }
  .kbblog { padding: 9.4rem 0 4rem; }

  .kbblog__head { gap: 1rem; margin-bottom: 2rem; }
  .kbblog__title { font-size: 2.2rem; line-height: 3rem; }
  .kbblog__title span {
		font-size: 1.6rem;
		line-height: 3rem;
	}
	.kbblog__title span:before {
    margin: 0 1.6rem;
    height: 1.6rem;
}

  /* 카테고리 */
  .kbblog__cats { gap: 0.576rem; }
  .kbblog__cat { padding: 1rem 1.6rem; font-size: 1.4rem; line-height: 1.6rem; }

  /* 카드 : 1열 */
  .kbblog__list { grid-template-columns: 1fr; row-gap: 2.6rem; }
  .kbblog__card { gap: 1.6rem; }
  .kbblog__thumb { aspect-ratio: 335 / 174; border-radius: 0.8rem; }
  .kbblog__body { gap: 1rem; }
  .kbblog__label { padding: 0.2rem 0.6rem; border-radius: 0.4rem; font-size: 1.2rem; line-height: 1.6rem; }
  .kbblog__texts { gap: 0.6rem; }
  .kbblog__subject { font-size: 1.6rem; line-height: 2.6rem; }
  .kbblog__desc { font-weight: 400; font-size: 1.4rem; line-height: 2rem; }
  .kbblog__date { font-size: 1.2rem; line-height: 1.4rem; }
}


/*-----------------------------------------
# 검색 리스트
-------------------------------------------*/
/* 공통 inner */
.kbsea .kbsea__inner {
  max-width: 98rem;
  padding: 0 4rem;
  margin: 0 auto;
}


/* ---------- 검색 입력창 ---------- */
.kbsea .kbsea__search {
	  font-family: 'KBFGDisplay', "KBFGDisplay-fb", pretendard-400, sans-serif;
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: 100%;
  height: 7.8rem;
  padding: 0 3rem;
  border: 1px solid transparent;
  border-radius: 1.6rem;
  background: #f8f6f2;
  cursor: text;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
/* 포커스 / 입력 상태 */
.kbsea .kbsea__search.is-active {
  background: #fff;
  border-color: #111;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, .1);
}

.kbsea .kbsea__search-ico {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
}
.kbsea .kbsea__search-ico img { display: block; width: 100%; height: 100%; }

.kbsea .kbsea__search-input {
  flex: 1 0 0;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: #111;
  /* 입력 시 텍스트 */
  font-family: 'KBFGDisplay', "KBFGDisplay-fb", pretendard-400, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.6rem;
}
/* placeholder */
.kbsea .kbsea__search-input::placeholder {
  font-family: pretendard-400, sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #888;
}

/* 삭제(X) 버튼 - 입력값 있을 때만 노출 */
.kbsea .kbsea__search-clear {
  display: none;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.kbsea .kbsea__search.has-value .kbsea__search-clear { display: block; }
.kbsea .kbsea__search-clear img { display: block; width: 100%; height: 100%; }

/* ---------- 추천 콘텐츠 ---------- */
.kbsea .kbsea__reco {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 10rem;
}
.kbsea .kbsea__reco-title {
  margin: 0;
  font-family: 'KBFGText', "KBFGText-fb", pretendard-400, sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 5.2rem;
  color: #111;
  text-align: center;
}

/* 리스트 */
.kbsea .kbsea__list {
  list-style: none;
  margin: 0;
  padding: 2.6rem 0 0;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
}
.kbsea .kbsea__item { border-bottom: 1px solid #eee; }
.kbsea .kbsea__item:last-child { border-bottom: 0; }

.kbsea .kbsea__link {
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
  padding: 2.6rem 0;
  text-decoration: none;
  cursor: pointer;
}
.kbsea__link:hover .kbsea__title{text-decoration: underline;}

.kbsea .kbsea__body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* 태그 */
.kbsea .kbsea__tags { display: flex; align-items: center; gap: 0.6rem; }
.kbsea .kbsea__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  background: #ffbc00;
  font-family: pretendard-400, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #111;
  white-space: nowrap;
}

/* 제목/설명 */
.kbsea .kbsea__texts { display: flex; flex-direction: column; gap: 0.6rem; }
.kbsea .kbsea__title {
  margin: 0;
  font-family: 'KBFGText', "KBFGText-fb", pretendard-400, sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.kbsea .kbsea__desc {
      overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	font-family: pretendard-400, sans-serif;
  margin: 0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #888;
}

/* 날짜 */
.kbsea .kbsea__date {
	font-family: pretendard-400, sans-serif;
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #aaa;
  white-space: nowrap;
}

/* 썸네일 */
.kbsea .kbsea__thumb {
  flex-shrink: 0;
  width: 21.9rem;
  height: 13.4rem;
  border: 0.0504rem solid rgba(0, 0, 0, .04);
  border-radius: 0.8rem;
  overflow: hidden;
  background: #f9f9f9;
}
.kbsea .kbsea__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= inner 반응형 (공통 규칙) ================= */
@media (max-width: 1300px) {
  .kbsea .kbsea__inner { padding-left: 3rem; padding-right: 3rem; }
}
@media (max-width: 768px) {
  .kbsea .kbsea__inner { padding-left: 2rem; padding-right: 2rem; }
}

/* ================= 모바일 레이아웃 (max-width: 768px) ================= */
@media (max-width: 768px) {
  /* 검색창 */
  .kbsea .kbsea__search {
    gap: 1.2rem;
    height: auto;
    padding: 1.8rem 2rem;
    border-radius: 0.8rem;
  }
  .kbsea .kbsea__search-ico { width: 2rem; height: 2rem; }
  .kbsea .kbsea__search-input { font-size: 1.8rem; line-height: 2rem; }
  .kbsea .kbsea__search-input::placeholder { font-size: 1.6rem; line-height: 2rem; }

  /* 추천 */
  .kbsea .kbsea__reco { gap: 3rem; margin-top: 4rem; }
  .kbsea .kbsea__reco-title { font-size: 2.2rem; line-height: 3.4rem; }

  /* 리스트 - 구분선 방식 동일, 간격만 축소 */
  .kbsea .kbsea__list { padding-top: 2rem; gap: 2rem; }
  .kbsea .kbsea__item { border-bottom: 0; }
  .kbsea .kbsea__item:not(:last-child) { border-bottom: 1px solid #eee; }
  .kbsea .kbsea__link { gap: 1rem; padding: 0 0 2rem; }
  .kbsea .kbsea__item:last-child .kbsea__link { padding-bottom: 0; }

  .kbsea .kbsea__body { gap: 1rem; }
  .kbsea .kbsea__texts { gap: 0.6rem; }

  /* 태그 */
  .kbsea .kbsea__tag {
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  /* 제목/설명/날짜 */
  .kbsea .kbsea__title { -webkit-line-clamp: 2;font-size: 1.6rem; line-height: 2.6rem; }
  .kbsea .kbsea__desc  { font-size: 1.4rem; line-height: 2rem; font-weight: 400; }
  .kbsea .kbsea__date  { font-size: 1.2rem; line-height: 1.4rem; }

  /* 썸네일 - 우측 소형, 상단 30px 내려서 정렬 */
  .kbsea .kbsea__thumb {
    width: 9.8rem;
    height: auto;
    aspect-ratio: 134 / 82;
    margin-top: 3rem;
    border-width: 1px;
    border-radius: 0.6rem;
  }
}



/*-----------------------------------------
# 검색 결과 리스트
-------------------------------------------*/
.kbsea.searesult{
  overflow: hidden;
}
.kbsr{max-width:900px;margin:0 auto;padding:10rem 0 0 0;}
.kbsr__head{font-size:2rem;margin-bottom:1.6rem;}
.kbsr__count{color:#f5a623;font-weight:700;}
.kbsr__tabs {
    display: flex;
    gap: 4rem;
    border-bottom: 1px solid #e5e5e5;
    margin: 0rem 0 6rem 0;
}
.kbsr__tab {
     position: relative;
    appearance: none;
    border: 0;
    background: none;
    padding: 0 0 1.6rem 0;
    font-size: 2rem;
    line-height: 2.8rem;
    color: #888;
    cursor: pointer;
    font-weight: 500;
}
.kbsr__tab.is-active{color:#111;font-weight:700;}
.kbsr__tab.is-active:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width:100%;
  height: 3px;
  background: #FFBC00;
  border-radius: 3px 3px 0 0;
}
.kbsr__tab em {
  color: #888;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.8rem;
    margin-left: 2px;
}
.kbsr__panel{display:none;}
.kbsr__panel.is-active{display:block;}
.kbsr__group{margin-bottom:32px;}
.kbsrgtbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kbsr__group-title {
    gap: 0.8rem;
    display: flex;
    margin:0;
    color: #111;
    font-family: "KBFGDisplay";
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.8rem;
    align-items: center;
    justify-content: flex-start;
}
.kbsr__group-title em {
    font-weight: 500;
    font-family: 'KBFGText';
    color: #888;
}
.kbsr__gmore{
      cursor: pointer;
  display: flex;
align-items: center;
gap:0.8rem;
overflow: hidden;
color: #111;
text-align: center;
text-overflow: ellipsis;
font-family: pretendard-500, sans-serif;
font-size: 1.6rem;
font-style: normal;
font-weight: 500;
line-height: 2.6rem;
}
.kbsr__gmore span{
  position: Relative;
    display: inline-block;
    width: .6rem;
    height: 1rem;
    background-image: url(/public/img/kb/main/arrow.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}
}
.kbsr__more {
    font-family: 'KBFGText', "KBFGText-fb", pretendard-400, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 3rem;
    color: #111;
    display: block;
    width: 100%;
    padding: 1.4rem;
    margin-top: 4rem;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    border-radius: 0.8rem;
    cursor: pointer;
    /* color: #555; */
}

.kbresult_all {
    gap: 6rem;
    display: flex;
    flex-direction: column;
}
.kbrdivideLine{
  position: relative;
  width: 100%;
  height: 1rem;
}
.kbrdivideLine::after {
    transform: translateX(-50%);
    content: '';
    position: absolute;
    left: 505;
    top: 0;
    width: 500%;
    height: 100%;
    background: #F6F6F6;
}
.kbresult_all .kbsr__group{
  margin: 0;
}
.kbresult_all .kbsea__list{
      margin: 1rem 0 0 0;
  border-top: none;
  padding: 0;
}
.kbresult_all .kbsea__list.result li.kbsea__item:last-child a{
    padding: 2.6rem 0 0 0;
}
.kbresult_all .kbnews__list.result li.kbnews__item:last-child{
    padding-bottom: 0;
}
.kbsr__group .kbnews__list{
      margin: 1rem 0 0 0;
  border-top: none;
}

.kbsea__list.blognewscont {
    border-top: none;
    padding: 0;
}
.kbsea__list.blognewscont li.kbsea__item:first-child a{
    padding-top: 0;
}

.kbnews__list.blognewscont {
    border-top: none;
    padding: 0;
}
.kbnews__list.blognewscont li.kbsea__item:first-child a{
    padding-top: 0;
}

.kbsr__emptyBox{
    padding: 60px 0;
    text-align: center;
    color: #666;
}
.kbsr__empty{
  color: #111;
font-family: Pretendard;
font-size: 2.4rem;
font-style: normal;
font-weight: 400;
line-height: 3.6rem;
}
.kbsr__empty span{
font-family: pretendard-700;
font-weight: 700;
}
@media (max-width: 1400px) {
  .kbsr {
      padding: 8rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .kbsr {
    padding: 4rem 0 0 0;
}
  .kbsr__head {
      font-size: 1.6rem;
      margin-bottom: 2rem;
  }
  .kbsr__tabs {
      gap: 2rem;
      margin: 0rem 0 4rem 0;
  }
  .kbsr__tab {
      padding: 0 0 1.2rem 0;
      font-size: 1.5rem;
      line-height: 2rem;
  }
  .kbsr__tab em {
      font-size: 1.5rem;
      line-height: 2rem;
      margin-left: 2px;
  }


  .kbresult_all {
      gap: 4rem;
  }
  .kbsr__group-title {
      font-size: 2rem;
      line-height: 2.4rem;
  }
  .kbsr__gmore {
      gap: 0.8rem;
      font-size: 1.4rem;
      line-height: 2.2rem;
  }
  .kbresult_all .kbsea__list {
        margin: 0.6rem 0 0 0;
        border-top: none;
      padding: 2rem 0 0 0;
  }
  .kbresult_all .kbsea__list.result li.kbsea__item:last-child a {
      padding: 0;
  }
  .kbresult_all .kbnews__list{
        margin: 0.6rem 0 0 0;
    border-top: none;
  }

  .kbsr__empty {
      font-size: 1.5rem;
      line-height: 2rem;
  }
}