@charset "utf-8";

/* =========================================================
   CONTENT SKIN DARK THEME
   (회사소개, 이용약관 등 내용 페이지용)
   ========================================================= */

/* 1. 메인 컨테이너 (다크 카드 스타일) */
#ctt {
    margin: 20px 0;
    padding: 40px;
    background: #1e1e1e; /* 다크 배경 */
    border: 1px solid #333; /* 테두리 */
    border-radius: 8px; /* 둥근 모서리 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* 그림자 */
    color: #e0e0e0; /* 기본 글자색 */
    font-family: 'Pretendard', sans-serif;
    line-height: 1.8;
}

/* 2. 관리자 버튼 영역 */
.ctt_admin {
    text-align: right;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.btn_admin {
    display: inline-block;
    padding: 6px 12px;
    background: #2c2c2c;
    color: #ccc;
    border: 1px solid #444;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.btn_admin:hover {
    background: #d4af37; /* 골드 호버 */
    color: #000;
    border-color: #d4af37;
    font-weight: bold;
}

/* 3. 제목 (기본적으로 head.php에서 출력되므로 숨김 처리 유지) */
#ctt header h1 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

/* 4. 본문 내용 스타일링 */
#ctt_con {
    padding: 10px 0;
    font-size: 1.05rem;
    color: #ccc;
}

/* 이미지 반응형 처리 */
#ctt_con img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
    border: 1px solid #333;
}

/* 본문 내 소제목 (h2, h3 등) 스타일링 */
#ctt_con h1, #ctt_con h2, #ctt_con h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #d4af37; /* 골드 밑줄 */
    padding-bottom: 10px;
    display: inline-block;
}

#ctt_con h4, #ctt_con h5 {
    color: #e0e0e0;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 본문 내 링크 */
#ctt_con a {
    color: #d4af37;
    text-decoration: underline;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #ctt { padding: 20px; }
    #ctt_con { font-size: 14px; }
}