    <style>
        /* ========================================
           리브?토 ?자???스??           ======================================== */
        :root {
            --color-white: #FFFFFF;
            --color-sage: #6F8F72;
            --color-sage-light: #E8F0E9;
            --color-sage-lighter: #F4F8F4;
            --color-sage-dark: #5A7A5D;
            --color-amber: #F2A65A;
            --color-amber-light: #FEF3E7;
            
            --color-charcoal: #333333;
            --color-text-secondary: #666666;
            --color-text-muted: #999999;
            --color-border: #E5E5E5;
            --color-border-light: #F0F0F0;
            --color-bg-toc: #F5F5F5; /* ?5% */
            
            /* Typography - ?기 축소 */
            --font-serif: 'Noto Serif KR', serif;
            --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --font-size-body: 18px;      /* 19px ??18px */
            --font-size-h1: 30px;        /* 32px ??30px */
            --font-size-h2: 24px;        /* 26px ??24px */
            --font-size-h3: 20px;        /* 22px ??20px */
            --font-size-small: 14px;
            --font-size-xs: 12px;        /* 추? */
            
            --line-height-body: 1.85;
            --line-height-heading: 1.4;
            --letter-spacing: 0.01em;
            
            /* Layout - 콘텐???*/
            --max-width-content: 720px;  /* 680px ??720px */
            --max-width-page: 1400px;
            --sidebar-width: 300px;      /* 260px ??300px ?집 ?이?게 ?장 */
            --header-height: 64px;
            --bottom-bar-height: 64px;
            
            /* Spacing - 변??추? */
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 32px;
            --spacing-2xl: 48px;
            --spacing-3xl: 64px;
            
            /* ?운??규정 (공통) */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html { 
            font-size: 16px; 
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-charcoal);
            background: var(--color-white);
            -webkit-font-smoothing: antialiased;
            padding-bottom: var(--bottom-bar-height);
        }

        a { color: inherit; text-decoration: none; }

        /* ========================================
           Global Header
           ======================================== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--color-white);
            border-bottom: 1px solid var(--color-border-light);
            height: var(--header-height);
        }

        .header__inner {
            max-width: var(--max-width-page);
            margin: 0 auto;
            padding: 0 var(--spacing-2xl);  /* 48px ??변??*/
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header__logo {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 600;
            color: var(--color-sage);
        }

        .header__nav {
            display: flex;
            gap: 32px;
        }

        .header__nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-text-secondary);
        }

        .header__nav-link:hover { color: var(--color-charcoal); }

        .header__user {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--color-sage-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-sage);
            font-weight: 600;
            font-size: 14px;
        }

        /* ========================================
           Main Layout
           ======================================== */
        .main-layout {
            display: grid;
            grid-template-columns: var(--sidebar-width) 1fr;
            max-width: calc(var(--sidebar-width) + var(--max-width-content) + var(--spacing-2xl)); /* 100px ??변??*/
            margin: 0 auto;
            min-height: calc(100vh - var(--header-height) - var(--bottom-bar-height));
        }

        /* ========================================
           Left Sidebar: 목차 (?티?과 ?일 ????
           ======================================== */
        .toc-panel {
            background: var(--color-white);
            padding: var(--spacing-xl) var(--spacing-lg);
            min-height: 100%;
        }

        .toc-panel__sticky {
            position: sticky;
            top: calc(var(--header-height) + var(--spacing-xl));
        }

        .toc-panel__header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .toc-panel__title {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* 모바??목차 ?? 버튼 (PC?서????) */
        .toc-mobile-toggle {
            display: none;
        }

        /* 모바??목차 ?*/
        .toc-mobile-bar {
            display: none;
        }

        /* TOC List */
        .toc-list {
            list-style: none;
            margin-bottom: 16px;
            background: var(--color-sage-lighter);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg);
        }

        .toc-item {
            position: relative;
            margin-bottom: 4px;
            border-radius: var(--radius-sm);
            transition: background 0.15s;
            cursor: pointer;
        }

        .toc-item:hover {
            background: rgba(255,255,255,0.7);
        }

        .toc-item.dragging {
            opacity: 0.5;
            background: var(--color-sage-light);
        }

        .toc-item.dragging-child {
            opacity: 0.7;
            border-left: 2px solid var(--color-sage);
        }

        .toc-item__inner {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 10px 12px;
        }

        .toc-item__drag {
            width: 14px;
            height: 14px;
            color: var(--color-text-muted);
            opacity: 0;
            transition: opacity 0.15s;
            flex-shrink: 0;
            cursor: grab;
            margin-top: 2px;
        }

        .toc-item:hover .toc-item__drag {
            opacity: 1;
        }

        .toc-item__drag:active {
            cursor: grabbing;
        }

        .toc-item__marker {
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-sage);
            margin-top: 6px;
        }

        /* ??목 */
        .toc-item[data-level="h2"] .toc-item__marker {
            background: var(--color-sage);
        }

        /* 중제?*/
        .toc-item[data-level="h3"] {
            padding-left: 16px;
        }
        .toc-item[data-level="h3"] .toc-item__marker {
            width: 5px;
            height: 5px;
            background: transparent;
            border: 1.5px solid var(--color-sage);
        }

        .toc-item__text {
            flex: 1;
            min-width: 0;
            font-family: var(--font-sans);
            font-size: 14px;
            color: var(--color-charcoal);
            line-height: 1.5;
            word-break: break-word;
            overflow-wrap: break-word;
            outline: none;
        }

        .toc-item__text:empty::before {
            content: attr(data-placeholder);
            color: var(--color-text-muted);
            pointer-events: none;
        }

        .toc-item__text:focus {
            background: rgba(255,255,255,0.5);
            border-radius: 4px;
            padding: 2px 4px;
            margin: -2px -4px;
        }

        .toc-item[data-level="h2"] .toc-item__text {
            font-weight: 600;
        }

        .toc-item[data-level="h3"] .toc-item__text {
            font-size: 13px;
            color: var(--color-text-secondary);
        }

        /* ?벨 변?& ?? 메뉴 */
        .toc-item__actions {
            position: absolute;
            right: 8px;
            top: 8px;
            display: flex;
            gap: 4px;
            opacity: 0;
            transition: opacity 0.15s;
            background: var(--color-bg-toc);
            padding: 2px;
            border-radius: 4px;
        }

        .toc-item:hover .toc-item__actions {
            opacity: 1;
        }

        .toc-item__level-btn {
            padding: 4px 8px;
            border: 1px solid var(--color-border);
            background: var(--color-white);
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            color: var(--color-text-muted);
            cursor: pointer;
        }

        .toc-item__level-btn:hover {
            border-color: var(--color-sage);
            color: var(--color-sage);
        }

        .toc-item__level-btn.active {
            background: var(--color-sage);
            border-color: var(--color-sage);
            color: var(--color-white);
        }

        .toc-item__delete {
            width: 24px;
            height: 24px;
            border: none;
            background: transparent;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
        }

        .toc-item__delete:hover {
            background: #FDECEA;
            color: #D32F2F;
        }

        .toc-item__delete svg {
            width: 14px;
            height: 14px;
        }

        /* 목차 추? 버튼 (목차 ?래???치) */
        .toc-add-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 12px;
            border: 1px dashed var(--color-border);
            border-radius: var(--radius-md);
            background: transparent;
            color: var(--color-text-muted);
            font-size: 13px;
            font-family: var(--font-sans);
            cursor: pointer;
            transition: all 0.15s;
            margin-top: 8px;
        }

        .toc-add-btn:hover {
            border-color: var(--color-sage);
            color: var(--color-sage);
            background: rgba(255,255,255,0.8);
        }

        .toc-add-btn svg {
            width: 16px;
            height: 16px;
        }

        /* ========================================
           관???서 ?션
           ======================================== */
        .related-book-section {
            margin-top: var(--spacing-xl);
            padding-top: var(--spacing-xl);
            border-top: 1px solid var(--color-border-light);
        }

        .related-book-section__header {
            display: flex;
            align-items: center;
            margin-bottom: var(--spacing-md);
        }

        .related-book-section__title {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .related-book-list {
            list-style: none;
            margin-bottom: var(--spacing-md);
        }

        .related-book-item {
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-sm);
            padding: var(--spacing-sm);
            background: var(--color-sage-lighter);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            position: relative;
        }

        .related-book-item:last-child {
            margin-bottom: 0;
        }

        .related-book-item__cover {
            width: 48px;
            height: 64px;
            background: linear-gradient(135deg, #E8E0D5, #D4C8BA);
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .related-book-item__cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-book-item__cover-placeholder {
            font-size: 10px;
            color: var(--color-text-muted);
            text-align: center;
        }

        .related-book-item__info {
            flex: 1;
            min-width: 0;
        }

        .related-book-item__title {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-charcoal);
            line-height: 1.3;
            margin-bottom: 2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-book-item__author {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        .related-book-item__remove {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 20px;
            height: 20px;
            border: none;
            background: transparent;
            border-radius: 4px;
            display: none;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            cursor: pointer;
        }

        .related-book-item:hover .related-book-item__remove {
            display: flex;
        }

        .related-book-item__remove:hover {
            background: rgba(0,0,0,0.1);
            color: var(--color-charcoal);
        }

        .related-book-item__remove svg {
            width: 12px;
            height: 12px;
        }

        .related-book-add-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 12px;
            border: 1px dashed var(--color-border);
            border-radius: var(--radius-md);
            background: transparent;
            color: var(--color-text-muted);
            font-size: 13px;
            font-family: var(--font-sans);
            cursor: pointer;
            transition: all 0.15s;
        }

        .related-book-add-btn:hover {
            border-color: var(--color-sage);
            color: var(--color-sage);
            background: rgba(255,255,255,0.8);
        }

        .related-book-add-btn svg {
            width: 18px;
            height: 18px;
        }

        /* ========================================
           ?서 검??모달
           ======================================== */
        .book-search-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-lg);
        }

        .book-search-modal.visible {
            display: flex;
        }

        .book-search-modal__content {
            background: var(--color-white);
            border-radius: 16px;
            width: 100%;
            max-width: 480px;
            max-height: 80vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .book-search-modal__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--spacing-lg);
            border-bottom: 1px solid var(--color-border-light);
        }

        .book-search-modal__title {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-charcoal);
        }

        .book-search-modal__close {
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            cursor: pointer;
        }

        .book-search-modal__close:hover {
            background: var(--color-border-light);
            color: var(--color-charcoal);
        }

        .book-search-modal__close svg {
            width: 20px;
            height: 20px;
        }

        .book-search-modal__search {
            padding: var(--spacing-md) var(--spacing-lg);
            border-bottom: 1px solid var(--color-border-light);
        }

        .book-search-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-size: 14px;
            font-family: var(--font-sans);
            outline: none;
            transition: border-color 0.2s;
        }

        .book-search-input:focus {
            border-color: var(--color-sage);
        }

        .book-search-input::placeholder {
            color: var(--color-text-muted);
        }

        .book-search-modal__results {
            flex: 1;
            overflow-y: auto;
            padding: var(--spacing-md) var(--spacing-lg);
        }

        .book-search-result {
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-md);
            padding: var(--spacing-md);
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.15s;
        }

        .book-search-result:hover {
            background: var(--color-sage-lighter);
        }

        .book-search-result__cover {
            width: 56px;
            height: 76px;
            background: linear-gradient(135deg, #E8E0D5, #D4C8BA);
            border-radius: 4px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .book-search-result__cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .book-search-result__info {
            flex: 1;
            min-width: 0;
        }

        .book-search-result__title {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-charcoal);
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .book-search-result__author {
            font-size: 12px;
            color: var(--color-text-secondary);
            margin-bottom: 4px;
        }

        .book-search-result__meta {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        .book-search-empty {
            text-align: center;
            padding: var(--spacing-2xl);
            color: var(--color-text-muted);
            font-size: 14px;
        }

        .book-search-empty svg {
            width: 48px;
            height: 48px;
            margin-bottom: var(--spacing-md);
            opacity: 0.3;
        }

        /* ========================================
           Hero Section Wrapper (?티?과 ?일 - 1200px)
           ======================================== */
        .hero-editor-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--spacing-2xl) var(--spacing-2xl) 0;
        }

        .hero-editor {
            display: grid;
            grid-template-columns: 2fr 3fr;
            min-height: 280px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        /* 좌측: ??지 ?역 */
        .hero-editor__image-wrap {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-editor__placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-sage) 0%, #4a6b4d 50%, #3d5a40 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
        }

        .hero-editor__placeholder:hover {
            opacity: 0.9;
        }

        .hero-editor__placeholder-text {
            font-family: var(--font-serif);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .hero-editor__placeholder svg {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.5);
        }

        .hero-editor__image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-editor__image-remove {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(0,0,0,0.6);
            border-radius: 6px;
            color: white;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .hero-editor__image-wrap:hover .hero-editor__image-remove {
            display: flex;
        }

        .hero-editor__image-remove svg {
            width: 16px;
            height: 16px;
        }

        /* ?측: 콘텐??역 */
        .hero-editor__content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: var(--spacing-xl);
            background: var(--color-white);
        }

        .hero-editor__meta {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-md);
        }

        .hero-editor__category {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background: var(--color-sage-light);
            color: var(--color-sage);
            font-size: var(--font-size-small);
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            border: none;
        }

        .hero-editor__category:hover {
            background: var(--color-sage);
            color: var(--color-white);
        }

        .hero-editor__reading-time {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: var(--font-size-small);
            color: var(--color-text-muted);
        }

        .hero-editor__reading-time svg {
            width: 16px;
            height: 16px;
        }

        .title-editor {
            width: 100%;
            border: none;
            background: transparent;
            font-family: var(--font-sans);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-charcoal);
            margin-bottom: var(--spacing-sm);
            letter-spacing: -0.02em;
            resize: none;
            overflow: hidden;
        }

        .title-editor:focus { outline: none; }
        .title-editor::placeholder { color: var(--color-text-muted); }

        .subtitle-editor {
            width: 100%;
            border: none;
            background: transparent;
            font-family: var(--font-sans);
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            color: var(--color-text-secondary);
            resize: none;
        }

        .subtitle-editor:focus { outline: none; }
        .subtitle-editor::placeholder { color: var(--color-text-muted); }

        /* ????보 */
        .hero-editor__author {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-xl);
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--color-border-light);
        }

        .hero-editor__author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-sage-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-weight: 600;
            font-size: 16px;
            color: var(--color-sage);
            flex-shrink: 0;
        }

        .hero-editor__author-info {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            flex: 1;
        }

        .hero-editor__author-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--color-charcoal);
        }

        .hero-editor__author-date {
            font-size: 12px;
            color: var(--color-text-muted);
        }

        /* ========================================
           Content Area (본문 ?역)
           ======================================== */
        .content-area {
            padding: var(--spacing-2xl);
            max-width: var(--max-width-content);
            width: 100%;
        }

        /* ========================================
           본문 ?디??(?티?과 ?일)
           ======================================== */
        .body-editor {
            font-family: var(--font-serif);
            font-size: var(--font-size-body);
            line-height: var(--line-height-body);
            letter-spacing: var(--letter-spacing);
            color: var(--color-charcoal);
            min-height: 500px;
            outline: none;
            position: relative;
        }

        .body-editor:empty::before {
            content: attr(data-placeholder);
            color: var(--color-text-muted);
            pointer-events: none;
        }

        /* 문단 */
        .body-editor p {
            margin-bottom: 1.6em;
            text-align: justify;
            text-indent: 1em !important; /* ?여?기 강제 ?용 */
        }

        .body-editor > p:first-of-type {
            text-indent: 0 !important;  /* 본문 ??락??여?기 ?음 */
        }

        /* ?딩 ?음 ?락? ?여?기 ?음 */
        .body-editor h2 + p,
        .body-editor h3 + p {
            text-indent: 0 !important;
        }
        
        .body-editor blockquote + p {
            text-indent: 1em !important;  /* ?용??음? ?여?기 ?? */
        }

        /* ??목 h2 */
        .body-editor h2 {
            font-family: var(--font-sans);
            font-size: var(--font-size-h2);
            font-weight: 600;
            margin-top: 2.5em;
            margin-bottom: 1em;
            line-height: var(--line-height-heading);
            color: var(--color-charcoal);
            scroll-margin-top: calc(var(--header-height) + var(--spacing-xl));  /* 24px ??변??*/
        }

        .body-editor h2:first-child {
            margin-top: 0;
        }

        /* 중제?h3 */
        .body-editor h3 {
            font-family: var(--font-sans);
            font-size: var(--font-size-h3);
            font-weight: 600;
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: var(--line-height-heading);
            color: var(--color-sage);
            scroll-margin-top: calc(var(--header-height) + var(--spacing-xl));  /* 24px ??변??*/
            display: flex;      /* 추? */
            align-items: center; /* 추? */
            gap: 0.5em;         /* 추? */
        }

        .body-editor h3::before {
            content: '·';       /* '· ' ??'·' (공백 ?거, gap?로 처리) */
            font-size: 1.2em;   /* 추? */
            font-weight: 700;
        }

        /* ?용?*/
        .body-editor blockquote {
            margin: 2em 0;
            padding: var(--spacing-lg) var(--spacing-xl);  /* 24px 32px ??변??*/
            background: var(--color-sage-lighter);
            border-left: 3px solid var(--color-sage);
            font-style: italic;
            color: var(--color-text-secondary);
        }

        .body-editor blockquote p {
            margin: 0;
            text-indent: 0;
            text-align: left;
        }

        .body-editor blockquote p:last-child {
            margin-bottom: 0;  /* 추? */
        }

        /* ??지 */
        .body-editor figure {
            margin: 2em 0;
        }

        .body-editor figure img {
            width: 100%;
            border-radius: var(--radius-md);
        }

        .body-editor figcaption {
            margin-top: 8px;
            font-family: var(--font-sans);
            font-size: var(--font-size-small);
            color: var(--color-text-muted);
            text-align: center;
        }

        /* ?광???이?이??*/
        .body-editor .highlight {
            background: linear-gradient(to bottom, transparent 60%, rgba(242, 166, 90, 0.35) 60%);
            padding: 0 2px;
        }

        /* 병기 (?? 글?? 고딕, ?이지) */
        .body-editor .annotation {
            font-family: var(--font-sans);
            font-size: 0.6em;
            color: var(--color-sage);
            vertical-align: baseline;
        }

        /* ?동 병기 - ?릭 가???시 */
        .body-editor .annotation--auto {
            cursor: pointer;
            transition: all 0.15s;
        }

        .body-editor .annotation--auto:hover {
            background: var(--color-sage-lighter);
            border-radius: 2px;
        }

        /* 링크 */
        .body-editor a {
            color: var(--color-sage);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .body-editor a:hover {
            color: var(--color-sage-dark);  /* 추? */
        }

        /* 구분??*/
        .body-editor hr {
            border: none;
            height: 1px;
            background: var(--color-border);
            margin: 3em 0;
        }

        /* 리스??(??) */
        .body-editor ul, .body-editor ol {
            margin: 1.5em 0;
            padding-left: 1.5em;
        }

        .body-editor li {
            margin-bottom: 0.5em;
        }

        /* 미디???레?스???*/
        .media-placeholder {
            margin: 2em 0;
            padding: 48px 24px;
            background: var(--color-sage-lighter);
            border: 2px dashed var(--color-sage-light);
            border-radius: var(--radius-lg);
            text-align: center;
            cursor: pointer;
            transition: all 0.15s;
        }

        .media-placeholder:hover {
            background: var(--color-sage-light);
            border-color: var(--color-sage);
        }

        /* ?튜?*/
        .youtube-embed {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            margin: 2em 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #000;
        }

        .youtube-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* ========================================
           ?로??블록 메뉴 (?줄에?만 ?시)
           ======================================== */
        .block-menu {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 50;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.15s, visibility 0.15s;
        }

        .block-menu.visible {
            opacity: 1;
            visibility: visible;
        }

        /* ?????태 - 글 ?성 ?*/
        .block-menu.dimmed {
            opacity: 0.3;
            visibility: visible;
        }

        .block-menu.dimmed:hover {
            opacity: 1;
        }

        .block-menu__btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 12px;
            border: none;
            background: transparent;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: background 0.1s;
        }

        .block-menu__btn:hover {
            background: var(--color-sage-lighter);
        }

        .block-menu__btn svg {
            width: 20px;
            height: 20px;
            color: var(--color-text-secondary);
        }

        .block-menu__btn:hover svg {
            color: var(--color-sage);
        }

        .block-menu__btn span {
            font-size: 10px;
            color: var(--color-text-muted);
        }

        .block-menu__btn:hover span {
            color: var(--color-sage);
        }

        /* ========================================
           ?스???택 ???맷 ?업
           ======================================== */
        .format-popup {
            position: fixed;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 10px;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.15s;
        }

        .format-popup.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .format-popup__btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            font-family: var(--font-sans);
            transition: all 0.1s;
        }

        /* ?이?이??버튼 - 기본 ?태 */
        .format-popup__btn--highlight {
            background: var(--color-amber-light);
            color: #B8752E;
            border: 2px solid transparent;
        }

        .format-popup__btn--highlight:hover {
            background: var(--color-amber);
            color: var(--color-white);
        }

        /* ?이?이??버튼 - ?성???용?? ?태 */
        .format-popup__btn--highlight.active {
            background: var(--color-amber);
            color: var(--color-white);
            border: 2px solid #B8752E;
        }

        /* ?용?버튼 - 기본 ?태 */
        .format-popup__btn--quote {
            background: var(--color-sage-light);
            color: var(--color-sage-dark);
            border: 2px solid transparent;
        }

        .format-popup__btn--quote:hover {
            background: var(--color-sage);
            color: var(--color-white);
        }

        /* ?용?버튼 - ?성???용?? ?태 */
        .format-popup__btn--quote.active {
            background: var(--color-sage);
            color: var(--color-white);
            border: 2px solid var(--color-sage-dark);
        }

        /* 병기 버튼 - 기본 ?태 */
        .format-popup__btn--annotation {
            background: var(--color-white);
            color: var(--color-sage);
            border: 2px solid var(--color-sage-light);
        }

        .format-popup__btn--annotation:hover {
            background: var(--color-sage);
            color: var(--color-white);
        }

        /* 병기 버튼 - ?성???용?? ?태 */
        .format-popup__btn--annotation.active {
            background: var(--color-sage);
            color: var(--color-white);
            border: 2px solid var(--color-sage-dark);
        }

        /* ========================================
           ?단 고정 ?           ======================================== */
        .bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--bottom-bar-height);
            background: #FAF8F5;  /* ?피?톤 */
            border-top: 1px solid #EDE8E0;
            z-index: 150;
        }

        .bottom-bar__inner {
            max-width: var(--max-width-page);
            margin: 0 auto;
            padding: 0 48px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .bottom-bar__left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .bottom-bar__status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--color-text-muted);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-sage);
        }

        .status-dot.unsaved {
            background: var(--color-amber);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .bottom-bar__stats {
            display: flex;
            gap: 16px;
            padding-left: 16px;
            border-left: 1px solid var(--color-border-light);
            font-size: 12px;
            color: var(--color-text-muted);
        }

        .bottom-bar__stats strong {
            color: var(--color-charcoal);
        }

        .bottom-bar__right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bottom-bar__center {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ?이?버튼 */
        .btn--icon {
            width: 44px;
            height: 44px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            color: var(--color-text-secondary);
            cursor: pointer;
            transition: all 0.15s;
        }

        .btn--icon:hover {
            background: var(--color-sage-lighter);
            border-color: var(--color-sage-light);
            color: var(--color-sage);
        }

        .btn--icon:active {
            transform: scale(0.95);
        }

        .btn--icon svg {
            width: 26px;
            height: 26px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.15s;
            font-family: var(--font-sans);
        }

        .btn svg { width: 16px; height: 16px; }

        .btn--ghost {
            background: transparent;
            color: var(--color-text-secondary);
        }
        .btn--ghost:hover {
            background: var(--color-sage-lighter);
            color: var(--color-charcoal);
        }

        .btn--secondary {
            background: var(--color-white);
            color: var(--color-charcoal);
            border: 1px solid var(--color-border);
        }
        .btn--secondary:hover {
            border-color: var(--color-sage);
        }

        .btn--publish {
            background: var(--color-amber);
            color: var(--color-white);
        }
        .btn--publish:hover {
            background: #E09545;
        }

        /* ========================================
           발행 ?널 - PC: 중앙 모달, 모바?? ?라?드??           ======================================== */
        .slide-panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .slide-panel-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        /* PC: 중앙 모달 */
        .slide-panel {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            width: 480px;
            max-width: 90vw;
            max-height: 85vh;
            background: var(--color-white);
            border-radius: 16px;
            z-index: 201;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .slide-panel.visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .slide-panel__handle {
            display: none;
        }

        .slide-panel__header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--color-border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-shrink: 0;
        }

        .slide-panel__title {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-charcoal);
        }

        .slide-panel__close {
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            transition: all 0.15s;
        }

        .slide-panel__close:hover {
            background: var(--color-sage-lighter);
            color: var(--color-charcoal);
        }

        .slide-panel__close svg {
            width: 20px;
            height: 20px;
        }

        .slide-panel__body {
            padding: 24px;
            overflow-y: auto;
            flex: 1;
        }

        .slide-panel__footer {
            padding: 16px 24px;
            border-top: 1px solid var(--color-border-light);
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .slide-panel__footer .btn {
            flex: 1;
            justify-content: center;
            padding: 14px;
        }

        /* ?약 ?짜/?간 ?커 */
        .schedule-picker {
            display: flex;
            gap: 12px;
        }

        .schedule-picker__date {
            flex: 1.5;
        }

        .schedule-picker__time {
            flex: 1;
        }

        .schedule-picker input {
            cursor: pointer;
        }

        .schedule-picker input::-webkit-calendar-picker-indicator {
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
        }

        .schedule-picker input::-webkit-calendar-picker-indicator:hover {
            background: var(--color-sage-lighter);
        }

        /* ???드 */
        .field {
            margin-bottom: 20px;
        }

        .field:last-child {
            margin-bottom: 0;
        }

        .field__label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-charcoal);
            margin-bottom: 8px;
        }

        .field__input,
        .field__select,
        .field__textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 14px;
            color: var(--color-charcoal);
            transition: border-color 0.15s;
        }

        .field__input:focus,
        .field__select:focus,
        .field__textarea:focus {
            outline: none;
            border-color: var(--color-sage);
        }

        .field__select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .field__textarea {
            resize: vertical;
            min-height: 80px;
            line-height: 1.5;
        }

        /* ?그 ?력 */
        .tags-input {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 10px 12px;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            min-height: 48px;
        }

        .tags-input:focus-within {
            border-color: var(--color-sage);
        }

        .tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--color-sage-light);
            color: var(--color-sage);
            font-size: 13px;
            font-weight: 500;
            border-radius: 6px;
        }

        .tag-badge__remove {
            width: 14px;
            height: 14px;
            cursor: pointer;
            opacity: 0.7;
        }

        .tag-badge__remove:hover {
            opacity: 1;
        }

        .tag-input-field {
            flex: 1;
            min-width: 100px;
            border: none;
            font-size: 14px;
            outline: none;
            font-family: var(--font-sans);
        }

        .slide-panel__footer {
            padding: 16px 24px 24px;
            display: flex;
            gap: 12px;
        }

        .slide-panel__footer .btn {
            flex: 1;
            justify-content: center;
            padding: 14px;
        }

        /* ========================================
           TTS ?디???레?어
           ======================================== */
        .tts-player {
            position: fixed;
            bottom: calc(var(--bottom-bar-height) + 8px);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: var(--color-sage-lighter);
            border: 1px solid var(--color-sage-light);
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 160;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .tts-player.visible {
            opacity: 1;
            visibility: visible;
        }

        .tts-player__play-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-sage);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .tts-player__play-btn:hover {
            background: var(--color-sage-dark);
        }

        .tts-player__play-btn svg {
            width: 18px;
            height: 18px;
            color: var(--color-white);
            fill: var(--color-white);
        }

        .tts-player__play-btn .icon-pause {
            display: none;
        }

        .tts-player__play-btn.playing .icon-play {
            display: none;
        }

        .tts-player__play-btn.playing .icon-pause {
            display: block;
        }

        .tts-player__content {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 200px;
        }

        .tts-player__progress {
            position: relative;
            width: 100%;
            height: 4px;
            background: rgba(111, 143, 114, 0.3);
            border-radius: 2px;
            cursor: pointer;
        }

        .tts-player__progress-fill {
            height: 100%;
            background: var(--color-sage);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s;
        }

        .tts-player__time {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--color-text-muted);
        }

        .tts-player__controls {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .tts-player__control-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--color-text-secondary);
            transition: all 0.2s;
        }

        .tts-player__control-btn:hover {
            background: rgba(111, 143, 114, 0.2);
            color: var(--color-sage);
        }

        .tts-player__control-btn svg {
            width: 16px;
            height: 16px;
        }

        .tts-player__speed {
            font-size: 12px;
            font-weight: 600;
            color: var(--color-sage);
            min-width: 36px;
            text-align: center;
        }

        .tts-player__close {
            width: 28px;
            height: 28px;
            border: none;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--color-text-muted);
            margin-left: 4px;
        }

        .tts-player__close:hover {
            background: rgba(0,0,0,0.1);
            color: var(--color-charcoal);
        }

        .tts-player__close svg {
            width: 16px;
            height: 16px;
        }

        /* ========================================
           Toast
           ======================================== */
        .toast {
            position: fixed;
            bottom: calc(var(--bottom-bar-height) + 16px);
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            padding: 14px 28px;
            background: var(--color-charcoal);
            color: var(--color-white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 300;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .toast.success {
            background: var(--color-sage);
        }

        /* ========================================
           Responsive
           ======================================== */
        @media (max-width: 1000px) {
            .main-layout {
                grid-template-columns: 220px 1fr;
            }

            .hero-editor {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .hero-editor__thumb {
                max-width: 280px;
                margin: 0 auto;
            }

            .hero-editor__content {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .header__nav { display: none; }

            .main-layout {
                grid-template-columns: 1fr;
            }

            /* PC 목차 ?? */
            .toc-panel {
                display: none;
            }

            /* 모바??목차 ??시 */
            .toc-mobile-bar {
                display: block;
                position: sticky;
                top: var(--header-height);
                z-index: 90;
                background: var(--color-bg-toc);
                border-bottom: 1px solid var(--color-border-light);
            }

            .toc-mobile-bar__header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 12px 24px;
                cursor: pointer;
            }

            .toc-mobile-bar__title {
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 14px;
                font-weight: 600;
                color: var(--color-charcoal);
            }

            .toc-mobile-bar__title svg {
                width: 18px;
                height: 18px;
                color: var(--color-sage);
            }

            .toc-mobile-bar__toggle {
                width: 28px;
                height: 28px;
                border: none;
                background: transparent;
                border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--color-text-muted);
                transition: transform 0.2s;
            }

            .toc-mobile-bar__toggle svg {
                width: 20px;
                height: 20px;
            }

            .toc-mobile-bar.expanded .toc-mobile-bar__toggle {
                transform: rotate(180deg);
            }

            .toc-mobile-bar__content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .toc-mobile-bar.expanded .toc-mobile-bar__content {
                max-height: 60vh;
                overflow-y: auto;
            }

            .toc-mobile-bar__list {
                list-style: none;
                padding: 0 24px 16px;
            }

            .toc-mobile-bar__item {
                display: flex;
                align-items: flex-start;
                gap: 8px;
                padding: 10px 12px;
                border-radius: 6px;
                cursor: pointer;
                transition: background 0.15s;
            }

            .toc-mobile-bar__item:hover,
            .toc-mobile-bar__item:active {
                background: rgba(255,255,255,0.7);
            }

            .toc-mobile-bar__item.dragging {
                opacity: 0.5;
                background: var(--color-sage-light);
            }

            .toc-mobile-bar__item[data-level="h3"] {
                padding-left: 28px;
            }

            .toc-mobile-bar__marker {
                flex-shrink: 0;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--color-sage);
                margin-top: 8px;
            }

            .toc-mobile-bar__item[data-level="h3"] .toc-mobile-bar__marker {
                width: 5px;
                height: 5px;
                background: transparent;
                border: 1.5px solid var(--color-sage);
            }

            .toc-mobile-bar__text {
                flex: 1;
                font-size: 14px;
                color: var(--color-charcoal);
                line-height: 1.4;
                min-height: 20px;
                outline: none;
            }

            .toc-mobile-bar__text:empty::before {
                content: '?목 ?력';
                color: var(--color-text-muted);
            }

            .toc-mobile-bar__item[data-level="h2"] .toc-mobile-bar__text {
                font-weight: 600;
            }

            .toc-mobile-bar__item[data-level="h3"] .toc-mobile-bar__text {
                font-size: 13px;
                color: var(--color-text-secondary);
            }

            .toc-mobile-bar__item-actions {
                display: flex;
                gap: 4px;
                opacity: 0.5;
            }

            .toc-mobile-bar__item:hover .toc-mobile-bar__item-actions,
            .toc-mobile-bar__item:active .toc-mobile-bar__item-actions {
                opacity: 1;
            }

            .toc-mobile-bar__level-btn {
                padding: 4px 8px;
                border: 1px solid var(--color-border);
                background: var(--color-white);
                border-radius: 4px;
                font-size: 10px;
                font-weight: 600;
                color: var(--color-text-muted);
            }

            .toc-mobile-bar__level-btn.active {
                background: var(--color-sage);
                border-color: var(--color-sage);
                color: var(--color-white);
            }

            .toc-mobile-bar__delete-btn {
                width: 24px;
                height: 24px;
                border: none;
                background: transparent;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--color-text-muted);
            }

            .toc-mobile-bar__delete-btn svg {
                width: 14px;
                height: 14px;
            }

            .toc-mobile-bar__add {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                margin: 8px 24px 16px;
                padding: 10px;
                border: 1px dashed var(--color-border);
                border-radius: 6px;
                background: transparent;
                color: var(--color-text-muted);
                font-size: 13px;
                cursor: pointer;
            }

            .toc-mobile-bar__add:hover {
                border-color: var(--color-sage);
                color: var(--color-sage);
            }

            .toc-mobile-bar__add svg {
                width: 14px;
                height: 14px;
            }

            .content-area {
                padding: 24px;
            }

            /* 모바???어??퍼 */
            .hero-editor-wrapper {
                padding: var(--spacing-lg);
            }

            /* 모바???어? ?로 배치?변?*/
            .hero-editor {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            /* 모바????지 ?역 */
            .hero-editor__image-wrap {
                height: 180px;
                border-radius: 12px 12px 0 0;
            }

            /* 모바??콘텐??역 */
            .hero-editor__content {
                padding: var(--spacing-lg);
                border-radius: 0 0 12px 12px;
            }

            .title-editor {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .subtitle-editor {
                font-size: 15px;
                line-height: 1.5;
            }

            .hero-editor__author {
                margin-top: var(--spacing-lg);
            }

            .bottom-bar__stats { display: none; }

            /* 모바?? ?라?드???널 */
            .slide-panel {
                top: auto;
                left: 0;
                right: 0;
                bottom: 0;
                transform: translateY(100%);
                width: 100%;
                max-width: 100%;
                border-radius: 20px 20px 0 0;
            }

            .slide-panel.visible {
                transform: translateY(0);
            }

            .slide-panel__handle {
                display: block;
                width: 40px;
                height: 4px;
                background: var(--color-border);
                border-radius: 2px;
                margin: 12px auto;
            }

            .slide-panel__header {
                padding: 0 24px 16px;
            }

            /* 블록 메뉴 ?치 - 모바?에?는 본문 ?쪽 */
            .block-menu {
                left: 10px !important;
            }
        }

        /* ???? ?면 */
        @media (max-width: 480px) {
            :root {
                --font-size-body: 17px;
                --font-size-h1: 26px;
                --font-size-h2: 22px;
                --font-size-h3: 19px;
            }
            
            .hero-editor-wrapper {
                padding: var(--spacing-md);
            }

            .hero-editor__image-wrap {
                height: 150px;
            }

            .hero-editor__content {
                padding: var(--spacing-md);
            }

            .title-editor {
                font-size: var(--font-size-h1);
            }

            .subtitle-editor {
                font-size: 14px;
            }

            .content-area {
                padding: var(--spacing-md);
            }

            /* ?단 ?버튼 ?스???? */
            .bottom-bar__right .btn span {
                display: none;
            }

            .bottom-bar__right .btn {
                padding: 10px 12px;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }
    </style>
</head>
<body>
    <!-- ========================================
