/* 노블웹 내용관리 공통 스타일 가이드 */
.ctt_content {
    max-width: 1000px; /* 너무 퍼지지 않게 적절한 너비 제한 */
    margin: 40px auto;
    padding: 0 20px;
}

.ctt_content #ctt_con {
    padding: 60px 50px;
    background: #ffffff;
    line-height: 1.9;
    color: #4a5568;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    word-break: keep-all;
}

/* 제목 영역 중앙 정렬 및 노블웹 포인트 */
.ctt_content header {
    text-align: center;
    margin-bottom: 50px;
}

.ctt_content header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.ctt_content header h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #2d3748; /* 노블웹 메인 다크 컬러 */
    border-radius: 2px;
}

/* 소제목 (b, strong 태그) 공통 스타일 */
.ctt_content #ctt_con b, 
.ctt_content #ctt_con strong {
    display: block;
    font-size: 18px;
    color: #2d3748;
    margin-top: 45px;
    margin-bottom: 15px;
    border-left: 4px solid #cbd5e0;
    padding-left: 15px;
}

/* 리스트 스타일 정돈 */
.ctt_content #ctt_con ul {
    margin: 20px 0;
    padding-left: 5px;
}

.ctt_content #ctt_con li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.ctt_content #ctt_con li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce; /* 포인트 블루 컬러 */
    font-weight: bold;
}

/* 첫 번째 요소 상단 여백 제거 */
.ctt_content #ctt_con b:first-child,
.ctt_content #ctt_con strong:first-child,
.ctt_content #ctt_con p:first-child {
    margin-top: 0;
}

/* 모바일 대응 (반응형) */
@media (max-width: 768px) {
    .ctt_content {
        margin: 20px auto;
    }
    .ctt_content #ctt_con {
        padding: 35px 20px;
        font-size: 14px;
        border: none;
        box-shadow: none;
        background: transparent; /* 모바일은 가독성을 위해 배경 제거 가능 */
    }
    .ctt_content header h1 {
        font-size: 24px;
    }
}