@charset "utf-8";

/* 내용관리 */
#ctt {margin:0 auto;padding:0}

/* 페이지 타이틀 스타일 */
.content-page-title {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    position: relative;
    color: #212529;
    margin-top: 0;
    margin-bottom: 50px;
    padding-bottom: 15px;
    background: none;
    border-bottom: none;
    text-shadow: none;
}
.content-page-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

#ctt_con {padding:10px 0}
#ctt_con img{max-width:100%;height:auto}

/* install_t 페이지 상단 여백 추가 */
.ctt_install_t #ctt_con {
    margin-top: 20px;
}

/* 반응형 조정 */
@media (max-width: 991px) {
    .content-page-title {
        font-size: 2.4em;
        margin-bottom: 40px;
    }
    .content-page-title::after {
        width: 60px;
    }
}
@media (max-width: 768px) {
    .content-page-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .content-page-title::after {
        width: 80px;
        height: 4px;
        bottom: 0;
    }
}
@media (max-width: 576px) {
    .content-page-title { font-size: 2em; }
}