/* ============================================================
   components.css - 按钮 / 标签 / 加载更多 / 空状态 / 分页 / 短代码
                    + 评论 + 文章页 + 页面 meta
   ============================================================ */

/* ============================================================
   按钮
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.96);
}

/* 主按钮 */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 次按钮 */
.btn-secondary {
    background: var(--bg-hover);
    color: var(--text-secondary);
    border-color: var(--border-base);
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

/* 幽灵按钮 */
.btn-ghost {
    background: transparent;
    color: var(--primary-color);
}

.btn-ghost:hover {
    background: var(--primary-light);
}

/* 小按钮 */
.btn-sm {
    padding: 4px 12px;
    font-size: var(--font-sm);
}

/* 图标按钮 */
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================================
   标签
   ============================================================ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--transition-fast);
}

/* 默认标签 */
.tag-default {
    background: var(--bg-hover);
    color: var(--text-secondary);
}

.tag-default:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* 主题色标签 */
.tag-primary {
    background: var(--primary-light);
    color: var(--primary-color);
}

.tag-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 番剧状态标签 */
.tag-watching  { background: #dcfce7; color: #16a34a; }
.tag-watched   { background: #dbeafe; color: #2563eb; }
.tag-unwatched { background: #f1f5f9; color: #64748b; }
.tag-dropped   { background: #fee2e2; color: #dc2626; }

/* 标签组 */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ============================================================
   加载更多
   ============================================================ */
.load-more-wrap {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 36px;
    background: var(--bg-hover);
    border: 1px solid var(--border-base);
    border-radius: var(--radius-full);
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.load-more-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.load-more-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.load-more-btn .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-base);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.load-more-btn.loading .spinner {
    display: inline-block;
}

.load-more-btn.loading .btn-text {
    display: none;
}

/* 已加载全部 */
.load-more-done {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-sm);
    padding: var(--space-lg) 0;
}

/* ============================================================
   空状态
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state .empty-icon {
    font-size: 56px;
    display: block;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.empty-state p {
    font-size: var(--font-md);
    margin-bottom: 6px;
}

.empty-state .empty-hint {
    font-size: var(--font-sm);
    color: var(--text-light);
}

/* ============================================================
   分页（保留，但推荐用加载更多）
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: var(--font-base);
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-base);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--bg-hover);
    border-color: var(--border-strong);
}

.pagination .current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================================
   加载中的骨架屏
   ============================================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-hover) 25%,
        var(--border-light) 50%,
        var(--bg-hover) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   Toast 提示
   ============================================================ */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 41, 59, 0.95);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: var(--font-base);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   分割线
   ============================================================ */
.divider {
    height: 1px;
    background: var(--border-light);
    margin: var(--space-md) 0;
}

.divider-dashed {
    height: 0;
    border-top: 1px dashed var(--border-base);
    margin: var(--space-md) 0;
}

/* ============================================================
   短代码相关（引用 / 黑幕 / tip / imgbtn）
   ============================================================ */

/* 引用卡片 */
.quote-card {
    border-left: 3px solid var(--primary-color);
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    word-wrap: break-word;
}

.quote-card .quote-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    margin-bottom: 6px;
    font-size: 12px;
}

.quote-card .quote-title {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.quote-card .quote-title:hover {
    text-decoration: underline;
}

.quote-card .quote-time {
    color: var(--text-muted);
    font-size: 11px;
}

.quote-card .quote-body {
    font-size: 13px;
    line-height: 1.7;
}

.quote-card .quote-footer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(59, 130, 246, 0.2);
}

.quote-card .quote-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* 黑幕 */
.spoiler {
    background: #1e293b;
    color: #1e293b;
    padding: 1px 5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.spoiler.revealed {
    background: transparent;
    color: inherit;
}

/* 悬浮图片 tip */
.tip-wrap {
    position: relative;
    display: inline;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    cursor: help;
}

.tip-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 240px;
    padding: 4px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-base);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transition-delay: 0.15s;
    pointer-events: none;
    z-index: 100;
}

.tip-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}

.tip-wrap:hover .tip-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tip-popup img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

/* 图片按钮 */
.imgbtn-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--bg-hover);
    border: 1.5px solid var(--border-base);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--font-base);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
    margin: 4px 0;
}

.imgbtn-trigger:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.imgbtn-trigger:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================================
   迷你番剧卡片（说说引用里用）
   ============================================================ */
.anime-mini-card {
    display: flex;
    gap: 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 10px 12px;
    margin: 6px 0;
}

.anime-mini-poster {
    flex-shrink: 0;
    width: 70px;
    height: 98px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #e2e8f0;
}

.anime-mini-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anime-mini-info {
    flex: 1;
    min-width: 0;
}

.anime-mini-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.anime-mini-sub {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.anime-mini-sub b {
    font-size: 9px;
    color: #b9c2d0;
    background: var(--bg-hover);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: 400;
}

.anime-mini-meta {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    align-items: center;
    margin-top: 2px;
}

.anime-mini-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 11px;
}

.anime-mini-stars .star-full,
.anime-mini-stars .star-half { color: #f59e0b; }
.anime-mini-stars .star-empty { color: #d1d5db; }

.anime-mini-stars .star-rating-text {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 4px;
}

.anime-mini-comment {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.anime-mini-comment:hover {
    color: var(--primary-color);
}

.anime-mini-comment-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 4px;
}

/* 番剧状态标签补充（与上面 .tag 前缀一致，保留别名兼容） */
.tag.tag-watching  { background: #dcfce7; color: #16a34a; }
.tag.tag-watched   { background: #dbeafe; color: #2563eb; }
.tag.tag-unwatched { background: #f1f5f9; color: #64748b; }
.tag.tag-dropped   { background: #fee2e2; color: #dc2626; }

/* ============================================================
   评论
   ============================================================ */
.comments-area {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--border-light);
}

.comments-title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

/* ---- 评论列表 ---- */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list > .comment-item {
    margin-bottom: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-hover);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.comment-list > .comment-item:hover {
    border-color: var(--primary-light);
}

.comment-children {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0 0 0 20px;
    border-left: 3px solid var(--border-base);
}

.comment-children .comment-item {
    margin-bottom: 10px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.comment-children .comment-children {
    padding-left: 16px;
    border-left-color: var(--border-light);
}

/* ---- 作者区 ---- */
.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--border-light);
}

.comment-author cite {
    font-weight: 600;
    font-style: normal;
    color: var(--text-primary);
    font-size: var(--font-base);
}

.comment-author time {
    font-size: var(--font-xs);
    color: var(--text-muted);
}

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---- 内容 ---- */
.comment-content {
    padding-left: 52px;
    font-size: var(--font-base);
    line-height: 1.7;
    color: var(--text-secondary);
    word-wrap: break-word;
}

.comment-content .reply-to {
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.comment-content .reply-to strong {
    color: var(--primary-color);
}

.comment-content p {
    margin: 0 0 6px 0;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.comment-content a:hover {
    text-decoration: underline;
}

.comment-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

/* ---- 操作 ---- */
.comment-actions {
    padding-left: 52px;
    margin-top: 6px;
}

.reply-link {
    font-size: var(--font-xs);
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 2px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.reply-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ---- 分页 ---- */
.comment-pagination {
    margin: var(--space-md) 0;
    text-align: center;
}

.comment-pagination a,
.comment-pagination .current {
    display: inline-block;
    padding: 4px 14px;
    margin: 0 3px;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    text-decoration: none;
}

.comment-pagination a {
    background: var(--bg-hover);
    color: var(--text-secondary);
}

.comment-pagination a:hover {
    background: var(--primary-color);
    color: #fff;
}

.comment-pagination .current {
    background: var(--primary-color);
    color: #fff;
}

/* ---- 表单 ---- */
.comment-respond {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    position: relative;
}

.comment-respond-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cancel-comment-reply {
    float: right;
    font-size: var(--font-sm);
}

.cancel-comment-reply a {
    color: var(--text-muted);
    text-decoration: none;
}

.cancel-comment-reply a:hover {
    color: #ef4444;
}

.comment-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-md);
}

.comment-fields p {
    margin-bottom: 0;
}

.login-status {
    background: var(--primary-light);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: var(--font-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.login-status a {
    color: var(--primary-color);
    text-decoration: none;
}

.logout-link {
    margin-left: 12px;
    color: var(--text-muted) !important;
}

.comment-form label {
    display: block;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.comment-form label.required::after {
    content: " *";
    color: #ef4444;
}

.comment-form .text,
.comment-form .textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-base);
    border-radius: var(--radius-md);
    font-size: var(--font-base);
    transition: border-color var(--transition-fast);
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
}

.comment-form .text:focus,
.comment-form .textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.comment-form .textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-wrap {
    margin-top: var(--space-md);
    margin-bottom: 0;
    text-align: right;
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: var(--radius-full);
    font-size: var(--font-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.comments-closed {
    color: var(--text-muted);
    font-size: var(--font-md);
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
}

/* ============================================================
   文章页
   ============================================================ */
.article-main {
    padding: var(--space-xl);
}

/* ---- 返回按钮 ---- */
.back-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-light);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px 6px 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.back-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(-2px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.back-btn .back-icon {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

/* ---- 标题 ---- */
.article-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.post-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ---- 正文 ---- */
.article-content {
    font-size: var(--font-md);
    line-height: 1.8;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content p { margin: 0 0 1em; }

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--text-primary);
    margin: 1.4em 0 0.6em;
    font-weight: 600;
}

.article-content h2 {
    font-size: var(--font-2xl);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.article-content h3 {
    font-size: var(--font-xl);
}

.article-content ul,
.article-content ol {
    padding-left: 28px;
    margin: 10px 0;
}

.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }
.article-content li { margin: 4px 0; }

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    display: block;
    margin: 16px auto;
    cursor: zoom-in;
}

.article-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 16px 0;
    font-size: 13px;
}

.article-content code {
    background: var(--bg-hover);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, monospace;
    font-size: 0.9em;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 16px 0;
    padding: 8px 20px;
    background: var(--bg-hover);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: var(--font-base);
    overflow-x: auto;
    display: block;
}

.article-content table th,
.article-content table td {
    padding: 8px 14px;
    border: 1px solid var(--border-base);
    text-align: left;
}

.article-content table th {
    background: var(--bg-hover);
    font-weight: 600;
}

/* ============================================================
   页面 meta
   ============================================================ */
.page-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.page-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 768px) {
    .comment-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .comment-content { padding-left: 0; margin-top: 10px; }
    .comment-actions { padding-left: 0; }
    .comment-children { padding-left: 12px; border-left: 2px solid var(--border-light); }
    .comment-list > .comment-item { padding: 14px 16px; }
    .comment-respond { padding: var(--space-md); }
    .comment-author .avatar { width: 32px; height: 32px; }

    .article-main { padding: var(--space-md); }
    .article-title { font-size: var(--font-2xl); }
    .article-content { font-size: var(--font-base); }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 16px;
        font-size: var(--font-sm);
    }

    .load-more-btn {
        padding: 8px 24px;
        font-size: var(--font-sm);
    }

    /* 短代码在小屏下的微调 */
    .tip-popup {
        width: 180px;
    }

    .imgbtn-trigger {
        padding: 6px 16px;
        font-size: 13px;
    }

    .anime-mini-poster {
        width: 60px;
        height: 84px;
    }

    .anime-mini-title {
        font-size: 13px;
    }

    .comment-list > .comment-item { padding: 12px 14px; border-radius: var(--radius-md); }
    .comment-content { font-size: 13px; }
}