@charset "utf-8";
/************************************************************************************************************
                                          시민 법률지원 - 중소기업 고문변호사제도
************************************************************************************************************/
.container {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* 상단 프로필 섹션 */
.header-box {
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  padding: 0px 30px 0px 0;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  background: #fff;
}
.profile-img {
  width: 215px;
  height: 181px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.header-info h2 {
  margin: 0 0 10px 0;
  font-size: 26px;
  color: #00468c;
}
.header-info h2 small {
  font-size: 16px;
  margin-right: 8px;
  color: #00468c;
  font-weight: 600;
}
.header-info span {
  margin-left: 10px;
}
.header-info p {
  margin: 0;
  font-size: 1.9rem;
  word-break: keep-all;
  color: #444;
}
.header-info .txt_small {
  margin: 10px 0 0;
  font-size: 1.5rem;
  word-break: keep-all;
  color: #444;
}
.highlight-blue {
  color: #00468c;
  font-weight: 500;
  font-size: 2.2rem;
}
.highlight-gray {
  color: #565656;
  font-weight: 400;
  font-size: 2rem
}
/* 본문 콘텐츠 */
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #222;
  line-height: 25px;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #00468c;
}
.content-text {
  font-size: 1.9rme;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
  word-break: keep-all;
}
.fee-list {
  list-style: none; /* 기본 점 제거 */
  padding: 0;
  margin: 0;
}
.fee-list li {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  position: relative;
  padding-left: 15px; /* 글머리 기호 여백 */
  word-break: keep-all; /* 단어 단위 줄바꿈 (가독성) */
}
/* 이미지의 '-' 글머리 기호 재현 */
.fee-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #666;
  font-weight: bold;
}
/* 참고사항 스타일 */
.fee-notice {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
  padding-left: 15px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th, td {
  border: 1px solid #ddd;
  padding: 12px 30px;
  font-size: 1.6rem;
}
td a {
  font-weight: 500;
  color: #F40307;
}
.point {
  color: #fff;
  background: #0056b3;
}
.section-stitle {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 15px;
}
.section-stitle p {
  font-size: 2.5rem;
  font-weight: 500;
  color: #f26522;
  padding-left: 5px
}
.only-mo {
  display: none;
}
.col-tit {
  width: 15%;
}
.col-txt {
  width: 85%;
}
/* --- 모바일 반응형 (768px 이하) --- */
@media (max-width: 768px) {
  .header-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .profile-img {
    width: 170px;
    height: 140px;
    border: 1px solid #ddd;
  }
  .header-info h2 {
    font-size: 22px;
  }
  .step-container {
    flex-direction: column;
    gap: 10px;
    border: none;
  }
  .step-item {
    border-right: 1px solid #eee;
    border-radius: 10px;
    padding-bottom: 20px;
  }
  .step-num {
    border-radius: 8px 8px 0 0;
  }
  .col-tit {
    width: 40%;
  }
  .col-txt {
    width: 60%;
  }
  /* 모바일에서는 화살표 장식 생략 (가독성 위함) */
  .step-item::after, .step-item::before {
    display: none;
  }
  .section-title {
    font-size: 20px;
  }
  .only-mo {
    display: inline;
  }
}