/* ===== CSS 변수 (눈이 편안한 파스텔 크림 & 세이지 그린 단일 테마) ===== */
:root {
    --primary-color: #608066;       /* 부드럽고 차분한 세이지 그린 */
    --primary-light: #7da084;
    --primary-dark: #455d4b;
    
    --bg-light: #f4f3ef;           /* 눈이 편안한 웜 베이지/크림 배경 */
    --bg-main: #ffffff;            /* 카드 및 컴포넌트 배경 (순백색) */
    --bg-dark: #e8e7e1;            /* 인풋 필드, 비공개 마스크 배경 */
    
    --text-dark: #202621;          /* 짙은 차콜 그린 (눈의 피로 경감) */
    --text-main: #38423a;          /* 본문 텍스트 */
    --text-sub: #68756c;           /* 서브 텍스트 */
    
    --border-color: #e0ded5;       /* 파스텔 테두리 */
    --border-light: #ebeae3;       /* 아주 옅은 테두리 */
    
    --shadow-sm: 0 2px 8px rgba(100, 110, 100, 0.05);
    --shadow-md: 0 8px 20px rgba(100, 110, 100, 0.08);
    --shadow-lg: 0 16px 36px rgba(100, 110, 100, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 기본 스타일 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light); /* 짙은 네이비 배경 */
    line-height: 1.6;
}

a {
    color: var(--primary-color); /* 눈이 편안한 스카이블루 적용 */
    text-decoration: none;       /* 기본 밑줄 제거 */
    transition: var(--transition); /* 부드러운 색상 전환 효과 */
}

a:hover {
    color: var(--primary-light); /* 마우스를 올렸을 때 살짝 밝아지게 */
}

/* 본문 안의 링크는 밑줄을 쳐서 구분이 잘 되게 (선택 사항) */
.post-detail-content a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== 레이아웃 ===== */
#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

main {
    flex: 1;
    padding: 40px 0;
}

/* ===== 헤더 ===== */
#app > header {
    background: rgba(255, 255, 255, 0.95); /* 반투명 파스텔 배경 */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary-color);
}

.search-box {
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
}

.search-input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-dark); /* 입력창은 더 어둡게 */
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 128, 102, 0.15);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff; /* 세이지 그린 대비 흰색 글씨 */
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.btn-small {
    padding: 8px 12px;
    font-size: 12px;
}

/* ===== 메인 콘텐츠 레이아웃 ===== */
.main-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr 280px;
    gap: 20px;
}

.sidebar, .right-sidebar, .main-content {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar, .right-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 3px;
    margin-top: 16px;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-banner:visited {
    color: var(--text-main);
}

.sidebar-banner:hover {
    background: rgba(96, 128, 102, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sidebar-banner:hover .banner-text {
    color: var(--primary-color);
}

.banner-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 4px;
    object-fit: contain;
}

.banner-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: var(--text-main);
}

.banner-text strong {
    color: var(--primary-color);
    font-weight: 800;
}

.sidebar-banner:hover .banner-text strong {
    color: var(--primary-color);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

.category-list, .tag-list {
    list-style: none;
}

.category-item, .tag-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child, .tag-item:last-child {
    border-bottom: none;
}

.category-link, .tag-link {
    color: var(--text-sub);
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-link:hover, .tag-link:hover {
    color: var(--primary-color);
}

.count-badge {
    background: var(--bg-light);
    color: var(--text-sub);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid var(--border-color);
}

/* ===== 메인 콘텐츠 ===== */
.home-top-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.home-tab {
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-sub);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.home-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.home-tab.active {
    background: rgba(96, 128, 102, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.prologue-panel {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px;
    background: radial-gradient(circle at top left, var(--bg-main) 0%, var(--bg-light) 100%);
}

.prologue-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.prologue-text {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ===== 글 목록 ===== */
.posts-list {
    list-style: none;
}

.post-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.post-item:last-child {
    border-bottom: none;
}

.post-item:hover {
    background: var(--bg-light);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0 -12px;
    border-radius: 8px;
    box-shadow: inset 3px 0 0 var(--primary-color);
}

.post-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.post-item:hover .post-title {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-sub);
}

.post-category {
    background: rgba(96, 128, 102, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(96, 128, 102, 0.2);
}

.post-excerpt {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-badge {
    background: var(--bg-light);
    color: var(--text-sub);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tag-badge:hover {
    background: var(--primary-color);
    color: #0f172a;
    border-color: var(--primary-color);
}

/* ===== 우측 사이드바 리스트 ===== */
.recent-posts, .popular-tags {
    list-style: none;
}

.recent-post-item, .popular-tag-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.recent-post-item:last-child, .popular-tag-item:last-child {
    border-bottom: none;
}

.recent-post-link, .popular-tag-link {
    color: var(--text-sub);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    line-height: 1.5;
}

.recent-post-link:hover, .popular-tag-link:hover {
    color: var(--primary-color);
}

/* ===== 글 상세 페이지 ===== */
.post-detail {
    background: transparent;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: none;
    border: none;
}

.post-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 24px;
}

.post-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-sub);
    align-items: center;
}

.post-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 32px;
}

.post-detail-content p {
    margin-bottom: 16px;
}

.post-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid var(--border-color);
}

.post-footer {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* ===== 관리자 대시보드 ===== */
.admin-dashboard, .post-editor {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.admin-header, .editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.admin-title, .editor-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.posts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.posts-table thead {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.posts-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.posts-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-sub);
}

.posts-table tbody tr:hover {
    background: var(--bg-light);
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-edit, .btn-delete {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-edit {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-edit:hover { background: var(--primary-light); }

.btn-delete {
    background: #ef4444; /* 다크모드에 어울리는 약간 밝은 레드 */
    color: white;
}

.btn-delete:hover { background: #dc2626; }

/* ===== 글 작성/수정 폼 ===== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-dark);
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 128, 102, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== 다크 모드에 맞춘 Quill Editor 오버라이드 ===== */
.ql-container {
    font-size: 15px;
    border: 1px solid var(--border-color) !important;
    border-top: none !important;
    border-radius: 0 0 6px 6px;
    background: var(--bg-dark); /* 에디터 내부를 어둡게 */
    color: var(--text-main);
}

.ql-editor {
    min-height: 400px;
}

.ql-toolbar {
    border: 1px solid var(--border-color) !important;
    border-radius: 6px 6px 0 0;
    background: var(--bg-main); /* 툴바는 카드 배경색으로 */
}

/* Quill 아이콘 색상을 다크 모드에 맞게 흰색 계열로 변경 */
.ql-snow .ql-stroke {
    stroke: var(--text-sub) !important;
}
.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill {
    fill: var(--text-sub) !important;
}
.ql-snow .ql-picker {
    color: var(--text-sub) !important;
}

/* Quill Hover & Active 상태 */
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke {
    stroke: var(--primary-color) !important;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill {
    fill: var(--primary-color) !important;
}
.ql-snow .ql-picker:hover, .ql-snow .ql-picker.ql-expanded {
    color: var(--primary-color) !important;
}

.editor-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
}

/* ===== 모달 ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 38, 33, 0.5); /* 뒷배경을 옅은 반투명 차콜 그린으로 */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-sub);
}
.modal-close:hover {
    color: var(--text-dark);
}

/* ===== 푸터 ===== */
footer {
    background: var(--bg-light); /* 가장 어두운 배경 */
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    text-align: center;
    color: var(--text-sub);
    font-size: 13px;
    margin-top: auto;
}

/* ===== 유틸리티 및 반응형 ===== */
.hidden { display: none; }
.loading { text-align: center; padding: 40px; color: var(--text-sub); }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-sub);
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .main-wrapper { grid-template-columns: 1fr; }
    .sidebar, .right-sidebar { position: static; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .sidebar-section { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .header-content { flex-wrap: wrap; gap: 12px; }
    .search-box { margin: 0; max-width: 100%; order: 3; flex-basis: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .post-item { padding: 16px 0; }
    .logo { font-size: 20px; }
    .modal-content { padding: 24px; }
    .sidebar { grid-template-columns: 1fr; }
}

/* ===== 방명록 (Guestbook) 스타일 ===== */
.guestbook-panel {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 8px 0;
}

.guestbook-form-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.guestbook-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

@media (max-width: 600px) {
    .guestbook-form-row {
        grid-template-columns: 1fr;
    }
}

.guestbook-form-checkboxes {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-sub);
    align-items: center;
}

.guestbook-form-checkboxes label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.guestbook-list {
    margin-top: 16px;
}

.guestbook-item {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.guestbook-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guestbook-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.guestbook-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guestbook-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.guestbook-date {
    font-size: 12px;
    color: var(--text-sub);
}

.guestbook-content {
    margin: 0;
    color: var(--text-main);
    font-size: 14.5px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
}

.guestbook-actions {
    display: flex;
    gap: 8px;
}

.guestbook-private-mask {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-sub);
    font-size: 14.2px;
    cursor: pointer;
    padding: 8px 0;
}

.guestbook-private-mask:hover {
    color: var(--primary-color);
}

/* ===== 댓글 (Comments) 스타일 ===== */
.comments-section {
    margin-top: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.comments-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.comment-form {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 180px 180px auto;
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }
}

.comment-form-private {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-sub);
    cursor: pointer;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    position: relative;
    padding: 16px;
    border-radius: 8px;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.comment-item:hover {
    box-shadow: var(--shadow-sm);
}

.comment-item.is-admin-reply {
    background: rgba(96, 128, 102, 0.04);
    border-left: 3px solid var(--primary-color);
}

.comment-item.is-reply {
    margin-left: 32px;
}

.comment-reply-indicator {
    position: absolute;
    left: -20px;
    top: 16px;
    color: var(--text-sub);
    font-family: monospace;
    font-size: 14px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

.comment-author-badge {
    background: var(--primary-color);
    color: #ffffff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.comment-date {
    font-size: 11px;
    color: var(--text-sub);
}

.comment-content {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
}

.comment-content.is-deleted {
    color: var(--text-sub);
    font-style: italic;
}

.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    justify-content: flex-end;
}

.comment-btn {
    background: none;
    border: none;
    color: var(--text-sub);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.comment-btn:hover {
    color: var(--primary-color);
}

.comment-private-lock {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-sub);
    font-size: 13.5px;
    cursor: pointer;
}

.comment-private-lock:hover {
    color: var(--primary-color);
}

.reply-form-container {
    margin-left: 32px;
    margin-top: 8px;
    margin-bottom: 16px;
}