/* ====================== [SECTION : C11] 진료 항목 안내 (2분할 최종 레이아웃) ====================== */

.c11 {
    width: 100%;
    padding: 140px 0;
    box-sizing: border-box;
    background: #f4f4f4;
    text-align: center;
      word-break: keep-all;

}

.c11__inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width:1040px;
}

.c11__headline {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #111;
    margin: 0 0 50px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -1.1px;
}

.c11__list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c11__item {
    display: flex;
    width: 100%;
    text-align: left;
    border: 1px solid #e0e0e0;
    padding: 45px 30px; /* 전체 패딩 */
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    
    /* 중요: 세로 중앙 정렬 */
    align-items: center;
    background-color: #fff;
}

/* 1. 좌측 영역 (아이콘) */
.c11__left {
    flex-shrink: 0;
    width: 190px; /* 아이콘 영역 너비 고정 */
    text-align: center;
    padding-right: 30px; /* 우측 영역과의 간격 확보 */
}

/* 아이콘 스타일 */
.c11__icon {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    padding: 10px;
    box-sizing: content-box;
}

/* 아이콘 이미지 경로 지정 (이전에 가정한 클래스를 재사용) */
.c11__icon--tooth { background-image: url('../img/c11/01.png'); } 
.c11__icon--gum { background-image: url('../img/c11/02.png'); } 
.c11__icon--implant { background-image: url('../img/c11/03.png'); } 
.c11__icon--esthetic { background-image: url('../img/c11/04.png'); } 


/* ... (기존 스타일 유지) ... */

/* 2. 우측 영역 (제목 + 리스트) - 아이콘 옆 전체 공간 */
.c11__right {
  flex-grow: 1; 
  padding-left: 50px; 
  border-left: 1px solid #b5b5b5; 
  align-self: stretch; 
  display: block; 
  gap: 40px; 
}

.c11__titles {
 display: flex; /* 내부 제목 그룹을 Flex로 관리 */
 flex-direction: column;
 align-items: flex-start;
    
 margin-bottom: 0; 
}

/* 새로 추가된 논리적 그룹 컨테이너 스타일 */
.c11__content-group {
    margin-bottom: 25px; /* 각 큰 진료 항목 그룹 사이의 수직 간격 */
    display:flex;
    /* gap: 70px; */
    width: 100%;
}
.c11__content-group:last-child {
    margin-bottom: 0;
}

/* 제목 스타일 */
.c11__title {
 font-size: 26px;
 line-height: 1.2; /* 줄 높이 조정 */
 margin: 0 0 10px; /* 제목 아래와 리스트 사이 간격 */
}
.c11__title--main {
  font-weight: 700;
  color: #1a1a1a;
  /* width: 25%; */
  flex: 28% 0;
}
.c11__title--sub {
  font-weight: 500;
  color: #333;
}


/* 내용 리스트 스타일 (우측 영역) */
.c11__desc-list {
  list-style: none;
  padding: 0;
  margin: 0; /* 불필요한 마진 제거 */
  font-size: 15px;
  color: #000000;
  line-height: 1.5;
}

.c11__desc-list li {
  position: relative;
  padding-left: 15px;
  font-size: 18px; /* 22px에서 18px로 조정 */
  font-weight: 400; /* 500에서 400으로 조정 */
  letter-spacing: -0.5px;
  line-height: 1.5;
}
.c11__desc-list li::before {
  content: '–'; /* 더 깔끔한 EN DASH 사용 */
  position: absolute;
  left: 0;
  color: #f47321; /* 사용자님의 최종 CSS에서 사용된 주황색 계열 */
  font-weight: 700;
}

.c11__desc-list .higlight {
    font-size: 18px; /* 일반 리스트와 동일하게 유지 */
    padding-top: 0;
    color: #494949;
    font-weight: 500;
}
.c11__desc-list .higlight::before{content: none;}


/* 모바일 반응형에서 제목과 리스트가 섞이지 않도록 처리 */
@media (max-width: 768px) {
    /* ... (기존 모바일 스타일 유지) ... */
    
    /* 제목 그룹은 모바일에서 수직으로 표시 */
    .c11__titles {
        display: block;
    }
    .c11__content-group {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
    }
    .c11__title {
        font-size: 22px;
    }
    .c11__desc-list li {
        font-size: 16px;
    }
    .c11__inner{max-width:auto;}
}

/* ====================== 모바일 반응형 (≤768px) ====================== */
@media (max-width: 768px) {
    .c11 {
        /* padding: 50px 0; */
    }
    .c11__item {
        flex-direction: column; /* 수직으로 전환 */
        padding: 20px 34px;
        align-items: flex-start;
    }
    .c11__left {
        width: 100%;
        padding: 0;
        text-align: left;
        margin-bottom: 15px;
        
        /* 모바일에서는 아이콘과 제목 그룹을 수평으로 다시 배치 */
        display: flex; 
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee; 
    }
    .c11__icon {
        margin: 0 15px 0 0; /* 아이콘과 제목 사이 간격 */
        width: 60px;
        height: 60px;
    }
    .c11__right {
        width: 100%;
        padding: 0;
        border-left: none; /* 세로선 제거 */
    }
    .c11__titles {
        margin-bottom: 0; /* 리스트와 제목 간격 제거 */
    }
    .c11__desc-list {
        font-size: 14px;
        line-height: 1.7;
    }
}


@media(max-width:768px){
  

}

@media (max-width: 600px){
  .c11__title {
    font-size: 20px;}
    .c11__desc-list li {
    position: relative;
    padding-left: 18px;
    font-size: 22px;}
}

@media(max-width:360px){

}

@media(max-width:320px){

}

/* ====================== 모바일 반응형 (≤768px) ====================== */
@media (max-width: 768px) {
    .c11 {
        /* padding: 50px 0; */ /* 세로 패딩 축소 */
    }
    .c11__item {
        flex-direction: column; /* 수직으로 전환 */
        padding: 20px 20px; /* 패딩 조정 */
        align-items: flex-start;
    }
    /* 1. 좌측 영역 (아이콘) 스타일 재정의 */
    .c11__left {
        width: 100%;
        padding: 0;
        text-align: left;
        margin-bottom: 15px;
        
        /* 모바일: 아이콘과 제목 그룹을 수평으로 나열 */
        display: flex; 
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee; /* 하단에 구분선 추가 */
    }
    
    /* 제목 그룹은 c11__left 내부에서 아이콘 옆에 보이도록 처리 */
    .c11__titles {
        display: flex; /* 제목 그룹을 보이게 함 */
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }
    
    .c11__icon {
        width: 60px; /* 아이콘 크기 축소 */
        height: 60px;
        margin: 0 15px 0 0; /* 아이콘과 제목 그룹 사이 간격 */
    }
    
    /* 2. 우측 영역 (제목 + 리스트) 스타일 재정의 */
    .c11__right {
        width: 100%;
        padding: 0; /* PC에서 준 padding-left 제거 */
        border-left: none; /* 세로선 제거 */
        align-self: auto;
        
        /* 제목과 리스트가 모바일에서 수직으로 쌓이도록 */
        display: block; 
    }
    
    .c11__title {
        font-size: 20px; /* 제목 폰트 크기 조정 */
        margin: 0;
    }
    
    .c11__desc-list {
        font-size: 15px; /* 리스트 폰트 크기 유지 */
        line-height: 1.6; /* 줄 간격 조정 */
        padding-top: 10px; /* 제목과 리스트가 붙는 것을 방지 */
    }
    .c11__desc-list li {
        font-size: 15px; /* 리스트 텍스트 크기 일관성 유지 */
        letter-spacing: normal;
    }

.c11__desc-list .higlight {}

.c11__desc-list .higlight {
    font-size: 14px;
}
}

@media(max-width:360px){
  .c11__headline{font-size: clamp(24px, 4.6vw, 52px);}
}