span.dot{
    letter-spacing: -0.2em;
    margin: 0 0.2em 0 0;
}

.section-tags{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap; /* 모바일 줄바꿈 대응 */
}

.section-tags span{
  display:inline-flex;
  align-items:center;
  background:#e8edfc;
  padding:6px 14px;
  border-radius:30px;
  font-size:16px;
  color:#428dff;
  white-space:nowrap;
  font-weight:500;
}

.process-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:40px;
}

/* 화살표 */
.process-arrow{
  width:30px;
  height:auto;
  flex-shrink:0;
}

/* 원형 카드 */
.process-circle{
  width:250px;
  height:250px;
  border-radius:50%;
  border:1px solid #4794ff;
  background:#eef6ff;
  box-sizing:border-box; 
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:25px;
  position:relative;
}

/* 번호 */
.card-num{
  position:absolute;
  top:27px; 
  left:50%;
  transform:translateX(-50%);
  width:45px;
  height:45px;
  border-radius:50%;
  background:#4794ff;
  color:#fff;
  font-size:20px;
  font-weight:500;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* 텍스트 */
.process-circle h4{
  margin-top:18px;
  font-size:18px;
  font-weight:700;
  color:#004fac;
  margin-bottom:10px;
  letter-spacing:-0.02em; 
}

.process-circle ul{
  padding:0;
  margin:0;
  list-style:none;
}

.process-circle li{
  font-size:16px;
  color:#222;
  line-height:1.6;
  text-align: left;
  font-weight:400;
}


.icon-dot-s {
  position:relative;
  width: 5px;
  margin-right: 5px;
  margin-bottom: 4px;
}

.org-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.org-card{
  background:#fff;
  border-radius:16px;
  padding: 15px 15px 25px;
  text-align:center;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
}

/* 로고 영역 */
.org-logo{
  height:135px;                 /* ★ 로고 영역 고정 높이 */
  border:2px solid #9aa3b8;
  border-radius:10px;
  padding: 14px 12px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between; /* ★ 상단 로고 / 하단 라벨 분리 */
}

.org-logo img{
  height: 74px;
  object-fit:contain;
}

/* 로고 하단 라벨 */
.org-label{
  background:#9aa3b8;
  color:#fff;
  font-size:14px;
  padding:4px 14px;
  border-radius: 5px 5px 0 0;
  white-space:nowrap;
}

/* 텍스트 */
.org-card h4{
  margin-top:20px;
  font-size:18px;
  font-weight:700;
}

.org-card p{
  margin-top:8px;
  font-size:16px;
  line-height:1.6;
  color:#666;
}

.cooperation-box{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.cooperation-box img{
  width:100%;
  max-width:920px;
  height:auto;
}

.linkage-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.linkage-card{
  background:white;
  border-radius:20px;
  padding: 32px 22px;
  text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.linkage-card img{
 width:80px;
  margin-bottom:16px;
}

.linkage-card h4{
  font-size:18px;
  font-weight:700;
  color:#000;
}

.linkage-card p{
  font-size:16px;
  color:#666;
}