@charset "utf-8";

/* =========================== 서브 페이지 컨테이너 재설정 */
.sub_cont #sh_content {
  max-width: none;
  min-height: auto;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.sub_cont #sh_container_wrapper {
  width: 100%;
}

/* footer 간격 조정 */
#sh_ft .top { padding-bottom: 40px; padding-top: 50px; }
#sh_ft .top .f_logo img { height: 50px; width: auto; }
#sh_ft .top .inner { text-align: center; }
#sh_ft .top .f_logo { margin-bottom: 20px; }
#sh_ft .top .f_t_txt { line-height: 1.7; }
@media (max-width: 768px) {
  #sh_ft .top { padding-top: 40px; padding-bottom: 30px; }
}

/* =========================== PROMISE PAGE (sub1.html) */
#promise_section {
  position: relative;
  width: 100%;
  padding: 140px 0 120px;
  background: #fff;
  line-height: 1.5;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}
#promise_section .inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* 인트로 */
.promise_title_wrap {
  text-align: center;
  padding-bottom: 60px;
  margin-bottom: 70px;
  border-bottom: 2px solid #1a1a1a;
  position: relative;
}
.promise_title_wrap::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D51726;
}
.promise_sub {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 14px;
  background: #D51726;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.promise_title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px;
  letter-spacing: -2px;
  line-height: 1.2;
}
.promise_desc {
  font-size: 17px;
  color: #444;
  margin: 0;
  line-height: 1.8;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}

/* 탭 */
#promise .tab_wrap {
  margin-bottom: 40px;
}
#promise .tab_wrap .tab_center {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
#promise .tab_list {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}
#promise .tab_list > div {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 56px;
  color: #666;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: color .2s ease;
  font-family: 'Pretendard', sans-serif;
  white-space: nowrap;
}
#promise .tab_list > div:hover {
  color: #D51726;
}
#promise .tab_list > div.on {
  color: #D51726;
  font-weight: 700;
}
#promise .bg {
  display: block;
  position: absolute;
  bottom: -1px;
  top: auto !important;
  width: calc(100% / 6);
  height: 3px;
  background: #D51726;
  border-radius: 0;
  box-shadow: none;
  transition: left .35s ease;
  z-index: 0;
}

/* 탭 콘텐츠 */
#promise .tab_cont {
  position: relative;
  margin-top: 40px;
}
#promise .cont {
  display: none;
  width: 100%;
}
#promise .cont:nth-child(1) {
  display: flex;
}
#promise .cont_inner {
  width: 100%;
  background: #fff;
  padding: 0;
  border: 0;
  box-shadow: none;
}
#promise .cont_head {
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}
#promise .cont_label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: #fff;
  color: #D51726;
  border: 1.5px solid #D51726;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  font-family: 'Pretendard', sans-serif;
}
#promise .cont_title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1.3;
  font-family: 'Pretendard', sans-serif;
}

/* 정책 아이템 */
.policy_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.policy_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  transition: background-color .2s ease;
}
.policy_item:hover {
  background: #fafafa;
}
.policy_item i,
.policy_item .feather {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #D51726;
  stroke-width: 2;
  margin-top: 4px;
}
.policy_item p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  font-weight: 400;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
.policy_item b {
  color: #1a1a1a;
  font-weight: 700;
}

/* 반응형 */
@media (max-width: 1024px) {
  #promise_section { padding: 110px 0 90px; }
  #promise_section .inner { padding: 0 28px; }
  .promise_title { font-size: 40px; }
  #promise .cont_title { font-size: 26px; }
}
@media (max-width: 850px) {
  #promise .tab_list { flex-wrap: wrap; }
  #promise .tab_list > div {
    flex: 0 0 33.333%;
    font-size: 14px;
    height: 48px;
  }
  #promise .bg { display: none; }
  #promise .tab_list > div.on {
    background: #D51726;
    color: #fff;
  }
}
@media (max-width: 768px) {
  #promise_section { padding: 90px 0 70px; }
  #promise_section .inner { padding: 0 20px; }
  .promise_title_wrap { padding-bottom: 40px; margin-bottom: 50px; }
  .promise_title { font-size: 30px; }
  .promise_desc { font-size: 15px; }
  .promise_sub { font-size: 12px; padding: 4px 12px; }
  #promise .cont_head { margin-bottom: 26px; padding-bottom: 14px; }
  #promise .cont_label { font-size: 11px; }
  #promise .cont_title { font-size: 22px; }
  .policy_items { grid-template-columns: 1fr; }
  .policy_item { padding: 18px 20px; }
  .policy_item p { font-size: 14px; }
}
@media (max-width: 480px) {
  .promise_title { font-size: 26px; }
  #promise .tab_list > div { flex: 0 0 50%; font-size: 13px; height: 44px; }
  #promise .cont_title { font-size: 20px; }
}

/* =========================== ACHIEVEMENT PAGE (sub2.html) */
#ach_section {
  width: 100%;
  padding: 140px 0 120px;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  line-height: 1.6;
}
.ach_inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* 인트로 */
.ach_intro {
  text-align: center;
  padding-bottom: 60px;
  margin-bottom: 70px;
  border-bottom: 2px solid #1a1a1a;
  position: relative;
}
.ach_intro::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D51726;
}
.ach_intro_label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 14px;
  background: #D51726;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.ach_intro_title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #1a1a1a;
}
.ach_intro_lead {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 28px;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
.ach_intro_meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #777;
  font-weight: 500;
}
.ach_intro_meta .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
}

/* 섹션 */
.ach_section {
  margin-top: 90px;
}
.ach_section:first-of-type {
  margin-top: 0;
}
.ach_section_head {
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}
.ach_section_title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.ach_section_title em {
  font-style: normal;
  font-size: 22px;
  font-weight: 800;
  color: #D51726;
  letter-spacing: 0;
}
.ach_section_desc {
  font-size: 15px;
  color: #777;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 핵심 성과 10 */
.ach_list10 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.ach_list10 li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 24px;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  background: #fff;
  transition: background-color .2s ease;
}
.ach_list10 li:hover {
  background: #fafafa;
}
.ach_list10 .no {
  flex: none;
  font-size: 28px;
  font-weight: 800;
  color: #D51726;
  font-family: 'Pretendard', sans-serif;
  letter-spacing: -1px;
  line-height: 1;
  min-width: 40px;
  padding-top: 4px;
  position: relative;
}
.ach_list10 .no::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin-top: 8px;
}
.ach_list10 .txt {
  flex: 1;
  min-width: 0;
}
.ach_list10 .txt strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -.4px;
  line-height: 1.4;
}
.ach_list10 .txt span {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}

/* 분야별 / SOC 카드 */
.ach_field_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ach_field_grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.ach_field {
  padding: 32px 30px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #D51726;
}
.ach_field h4 {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8d8d8;
  letter-spacing: -.5px;
}
.ach_field ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ach_field ul li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
.ach_field ul li:last-child {
  margin-bottom: 0;
}
.ach_field ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 2px;
  background: #D51726;
}
.ach_field ul li em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  padding-left: 4px;
  line-height: 1.7;
}

/* 수상 이력 */
.ach_award_list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid #1a1a1a;
}
.ach_award_list li {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color .2s ease;
}
.ach_award_list li:hover {
  background: #fafafa;
}
.ach_award_list .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid #D51726;
  color: #D51726;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.3px;
  justify-self: start;
}
.ach_award_list .info h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  letter-spacing: -.4px;
  line-height: 1.4;
}
.ach_award_list .info p {
  font-size: 13.5px;
  color: #777;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
}
.ach_award_list .year {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: right;
  letter-spacing: -.2px;
}
.ach_award_list .year em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #D51726;
  font-weight: 700;
  margin-top: 4px;
}

/* 다음 약속 */
.ach_next {
  margin-top: 100px;
  padding: 50px 30px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
}
.ach_next p {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 26px;
  letter-spacing: -.6px;
  font-family: 'Pretendard', sans-serif;
}
.ach_next_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #D51726;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.3px;
  border: 1.5px solid #D51726;
  transition: all .2s ease;
}
.ach_next_btn::after {
  content: '→';
  display: inline-block;
  font-size: 17px;
  transition: transform .2s ease;
}
.ach_next_btn:hover {
  background: #fff;
  color: #D51726;
}
.ach_next_btn:hover::after {
  transform: translateX(4px);
}

/* 반응형 */
@media (max-width: 1024px) {
  #ach_section { padding: 110px 0 90px; }
  .ach_inner { padding: 0 28px; }
  .ach_intro_title { font-size: 40px; }
  .ach_section { margin-top: 70px; }
  .ach_section_title { font-size: 24px; }
  .ach_field_grid { grid-template-columns: 1fr; gap: 16px; }
  .ach_field_grid.two { grid-template-columns: 1fr; }
  .ach_field { padding: 28px 24px; }
  .ach_award_list li { grid-template-columns: 110px 1fr 160px; gap: 18px; }
}
@media (max-width: 768px) {
  #ach_section { padding: 90px 0 70px; }
  .ach_inner { padding: 0 20px; }
  .ach_intro { padding-bottom: 40px; margin-bottom: 50px; }
  .ach_intro_title { font-size: 30px; }
  .ach_intro_lead { font-size: 15px; }
  .ach_section { margin-top: 56px; }
  .ach_section_head { margin-bottom: 24px; padding-bottom: 14px; }
  .ach_section_title { font-size: 21px; gap: 10px; }
  .ach_section_title em { font-size: 18px; }
  .ach_section_desc { font-size: 14px; }
  .ach_list10 { grid-template-columns: 1fr; }
  .ach_list10 li { padding: 22px 18px; gap: 18px; }
  .ach_list10 .no { font-size: 24px; min-width: 36px; }
  .ach_list10 .txt strong { font-size: 16px; }
  .ach_field { padding: 24px 20px; }
  .ach_field h4 { font-size: 17px; margin-bottom: 14px; padding-bottom: 12px; }
  .ach_field ul li { font-size: 14px; }
  .ach_award_list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 4px;
  }
  .ach_award_list .badge { font-size: 13px; height: 32px; padding: 0 12px; }
  .ach_award_list .info h5 { font-size: 16px; }
  .ach_award_list .year { text-align: left; font-size: 13px; }
  .ach_award_list .year em { display: inline; margin-top: 0; margin-left: 6px; }
  .ach_next { margin-top: 70px; padding: 40px 22px; }
  .ach_next p { font-size: 17px; }
}
@media (max-width: 480px) {
  .ach_intro_title { font-size: 26px; }
  .ach_intro_lead { font-size: 14px; }
  .ach_section_title { font-size: 19px; flex-wrap: wrap; }
  .ach_field { padding: 22px 18px; }
  .ach_field h4 { font-size: 16px; }
}
