@charset "utf-8";

/* =========================
   IDC Page Only Tokens
   (본문 전용 - subBnr/푸터 건드리지 않음)
========================= */
:root{
  --idc-ink:#0f172a;
  --idc-muted:#5b6472;
  --idc-line:#e7ecef;

  /* 기존 톤 유지 */
  --idc-brand:#2f6f6a;
  --idc-brand-dark:#244f4b;
  --idc-soft:#e6f1ef;

  --idc-card:#ffffff;
  --idc-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  --idc-radius: 16px;
}

/* =========================
   Section base
========================= */
#sh_content .idc-section{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 20px;
}

#sh_content .idc-section-head{
  text-align:center;
  margin-bottom: 26px;
}

#sh_content .idc-section-title{
  margin:0;
  font-size: 28px;
  font-weight: 600;
  color: var(--idc-ink);
  letter-spacing:-0.6px;
}

#sh_content .idc-section-sub{
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--idc-muted);
}

/* =========================
   Strength cards (PNG 아이콘은 위치/크기만)
========================= */
#sh_content .idc-strength-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding: 36px 0;
}

#sh_content .idc-card{
  background: var(--idc-card);
  border: 1px solid var(--idc-line);
  border-radius: var(--idc-radius);
  box-shadow: var(--idc-shadow);
}

#sh_content .idc-strength-card{
  display:flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 22px 22px;
  gap: 18px;
  position:relative;
  overflow:hidden;
}


#sh_content .idc-card-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--idc-ink);
}

#sh_content .idc-bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--idc-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

/* ✅ IDC 특장점 아이콘: 그라데이션/원형 제거 → colocation 느낌의 이미지 박스 */
#sh_content .idc-card-ico{
  width: 82px;
  min-width: 82px;
  height: 82px;

  /* 완전 동그라미 X (기존 아이콘과 다른 인상) */
  border-radius: 16px;

  /* 배경/테두리 최소화: 이미지가 주인공 */
  background: transparent;
  border: 0;

  display: grid;
  place-items: center;
}

#sh_content .idc-card-ico img{
  width: 80px;          /* colocation 느낌: 이미지 자체를 크게 */
  height: 80px;
  object-fit: contain;
  display: block;
}


/* =========================
   Steps (SVG)
========================= */
#sh_content .idc-steps{
  background: linear-gradient(180deg, #f6fbfa 0%, #ffffff 70%);
  border-top: 1px solid var(--idc-line);
  border-bottom: 1px solid var(--idc-line);
  max-width: none; /* 섹션 배경은 전체폭 */
  padding-left: 0;
  padding-right: 0;
}

#sh_content .idc-steps .idc-section-head{
  max-width:1200px;
  margin:0 auto 26px;
  padding:40px 20px 20px;
}

#sh_content .idc-steps-grid{
  max-width:1200px;
  margin:0 auto;
  padding:30px 20px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.idc-step-card{
  background:#fff;
  border:1px solid var(--idc-line);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 26px rgba(36,79,75,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 220px;
}

.idc-step-card:hover{
  transform: translateY(-2px);
  border-color: rgba(47,111,106,0.30);
  box-shadow: 0 14px 34px rgba(36,79,75,0.10);
}

.idc-step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
}

.idc-step-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--idc-soft);
  color: var(--idc-brand-dark);
  display:grid;
  place-items:center;
  border: 1px solid rgba(47,111,106,0.14);
}
.idc-step-ico svg{ width: 22px; height: 22px; }

.idc-step-num{
  font-weight: 900;
  color: rgba(15, 23, 42, 0.35);
  font-size: 14px;
  letter-spacing: .6px;
}

#sh_content .idc-step-title{
  margin: 0;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--idc-ink);
}


.idc-step-list{
  margin: 0;
  padding-top: 15px;
  color: var(--idc-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* =========================
   Cases
========================= */
#sh_content .idc-cases-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;  
  padding: 40px 0;
}

.idc-case-card{
  background:#fff;
  border: 1px solid var(--idc-line);
  border-radius: 18px;
  box-shadow: var(--idc-shadow);
  overflow:hidden;
}

.idc-case-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 18px;
  border-bottom: 1px solid var(--idc-line);
  background:
    radial-gradient(320px 120px at 15% 30%, rgba(47,111,106,0.14), transparent 65%),
    #fff;
}

#sh_content .idc-case-title{
  margin:0;
  font-size: 18px;
  font-weight: 600;
  color: var(--idc-ink);
  letter-spacing: -0.3px;
}

.idc-case-chip{
  font-size: 12px;
  font-weight: 800;
  color: var(--idc-brand);
  background: rgba(47,111,106,0.12);
  border: 1px solid rgba(47,111,106,0.16);
  padding: 6px 10px;
  border-radius: 999px;
}

.idc-case-block{
  padding: 22px 18px;
}
.idc-case-block + .idc-case-block{
  border-top: 1px dashed rgba(231,236,239,0.9);
}

.idc-case-block h4{
  margin:0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--idc-ink);
}
.idc-case-block p{
  margin:0;
  color: var(--idc-muted);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}
.idc-case-block ul{
  margin:0;
  color: var(--idc-muted);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px){
  #sh_content .idc-section-title{ font-size: 28px; }
  #sh_content .idc-steps-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .idc-step-card{ min-height: 210px; }
  #sh_content .idc-strength-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  #sh_content .idc-section{ padding: 46px 14px; }
  #sh_content .idc-section-title{ font-size: 24px; }
  #sh_content .idc-section-sub{ font-size: 14px; }

  #sh_content .idc-steps-grid{ grid-template-columns: 1fr; gap: 12px; }
  .idc-step-card{ min-height: auto; }

  #sh_content .idc-cases-grid{ grid-template-columns: 1fr; }

  #sh_content .idc-strength-card{
    padding: 18px 16px;
  }

  #sh_content .idc-card-ico{
    width: 74px;
    min-width: 74px;
    height: 74px;
    border-radius: 14px;
  }

  #sh_content .idc-card-ico img{
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 480px){
  #sh_content .idc-card-title{ font-size: 16px; }
  #sh_content .idc-bullets{ font-size: 13px; }
}

/* =========================
   Bullet 최종 정렬본 (HTML '-' 제거 전제)
========================= */

#sh_content .idc-bullets,
#sh_content .idc-step-list{
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
}

#sh_content .idc-bullets li,
#sh_content .idc-step-list li{
  position: relative;
  padding-left: 1.5em;     /* 본문 시작선 */
  line-height: 1.6;

  font-size: inherit;
  font-weight: inherit;
  color: inherit;

  /* 단어 쪼개짐 방지 */
  word-break: keep-all;
}

/* '-'를 CSS로 생성 */
#sh_content .idc-bullets li::before,
#sh_content .idc-step-list li::before{
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
