/* Post Styles */

body {
    background-color: var(--post-bg);
    line-height: 1.8;
    font-size: 17px;
}

.post-container { max-width: 740px; margin: 0 auto; padding: 60px 20px; }




    /* 상단 네비게이션 */
    .nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
    .back-link { text-decoration: none; color: var(--sub-text); font-size: 0.95rem; font-weight: 500; transition: 0.2s; }
    .back-link:hover {
        color: var(--text);
        outline: 2px solid var(--text); 
        outline-offset: 8px;
        border-radius: 8px;
    }

    /* 아티클 헤더 */
    .post-header { 
        border-bottom: 2px solid var(--text);
        padding-bottom: 20px;
        margin-bottom: 40px; text-align: left; 
    }
    .post-category { color: var(--accent); font-weight: bold; font-size: 0.9rem; text-transform: uppercase; }
    .post-title { font-size: 2.4rem; line-height: 1.3; margin: 10px 0 20px; word-break: keep-all; }
    .post-meta { color: var(--sub-text); font-size: 0.9rem; }

    /* 본문 요소들 */
    .post-content h2 { margin-top: 50px; margin-bottom: 20px; font-size: 1.6rem; color: var(--text); }
    .post-content p { margin-bottom: 25px; color: var(--text); opacity: 0.9; }

    /* 강조 박스 (Blockquote) */
    .blockquote { 
        border-left: 4px solid var(--accent); 
        background: var(--quote-bg); 
        padding: 25px; margin: 40px 0; border-radius: 0 8px 8px 0; 
        font-style: italic; color: var(--text);
    }

    /* 이미지 모듈 */
    .post-image { margin: 40px 0; text-align: center; }
    .post-image img { 
        width: 100%; max-height: 500px; object-fit: cover; 
        border-radius: 12px; border: 1px solid var(--border); 
    }
    .image-caption { margin-top: 12px; font-size: 0.85rem; color: var(--sub-text); }

    /* 2. 컨택트 카드 */
    .contact-card { 
        margin-top: 80px; padding: 40px; 
        background: var(--card-bg); 
        border: 1px solid var(--border); 
        border-radius: 16px; 
        text-align: center;
    }
    .contact-btn-group { display: flex; gap: 10px; justify-content: center; margin-top: 25px; }
    .btn { padding: 12px 24px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: 0.2s; }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-secondary { background: var(--border); color: var(--text); }
    .btn:hover { opacity: 0.8; transform: translateY(-2px); }

    /* 푸터 */
    .footer-nav { margin-top: 40px; text-align: center; border-top: 1px solid var(--border); padding-top: 30px; }
    

    
.post-content ul {
margin: 0 0 25px 24px;
}
.post-content li {
    margin-bottom: 10px;
}
.post-content code {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 0.9em;
}