* { box-sizing: border-box; margin: 0; padding: 0; }
       html { scroll-behavior: smooth; }
       body { font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif; font-size: 14px; color: #333; background-color: #f4f4f4; line-height: 1.6; font-weight: 400; margin: 0; padding: 20px; }
       a { text-decoration: none; color: inherit; }
       ul, ol { list-style: none; padding:0; margin:0; }
       button { cursor: pointer; font-family: inherit; border: none; background: none; padding: 0; }
       img { max-width: 100%; height: auto; display: block; }
       h1, h2, h3, h4, h5, h6, .logo-text { font-weight: 600; }
       h1.post-title, h2.sub-title { font-weight: 700; }

       :root {
        --card-border-radius: 8px;
        --theme-color: #8a2be2; /* 시크릿밤 테마 컬러 */
        --theme-color-dark: #6a1a9a;
        --accent-color-orange: #ff7e00; /* 강조색 */
        --warning-color: #dc3545;
        --content-width: 1100px;
        --side-padding: 20px;
       }

       .breadcrumb-nav { max-width: var(--content-width); margin: 0 auto 15px auto; padding: 0; }
       .breadcrumb { display: flex; flex-wrap: wrap; padding: 10px 15px; margin-bottom: 1rem; list-style: none; background-color: #e9ecef; border-radius: 6px; font-size: 0.9em; }
       .breadcrumb-item { display: flex; align-items: center; }
       .breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: .5rem; padding-left: .5rem; color: #6c757d; content: "/"; }
       .breadcrumb-item a { color: var(--theme-color); text-decoration: none; }
       .breadcrumb-item a:hover { text-decoration: underline; }
       .breadcrumb-item.active { color: #6c757d; font-weight: 500; }

       .dalto-post-wrap { /* 클래스명은 기존 파일의 것을 유지 */
            font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif;
            line-height: 1.75;
            color: #333;
            padding: 30px;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: var(--card-border-radius);
            word-break: keep-all;
            max-width: var(--content-width);
            margin: 0 auto 30px auto;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
       }

       .dalto-post-wrap h1.post-title { font-size: 28px; color: var(--theme-color); margin-bottom: 15px; padding-bottom: 20px; border-bottom: 2px solid var(--theme-color); text-align: center; }
       .dalto-post-wrap .post-meta { text-align: center; font-size: 0.9em; color: #777; margin-bottom: 30px; }
       .dalto-post-wrap h2.sub-title { font-size: 22px; color: var(--theme-color-dark); margin-top: 40px; margin-bottom: 18px; padding-left: 12px; border-left: 4px solid var(--accent-color-orange); display: flex; align-items: center; padding-top: 25px; border-top: 1px solid #eee; }
       .dalto-post-wrap h2.sub-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
       .dalto-post-wrap h2.sub-title i { margin-right: 10px; font-size: 0.9em; color: var(--accent-color-orange); }
       .dalto-post-wrap h3.content-subtitle { font-size: 18px; color: #444; margin-top: 25px; margin-bottom: 12px; font-weight: 600; padding-left: 15px; border-left: 3px solid #ccc; }
       .dalto-post-wrap p { margin-bottom: 18px; font-size: 15px; color: #444; line-height: 1.75;}
       .dalto-post-wrap .intro-image { margin-bottom: 20px; border-radius: var(--card-border-radius); overflow: hidden; border: 1px solid #eee; box-shadow: 0 2px 6px rgba(0,0,0,0.07); }
       .dalto-post-wrap .intro-image img { display: block; width: 100%; height: auto; max-width: 100%; margin: 0 auto; object-fit: cover; max-height: 450px; }

       .dalto-post-wrap p.intro-text { font-size: 16px; color: #555; margin-top: 30px; margin-bottom: 30px; font-weight: 500; text-align: left; padding: 20px; border-top: 1px dashed #ddd; border-bottom: 1px dashed #ddd; background-color: #fdfaff; border-radius: 6px; }
       .dalto-post-wrap strong { color: #000; font-weight: 600; }
       .dalto-post-wrap strong.theme-strong { color: var(--theme-color); }
       .dalto-post-wrap strong.highlight { background-color: #f5f0ff; padding: 2px 5px; border-radius: 4px; font-weight: 600; color: var(--theme-color-dark); }
       .dalto-post-wrap ul.features-list { list-style: none; padding: 0 0 0 10px; margin: 20px 0; border-left: 3px solid #eee; }
       .dalto-post-wrap ul.features-list li { margin-bottom: 14px; padding-left: 30px; position: relative; font-size: 15px; color: #555; }
       .dalto-post-wrap ul.features-list li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-color-orange); position: absolute; left: 5px; top: 3px; font-size: 16px; }

       .dalto-post-wrap .warning-box { background-color: #f8d7da; border: 1px solid #f5c6cb; border-left: 5px solid var(--warning-color); padding: 20px; margin: 25px 0; border-radius: var(--card-border-radius); }
       .dalto-post-wrap .warning-box h3 { font-size: 1.1em; color: #721c24; margin-top: 0; margin-bottom: 10px; display:flex; align-items:center; }
       .dalto-post-wrap .warning-box h3 i { margin-right: 8px; color: var(--warning-color); } /* 아이콘 색상 추가 */
       .dalto-post-wrap .warning-box p, .dalto-post-wrap .warning-box li { font-size: 0.95em; color: #721c24; }
       .dalto-post-wrap .warning-box ul { padding-left: 20px; margin-top:10px; }
       .dalto-post-wrap .warning-box ul li { list-style-type:disc; margin-bottom:5px; }
       .dalto-post-wrap .warning-box strong { color: #721c24; }

       .reviews-section-embed { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee;}
       .reviews-section-embed p { margin-bottom: 15px; }
       .reviews-section-embed .more-button-box { display: inline-block; width: auto; margin-top: 10px; background-color: var(--accent-color-orange); color: white !important; text-align: center; padding: 10px 15px; border-radius: 5px; font-weight: 500; transition: background-color 0.2s ease; text-decoration: none; font-size: 0.95em;}
       .reviews-section-embed .more-button-box:hover { background-color: #e66f00; }
       .reviews-section-embed .more-button-box i { margin-left: 8px; }

       .dalto-post-wrap a.internal-link { color: var(--theme-color); font-weight: 500; text-decoration: none; border-bottom: 1px dotted var(--theme-color); transition: color 0.2s, border-color 0.2s; }
       .dalto-post-wrap a.internal-link:hover { color: var(--theme-color-dark); border-bottom-color: var(--theme-color-dark); }
       .dalto-post-wrap .final-comment { margin-top: 40px; font-style: normal; color: #666; text-align: center; border-top: 1px dashed #ddd; padding-top: 30px; font-size: 16px; font-weight: bold;}

       @media (max-width: 992px) {
            :root { --content-width: 720px; }
       }
       @media (max-width: 768px) {
            :root { --content-width: 100%; }
            .breadcrumb-nav { padding: 0; margin-top: 0; }
            .dalto-post-wrap { padding: 20px; }
            .dalto-post-wrap h1.post-title { font-size: 24px; }
            .dalto-post-wrap h2.sub-title { font-size: 20px; }
       }
        @media (max-width: 576px) {
            body { padding: 10px; }
            .dalto-post-wrap { padding: 15px; }
            .dalto-post-wrap .intro-image img { max-height: 300px; }
       }