/* ============================================================
   每日一文 · 插件样式
   ============================================================ */

/* ---------- 前台容器 ---------- */
.da-wrap { padding: 8px 16px 32px; box-sizing: border-box; }

/* ---------- Hero ---------- */
.da-hero { background: var(--mn-bg-card, #fff); border: 1px solid var(--mn-border, #e5e7eb); border-radius: 12px; padding: 28px 24px; margin-bottom: 20px; }
.da-hero-title { margin: 0 0 10px; font-size: 24px; line-height: 1.35; color: var(--mn-text, #333); }
.da-hero-sub { margin: 0 0 10px; color: var(--mn-text-secondary, #666); font-size: 15px; line-height: 1.7; }
.da-hero-desc { margin: 0 0 18px; color: var(--mn-text-muted, #888); font-size: 13px; line-height: 1.9; }
.da-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Buttons ---------- */
.da-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; border: 1px solid var(--mn-border, #e5e7eb); background: var(--mn-bg-card, #fff); color: var(--mn-text, #333); font-size: 14px; line-height: 1.4; cursor: pointer; text-decoration: none; transition: border-color .15s, color .15s, opacity .15s; }
.da-btn:hover { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }
.da-btn-sm { padding: 5px 12px; font-size: 12px; }
.da-btn-primary { background: var(--mn-primary, #0066cc); border-color: var(--mn-primary, #0066cc); color: #fff; }
.da-btn-primary:hover { color: #fff; opacity: .92; }
.da-btn[disabled] { opacity: .5; cursor: not-allowed; }
.da-btn[disabled]:hover { border-color: var(--mn-border, #e5e7eb); color: var(--mn-text, #333); }

/* ---------- Sections / 通用 ---------- */
.da-section { margin-bottom: 24px; }
.da-section-title { margin: 0 0 12px; font-size: 16px; font-weight: 600; color: var(--mn-text, #333); }
.da-page-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.da-page-title { margin: 0; font-size: 20px; color: var(--mn-text, #333); }
.da-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; background: var(--mn-primary-subtle, #e6f0ff); color: var(--mn-primary, #0066cc); font-size: 12px; }
.da-date { color: var(--mn-text-muted, #888); }
.da-author { color: var(--mn-text-secondary, #666); }
.da-more { color: var(--mn-primary, #0066cc); text-decoration: none; }
.da-more:hover { text-decoration: underline; }
.da-more-wrap { margin: 12px 0 0; text-align: right; }
.da-text-muted { color: var(--mn-text-muted, #888); }

/* ============================================================
   今日一文（首页主视觉）
   ============================================================ */
.da-today-card { position: relative; background: linear-gradient(135deg, var(--mn-primary-subtle, #e6f0ff) 0%, var(--mn-bg-card, #fff) 65%); border: 2px solid var(--mn-primary, #0066cc); border-radius: 16px; padding: 32px 34px 26px; box-shadow: 0 8px 28px rgba(0, 102, 204, .18), 0 2px 8px rgba(0, 102, 204, .08); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.da-today-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--mn-primary, #0066cc) 0%, var(--mn-primary, #0066cc) 60%, var(--mn-primary-subtle, #a3c4f3) 100%); }
.da-today-card:hover { box-shadow: 0 12px 34px rgba(0, 102, 204, .22), 0 3px 10px rgba(0, 102, 204, .10); transform: translateY(-2px); }
.da-today-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 12px; }
.da-today-head .da-badge { padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .3px; background: var(--mn-primary, #0066cc); color: #fff; }
.da-today-head .da-date { color: var(--mn-text-muted, #888); }
.da-today-title { margin: 0 0 14px; font-size: 26px; font-weight: 700; line-height: 1.35; letter-spacing: .3px; color: var(--mn-text, #333); }
.da-today-title a { color: inherit; text-decoration: none; transition: color .15s; }
.da-today-title a:hover { color: var(--mn-primary, #0066cc); }
.da-today-summary { margin: 0 0 16px; color: var(--mn-text, #333); font-size: 16px; line-height: 1.9; font-weight: 450; }
.da-today-topics { margin: 0 0 18px; padding: 12px 16px; border-radius: 10px; background: var(--mn-bg-card, #fff); border: 1px dashed var(--mn-primary, #a3c4f3); }
.da-today-topics-label { display: inline-block; margin-right: 8px; font-size: 12px; font-weight: 700; color: var(--mn-primary, #0066cc); letter-spacing: .3px; }
.da-today-topics-list { display: inline; margin: 0; padding: 0; list-style: none; font-size: 13px; color: var(--mn-text-secondary, #555); line-height: 2; }
.da-today-topics-list li { display: inline; }
.da-today-topics-list li::before {
    content: "·";
    margin: 0 8px;
    color: var(--mn-text-secondary, #888);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
}
.da-today-topics-list li:first-child::before { content: ""; margin: 0; }
.da-today-foot { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--mn-text-muted, #888); margin-bottom: 20px; padding-bottom: 4px; }
.da-today-streams { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 18px; border-top: 1px solid var(--mn-border-light, #e5e7eb); }
.da-today-stream { min-width: 0; display: flex; flex-direction: column; }
.da-today-stream-title { margin: 0 0 8px; font-size: 13px; font-weight: 700; color: var(--mn-text, #333); letter-spacing: .3px; }
.da-today-list { list-style: none; margin: 0; padding: 0; }
.da-today-list li { padding: 6px 0; border-bottom: 1px dashed var(--mn-border-light, #eee); font-size: 13px; line-height: 1.7; color: var(--mn-text-secondary, #555); }
.da-today-list li:last-child { border-bottom: 0; }
.da-today-user { color: var(--mn-primary, #0066cc); font-weight: 500; margin-right: 2px; }
.da-today-text { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; word-break: break-word; color: var(--mn-text-secondary, #555); }
.da-today-empty { margin: 0; padding: 12px 0; color: var(--mn-text-muted, #999); font-size: 12px; }
@media (max-width: 640px) {
    .da-today-streams { grid-template-columns: 1fr; gap: 14px; }
    .da-today-card { padding: 22px 18px 18px; border-radius: 14px; }
    .da-today-title { font-size: 20px; }
    .da-today-summary { font-size: 15px; }
}

/* ---------- 往期列表 ---------- */
.da-issues { list-style: none; margin: 0; padding: 0; }
.da-issue { border-bottom: 1px dashed var(--mn-border-light, #eee); }
.da-issue:last-child { border-bottom: 0; }
.da-issue a { display: flex; align-items: center; gap: 12px; padding: 10px 4px; color: var(--mn-text, #333); text-decoration: none; font-size: 14px; }
.da-issue a:hover { color: var(--mn-primary, #0066cc); }
.da-issue-date { color: var(--mn-text-muted, #888); font-size: 12px; flex: 0 0 auto; }
.da-issue-title { flex: 1 1 auto; min-width: 0; }
.da-issue-tags { color: var(--mn-text-muted, #888); font-size: 12px; flex: 0 0 auto; }
.da-issues-full .da-issue a { padding: 12px 4px; }

/* ---------- 打卡 ---------- */
.da-checkin-inline { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px; }

/* ---------- Empty ---------- */
.da-empty { margin: 0; padding: 20px 0; text-align: center; color: var(--mn-text-muted, #888); font-size: 14px; }
.da-empty a { color: var(--mn-primary, #0066cc); text-decoration: none; }

/* ---------- Article detail ---------- */
.da-article { padding: 4px 0; }
.da-article-header { margin-bottom: 18px; }
.da-article-title { margin: 0 0 10px; font-size: 22px; line-height: 1.45; color: var(--mn-text, #333); }
.da-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 13px; color: var(--mn-text-muted, #888); }
.da-fontsize-ctrl { display: inline-flex; gap: 4px; align-items: center; margin-left: auto; }
.da-fontsize-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 26px; padding: 0 8px; border: 1px solid var(--mn-border, #e5e7eb); border-radius: 4px; background: var(--mn-bg-card, #fff); color: var(--mn-text-secondary, #666); font-size: 12px; line-height: 1; font-family: inherit; cursor: pointer; transition: border-color .15s, color .15s; }
.da-fontsize-btn:hover { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }
.da-fontsize-btn:disabled { opacity: .35; cursor: not-allowed; }
.da-fontsize-btn:disabled:hover { border-color: var(--mn-border, #e5e7eb); color: var(--mn-text-secondary, #666); }

.da-top-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.da-editor-note { background: var(--mn-primary-subtle, #f0f7ff); border: 0; border-radius: 8px; padding: 14px 18px; margin: 0 0 20px; color: var(--mn-text-secondary, #555); font-size: 13px; line-height: 1.9; }

.da-content { font-size: var(--da-article-font-size, 15px); line-height: 2; color: var(--mn-text, #333); white-space: pre-wrap; word-wrap: break-word; }
.da-content.da-rich { white-space: normal; }
.da-content.da-rich p { margin: 0 0 1em; line-height: 2; }
.da-content.da-rich p:last-child { margin-bottom: 0; }
.da-content.da-rich h1, .da-content.da-rich h2, .da-content.da-rich h3,
.da-content.da-rich h4, .da-content.da-rich h5, .da-content.da-rich h6 {
    margin: 1.2em 0 .6em; line-height: 1.4; color: var(--mn-text, #333);
}
.da-content.da-rich ul, .da-content.da-rich ol { margin: .6em 0 1em; padding-left: 1.6em; line-height: 1.9; }
.da-content.da-rich li { margin-bottom: .3em; }
.da-content.da-rich blockquote { margin: 1em 0; padding: .4em 1em; border-left: 3px solid var(--mn-primary, #0066cc); background: var(--mn-bg-soft, #f8f9fa); color: var(--mn-text-secondary, #666); border-radius: 4px; }
.da-content.da-rich pre, .da-content.da-rich code { background: var(--mn-bg-soft, #f8f9fa); border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.da-content.da-rich pre { padding: 12px 14px; overflow-x: auto; line-height: 1.6; }
.da-content.da-rich code { padding: 2px 6px; }
.da-content.da-rich pre code { padding: 0; background: transparent; }
.da-content.da-rich a { color: var(--mn-primary, #0066cc); text-decoration: none; }
.da-content.da-rich a:hover { text-decoration: underline; }
.da-content.da-rich img { max-width: 100%; height: auto; border-radius: 6px; display: block; margin: 1em auto; }
.da-content.da-rich hr { border: 0; border-top: 1px solid var(--mn-border-light, #eee); margin: 1.5em 0; }
.da-content.da-rich table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.da-content.da-rich th, .da-content.da-rich td { border: 1px solid var(--mn-border, #e5e7eb); padding: 8px 10px; text-align: left; }
.da-content.da-rich th { background: var(--mn-bg-soft, #f8f9fa); font-weight: 600; }

/* ---------- 译文（默认折叠：右下角"查看译文"按钮） ---------- */
.da-translation-wrap { margin: 20px 0 0; }
.da-translation-bar { display: flex; justify-content: flex-end; }
.da-translation-toggle {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border: 1px solid var(--mn-border-light, #e5e7eb);
    border-radius: 999px;
    background: var(--mn-bg-soft, #f8f9fa);
    color: var(--mn-text-muted, #888);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s, color .15s, background .15s;
}
.da-translation-toggle:hover {
    border-color: var(--mn-primary, #0066cc);
    color: var(--mn-primary, #0066cc);
}
.da-translation-toggle::before {
    content: "▾";
    font-size: 10px;
    line-height: 1;
    transition: transform .15s;
}
.da-translation-toggle.is-open::before { transform: rotate(180deg); }

.da-translation {
    margin: 10px 0 0;
    padding: 12px 16px 12px 14px;
    border-radius: 8px;
    background: var(--mn-bg-soft, #f8f9fa);
    border-left: 3px solid var(--mn-primary-subtle, #cbd9f5);
    font-size: 16px;
    line-height: 1.9;
    color: var(--mn-text-secondary, #666);
    word-wrap: break-word;
    word-break: break-word;
}
.da-translation[hidden] { display: none !important; }
.da-translation-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    color: var(--mn-text-muted, #888);
    margin-bottom: 6px;
}
.da-translation-body { white-space: normal; }
.da-translation-body a {
    color: var(--mn-primary, #0066cc);
    text-decoration: none;
}
.da-translation-body a:hover { text-decoration: underline; }

/* ---------- 批注（划线 + 角标） ---------- */
.da-annot { position: relative; border-bottom: 2px dashed var(--mn-warning, #f59e0b); background: var(--mn-warning-subtle, rgba(245, 158, 11, .08)); padding-bottom: 1px; cursor: pointer; }
.da-annot-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 16px; height: 16px; padding: 0 4px;
    margin-left: 2px;
    font-size: 10px; font-weight: 700; line-height: 1;
    color: #fff; background: var(--mn-warning, #f59e0b);
    border-radius: 999px;
    vertical-align: super; cursor: pointer;
    transition: transform .15s;
}
.da-annot-badge::before { content: attr(data-da-note); }
.da-annot-badge:hover { transform: scale(1.15); }

/* ---------- 底部延伸模块 ---------- */
.da-footer-module { margin-top: 36px; padding-top: 24px; border-top: 2px dashed var(--mn-border-light, #e5e7eb); }
.da-fm-block { margin-bottom: 22px; }
.da-fm-title { margin: 0 0 12px; font-size: 14px; font-weight: 700; color: var(--mn-text, #333); letter-spacing: .3px; }
.da-fm-next-link {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--mn-primary-subtle, #e6f0ff) 0%, var(--mn-bg-card, #fff) 80%);
    border: 1px solid var(--mn-primary-subtle, #cbd9f5);
    border-radius: 10px;
    color: inherit; text-decoration: none;
    transition: border-color .15s, transform .15s;
}
.da-fm-next-link:hover { border-color: var(--mn-primary, #0066cc); transform: translateY(-1px); }
.da-fm-date { font-size: 12px; color: var(--mn-text-muted, #888); }
.da-fm-next-title { font-size: 15px; font-weight: 600; color: var(--mn-text, #333); }
.da-fm-related { list-style: none; margin: 0; padding: 0; }
.da-fm-related li { border-bottom: 1px dashed var(--mn-border-light, #eee); }
.da-fm-related li:last-child { border-bottom: 0; }
.da-fm-related a { display: flex; align-items: center; gap: 12px; padding: 8px 4px; color: var(--mn-text, #333); text-decoration: none; font-size: 14px; }
.da-fm-related a:hover { color: var(--mn-primary, #0066cc); }
.da-fm-related-title { flex: 1 1 auto; min-width: 0; }
.da-fm-nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 8px; }
.da-fm-nav-btn {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 8px;
    background: var(--mn-bg-card, #fff);
    color: inherit; text-decoration: none;
    font-size: 13px;
    transition: border-color .15s, background .15s;
    word-break: break-word;
}
.da-fm-nav-btn:hover { border-color: var(--mn-primary, #0066cc); }
.da-fm-nav-btn.is-disabled { opacity: .5; cursor: not-allowed; color: var(--mn-text-muted, #888); }
.da-fm-nav-random {
    background: linear-gradient(135deg, var(--mn-primary-subtle, #e6f0ff) 0%, var(--mn-bg-card, #fff) 100%);
    border-color: var(--mn-primary-subtle, #cbd9f5);
    text-align: center; align-items: center; justify-content: center;
}
.da-fm-nav-dir { font-size: 12px; color: var(--mn-primary, #0066cc); font-weight: 600; }
.da-fm-nav-title { font-size: 13px; color: var(--mn-text, #333); line-height: 1.4; }
@media (max-width: 640px) { .da-fm-nav { grid-template-columns: 1fr; } }

/* ---------- 正文右下角标签 ---------- */
.da-article-tagline { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; margin: 22px 0 4px; padding-top: 10px; border-top: 1px dashed var(--mn-border-light, #eee); }
.da-article-tag { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--mn-bg-soft, #f8f9fa); border: 1px solid var(--mn-border-light, #e5e7eb); color: var(--mn-text-secondary, #666); font-size: 12px; line-height: 1.5; }
.da-article-tag:hover { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }

.da-hints { margin: 20px 0; padding: 12px 16px; border-radius: 6px; background: var(--mn-bg-soft, #f8f9fa); color: var(--mn-text-muted, #888); font-size: 13px; line-height: 1.9; }

.da-topic { margin: 20px 0; padding: 16px; border-radius: 8px; background: var(--mn-bg-card, #fff); border: 1px dashed var(--mn-border, #e5e7eb); }
.da-topic h3 { margin: 0 0 10px; font-size: 15px; color: var(--mn-text, #333); }
.da-topic-list { list-style: none; margin: 0; padding: 0; color: var(--mn-text-secondary, #666); font-size: 14px; line-height: 2; }
.da-topic-list li { position: relative; padding-left: 20px; margin-bottom: 6px; word-break: break-word; }
.da-topic-list li::before {
    content: ""; position: absolute; left: 4px; top: 1em;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--mn-primary, #0066cc);
    transform: translateY(-50%); opacity: .75;
}
.da-topic-extra { margin: 10px 0 0; color: var(--mn-text-secondary, #666); font-size: 14px; }
.da-footer-note { margin: 24px 0; text-align: center; font-size: 13px; color: var(--mn-text-muted, #888); }

/* ---------- Block / Form ---------- */
.da-block { margin-top: 28px; }
.da-form { margin-bottom: 14px; }
.da-textarea {
    width: 100%; min-height: 80px; box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 6px;
    background: var(--mn-bg-card, #fff);
    color: var(--mn-text, #333);
    font-size: 14px; line-height: 1.7; resize: vertical; font-family: inherit;
}
.da-textarea:focus { outline: none; border-color: var(--mn-primary, #0066cc); }
.da-form-actions { display: flex; gap: 10px; margin-top: 10px; }

.da-alias-picker { display: block; margin-top: 10px; }
.da-alias-label { display: block; margin-bottom: 6px; font-size: 12px; color: var(--mn-text-muted, #888); }
.da-alias-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.da-alias-chip {
    appearance: none; -webkit-appearance: none; font-family: inherit;
    display: inline-flex; align-items: center;
    padding: 4px 12px; border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 14px;
    background: var(--mn-bg-card, #fff); color: var(--mn-text, #333);
    font-size: 12px; line-height: 1.5; cursor: pointer;
    text-decoration: none; user-select: none;
    transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}
.da-alias-chip:hover { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }
.da-alias-chip.is-active { background: var(--mn-primary, #0066cc); border-color: var(--mn-primary, #0066cc); color: #fff; font-weight: 600; box-shadow: 0 0 0 2px var(--mn-primary-subtle, rgba(0, 102, 204, .18)); }
.da-alias-chip.is-active::before { content: '✓'; margin-right: 4px; font-weight: 700; line-height: 1; }

/* ---------- Comment / Quote list ---------- */
.da-comment-list, .da-quote-list { list-style: none; margin: 0; padding: 0; }
.da-comment, .da-quote { padding: 12px 0; border-bottom: 1px solid var(--mn-border-light, #eee); }
.da-comment:last-child, .da-quote:last-child { border-bottom: 0; }
.da-comment-head, .da-quote-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 12px; color: var(--mn-text-muted, #888); }
.da-comment-user, .da-quote-user { color: var(--mn-text-secondary, #666); font-weight: 600; }
.da-comment-body, .da-quote-body { font-size: 14px; line-height: 1.85; color: var(--mn-text, #333); white-space: pre-wrap; word-wrap: break-word; }

/* ---------- 存档标签 ---------- */
.da-tag-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.da-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--mn-border, #e5e7eb); background: var(--mn-bg-card, #fff); color: var(--mn-text-secondary, #666); font-size: 13px; text-decoration: none; transition: border-color .15s, color .15s; }
.da-tag:hover, .da-tag.is-active { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }
.da-pager { margin-top: 20px; text-align: center; }

/* ---------- Toast ---------- */
.da-toast {
    position: fixed; left: 50%; bottom: 40px;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, .82); color: #fff;
    padding: 9px 18px; border-radius: 6px;
    font-size: 13px; line-height: 1.5;
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 9999;
}
.da-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

.da-copy-helper { position: fixed; top: -9999px; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- 模态框 ---------- */
.da-modal { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 16px; }
.da-modal[hidden] { display: none !important; }
.da-modal-mask { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); cursor: pointer; }
.da-modal-panel {
    position: relative;
    background: var(--mn-bg-card, #fff);
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 12px;
    max-width: 560px; width: 100%;
    max-height: 88vh;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.da-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--mn-border-light, #eee); }
.da-modal-head h3 { margin: 0; font-size: 16px; font-weight: 600; color: var(--mn-text, #333); }
.da-modal-close {
    width: 28px; height: 28px; padding: 0;
    border: 0; background: transparent; cursor: pointer;
    font-size: 22px; line-height: 1;
    color: var(--mn-text-muted, #888);
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.da-modal-close:hover { background: var(--mn-bg-soft, #f8f9fa); color: var(--mn-text, #333); }
.da-modal-body {
    padding: 18px 20px;
    overflow-y: auto;
    font-size: 14px; line-height: 1.9;
    color: var(--mn-text, #333);
    white-space: pre-wrap;
    word-break: break-word;
}

.da-annot-quote {
    padding: 10px 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    background: var(--mn-bg-soft, #f8f9fa);
    border-left: 3px solid var(--mn-warning, #f59e0b);
    font-size: 13px;
    line-height: 1.7;
    white-space: normal;
}
.da-annot-quote-label { color: var(--mn-text-muted, #888); margin-right: 6px; }
.da-annot-quote-text { color: var(--mn-text, #333); font-weight: 500; }

.da-card-panel { max-width: 620px; }
.da-card-sign-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.da-card-sign-label { font-size: 13px; color: var(--mn-text-secondary, #666); white-space: nowrap; }
.da-card-sign-input {
    flex: 1 1 auto; min-width: 0;
    padding: 6px 10px;
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 6px;
    background: var(--mn-bg-card, #fff);
    color: var(--mn-text, #333);
    font-size: 13px; font-family: inherit;
}
.da-card-sign-input:focus { outline: none; border-color: var(--mn-primary, #0066cc); }
.da-card-preview {
    max-height: 60vh; overflow: auto;
    border-radius: 8px;
    border: 1px solid var(--mn-border-light, #eee);
    background: var(--mn-bg-soft, #f8f9fa);
    padding: 10px;
}
.da-card-preview canvas { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 6px; box-shadow: 0 6px 20px rgba(0, 0, 0, .12); }
.da-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* ---------- 选区浮动按钮 ---------- */
.da-sel-actions {
    position: fixed;
    z-index: 9997;
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: var(--mn-bg-card, #fff);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18), 0 2px 6px rgba(0, 0, 0, .10);
    border: 1px solid var(--mn-border-light, #eee);
}
.da-sel-actions[hidden] { display: none !important; }
.da-sel-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px;
    border: 0;
    border-radius: 999px;
    background: var(--mn-primary, #0066cc);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s, transform .15s;
}
.da-sel-btn:hover { opacity: .92; }
.da-sel-btn-quote { background: var(--mn-primary, #0066cc); }
.da-sel-btn-annot { background: var(--mn-warning, #f59e0b); }

/* ============================================================
   右栏面板（daily_article 首页 / 详情页用）
   ============================================================ */
.da-rs-panel { background: var(--mn-bg-card, #fff); border: 1px solid var(--mn-border, #e5e7eb); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; }
.da-rs-title { margin: 0 0 10px; padding-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--mn-text, #333); border-bottom: 1px solid var(--mn-border-light, #eee); }
.da-rs-issues { list-style: none; margin: 0; padding: 0; }
.da-rs-issues li { padding: 6px 0; border-bottom: 1px dashed var(--mn-border-light, #eee); }
.da-rs-issues li:last-child { border-bottom: 0; }
.da-rs-issues a { display: flex; flex-direction: column; gap: 2px; color: var(--mn-text, #333); text-decoration: none; font-size: 13px; line-height: 1.5; }
.da-rs-issues a:hover { color: var(--mn-primary, #0066cc); }
.da-rs-date { color: var(--mn-text-muted, #888); font-size: 11px; }
.da-rs-text { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; word-break: break-word; }
.da-rs-more { display: inline-block; margin-top: 8px; color: var(--mn-primary, #0066cc); text-decoration: none; font-size: 12px; }
.da-rs-more:hover { text-decoration: underline; }
.da-rs-streak { margin: 0 0 10px; font-size: 13px; color: var(--mn-text, #333); }
.da-rs-streak strong { color: var(--mn-primary, #0066cc); font-size: 16px; }
.da-rs-btn { width: 100%; justify-content: center; }
.da-rs-note { margin: 10px 0 0; font-size: 11px; color: var(--mn-text-muted, #888); line-height: 1.7; }
.da-rs-empty { margin: 0; font-size: 12px; color: var(--mn-text-muted, #888); }
.da-rs-empty a { color: var(--mn-primary, #0066cc); text-decoration: none; }
.da-rs-empty a:hover { text-decoration: underline; }

/* ============================================================
   核心首页右栏 · 每日一文紧凑卡片（美化版）
   ============================================================ */
.da-rs-tiny {
    position: relative;
    background: var(--mn-bg-card, #fff);
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 12px;
    padding: 14px 14px 12px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 102, 204, .06);
    transition: box-shadow .2s, transform .2s;
}
.da-rs-tiny:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 204, .12);
    transform: translateY(-1px);
}
/* 顶部主色渐变装饰条 */
.da-rs-tiny::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mn-primary, #0066cc) 0%, var(--mn-primary, #0066cc) 60%, var(--mn-primary-subtle, #a3c4f3) 100%);
}

/* ---------- 标题行 ---------- */
.da-rs-tiny-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}
.da-rs-tiny-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--mn-primary, #0066cc), #3b82f6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0, 102, 204, .25);
}
.da-rs-tiny-name {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--mn-text, #333);
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: .2px;
}
.da-rs-tiny-name:hover { color: var(--mn-primary, #0066cc); }
.da-rs-tiny-more {
    flex: 0 0 auto;
    font-size: 12px;
    color: var(--mn-text-muted, #888);
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s;
}
.da-rs-tiny-more:hover { color: var(--mn-primary, #0066cc); }

/* ---------- 文章块 ---------- */
.da-rs-tiny-article {
    display: block;
    position: relative;
    padding: 10px 12px 10px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--mn-primary-subtle, #f0f6ff) 0%, var(--mn-bg-card, #fff) 90%);
    border: 1px solid var(--mn-primary-subtle, #d6e4ff);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s;
    overflow: hidden;
}
.da-rs-tiny-article:hover {
    border-color: var(--mn-primary, #0066cc);
    box-shadow: 0 2px 8px rgba(0, 102, 204, .14);
}

.da-rs-tiny-issue {
    display: inline-block;
    padding: 1px 7px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: var(--mn-primary, #0066cc);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .2px;
}

.da-rs-tiny-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--mn-text, #333);
    line-height: 1.45;
    margin-bottom: 8px;
    letter-spacing: .2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.da-rs-tiny-author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--mn-text-muted, #888);
    overflow: hidden;
    white-space: nowrap;
}
.da-rs-tiny-author-name {
    color: var(--mn-primary, #0066cc);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}
.da-rs-tiny-author-sep { color: var(--mn-text-muted, #ccc); }
.da-rs-tiny-date { color: var(--mn-text-muted, #888); flex: 0 0 auto; }

.da-rs-tiny-empty {
    margin: 0;
    padding: 10px 0;
    font-size: 12px;
    color: var(--mn-text-muted, #888);
    text-align: center;
}

/* ---------- 打卡行 ---------- */
.da-rs-tiny-checkin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--mn-border-light, #eee);
    font-size: 12px;
    line-height: 1.4;
}
.da-rs-tiny-streak {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--mn-text-secondary, #666);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.da-rs-tiny-streak strong {
    color: var(--mn-primary, #0066cc);
    font-size: 14px;
    font-weight: 700;
    margin: 0 2px;
}
.da-rs-tiny-btn {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mn-primary, #0066cc), #3b82f6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 102, 204, .28);
    transition: opacity .15s, transform .15s, box-shadow .15s;
}
.da-rs-tiny-btn:hover {
    opacity: .94;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, .34);
}
.da-rs-tiny-btn.is-done {
    background: var(--mn-bg-soft, #f8f9fa);
    color: var(--mn-text-muted, #888);
    box-shadow: none;
    cursor: default;
    border: 1px solid var(--mn-border-light, #eee);
}
.da-rs-tiny-btn.is-done:hover {
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* ============================================================
   后台样式
   ============================================================ */
.da-admin { background: var(--mn-bg-card, #fff); border: 1px solid var(--mn-border, #e5e7eb); border-radius: 10px; padding: 20px 24px; margin-bottom: 24px; box-sizing: border-box; }
.da-admin-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--mn-border-light, #eee); flex-wrap: wrap; }
.da-admin-head .da-page-title { margin: 0; font-size: 18px; font-weight: 600; color: var(--mn-text, #333); }
.da-admin .da-form-error { padding: 10px 14px; margin-bottom: 16px; border-radius: 6px; border: 1px solid var(--mn-error, #f56c6c); background: var(--mn-error-subtle, rgba(245, 108, 108, .1)); color: var(--mn-error, #f56c6c); font-size: 13px; line-height: 1.6; font-weight: 500; }
.da-admin .form-row { margin-bottom: 16px; }
.da-admin label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 500; color: var(--mn-text, #333); line-height: 1.5; }
.da-admin .form-input, .da-admin input.form-input, .da-admin textarea.form-input, .da-admin select.form-input {
    width: 100%; box-sizing: border-box;
    padding: 8px 12px;
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 6px;
    background: var(--mn-bg-card, #fff);
    color: var(--mn-text, #333);
    font-size: 14px; line-height: 1.5; font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.da-admin .form-input:hover { border-color: var(--mn-text-muted, #c0c4cc); }
.da-admin .form-input:focus { outline: none; border-color: var(--mn-primary, #0066cc); box-shadow: 0 0 0 3px var(--mn-primary-subtle, rgba(0, 102, 204, .12)); }
.da-admin textarea.form-input, .da-admin .da-textarea-lg { min-height: 80px; resize: vertical; line-height: 1.7; }
.da-admin select.form-input { cursor: pointer; }
.da-admin .da-field-hint { margin: 6px 0 0; font-size: 12px; color: var(--mn-text-muted, #888); line-height: 1.6; }

.da-admin .editor-editable, .da-admin [contenteditable="true"] {
    min-height: 420px; max-height: 720px; overflow-y: auto;
    padding: 12px 16px; line-height: 1.9; font-size: 15px;
    color: var(--mn-text, #333);
    background: var(--mn-bg-card, #fff);
    box-sizing: border-box;
}
.da-admin .editor-editable p, .da-admin [contenteditable="true"] p { margin: 0 0 1em; line-height: 1.9; }
.da-admin .editor-editable p:last-child, .da-admin [contenteditable="true"] p:last-child { margin-bottom: 0; }
.da-admin .editor-editable h1, .da-admin .editor-editable h2, .da-admin .editor-editable h3, .da-admin .editor-editable h4,
.da-admin [contenteditable="true"] h1, .da-admin [contenteditable="true"] h2, .da-admin [contenteditable="true"] h3, .da-admin [contenteditable="true"] h4 {
    margin: 1em 0 .5em; line-height: 1.4; color: var(--mn-text, #333);
}
.da-admin .editor-editable ul, .da-admin .editor-editable ol,
.da-admin [contenteditable="true"] ul, .da-admin [contenteditable="true"] ol {
    margin: .5em 0 1em; padding-left: 1.6em; line-height: 1.9;
}
.da-admin .editor-wrap, .da-admin .mn-editor, .da-admin .editor-container {
    border-radius: 6px; overflow: hidden; border: 1px solid var(--mn-border, #e5e7eb); background: var(--mn-bg-card, #fff);
}

.da-admin .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 8px 16px;
    border: 1px solid var(--mn-border, #e5e7eb);
    border-radius: 6px;
    background: var(--mn-bg-card, #fff);
    color: var(--mn-text, #333);
    font-size: 14px; line-height: 1.4; font-family: inherit;
    cursor: pointer; text-decoration: none;
    transition: border-color .15s, background .15s, color .15s;
}
.da-admin .btn:hover { border-color: var(--mn-primary, #0066cc); color: var(--mn-primary, #0066cc); }
.da-admin .btn-primary, .da-admin .btn.btn-primary {
    background: var(--mn-primary, #0066cc) !important;
    border-color: var(--mn-primary, #0066cc) !important;
    color: #fff !important;
}
.da-admin .btn-primary:hover, .da-admin .btn-primary:focus,
.da-admin .btn.btn-primary:hover, .da-admin .btn.btn-primary:focus {
    background: var(--mn-primary, #0066cc) !important;
    border-color: var(--mn-primary, #0066cc) !important;
    color: #fff !important; opacity: .92;
}
.da-admin .c-danger { color: var(--mn-error, #ef4444); }
.da-admin .c-danger:hover { border-color: var(--mn-error, #ef4444); color: var(--mn-error, #ef4444); }

.da-admin .admin-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--mn-border-light, #eee); margin-bottom: 16px; flex-wrap: wrap; }
.da-admin .admin-tab-btn {
    padding: 8px 16px; border: 0; background: transparent;
    color: var(--mn-text-secondary, #666);
    font-size: 14px; font-family: inherit; cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: color .15s, border-color .15s;
}
.da-admin a.admin-tab-btn { display: inline-block; text-decoration: none; }
.da-admin .admin-tab-btn:hover { color: var(--mn-primary, #0066cc); }
.da-admin .admin-tab-btn.active { color: var(--mn-primary, #0066cc); border-bottom-color: var(--mn-primary, #0066cc); font-weight: 600; }

.da-admin .da-search-form { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px; }
.da-admin .da-search-input { width: 260px; max-width: 100%; }
.da-admin .da-search-count { margin-left: auto; font-size: 12px; color: var(--mn-text-muted, #888); }

.da-admin-table { width: 100%; border-collapse: collapse; border-radius: 6px; overflow: hidden; }
.da-admin-table th, .da-admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--mn-border-light, #eee);
    text-align: left;
    font-size: 13px; color: var(--mn-text, #333);
    vertical-align: top;
}
.da-admin-table th { font-weight: 600; background: var(--mn-bg-soft, #f8f9fa); color: var(--mn-text-secondary, #666); }
.da-admin-table tr:last-child td { border-bottom: 0; }
.da-admin-table tr:hover td { background: var(--mn-bg-soft, #f8f9fa); }
.da-admin-table .da-col-id { width: 56px; }
.da-admin-table .da-col-article { width: 180px; }
.da-admin-table .da-col-time { width: 150px; }
.da-admin-table .da-col-ops { width: 200px; }
.da-admin-table .da-cell-ellipsis { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.da-admin-table .da-cell-ellipsis a { color: var(--mn-primary, #0066cc); text-decoration: none; }
.da-admin-table .da-cell-ellipsis a:hover { text-decoration: underline; }
.da-admin-table .da-cell-content { max-width: 320px; word-break: break-word; white-space: pre-wrap; }
.da-admin-table .da-cell-time { color: var(--mn-text-muted, #888); font-size: 12px; }

.da-admin-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.da-inline-form { display: inline; margin: 0; }
.da-admin-form { padding-top: 4px; }
.da-admin-form .da-form-actions { display: flex; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--mn-border-light, #eee); }

/* 批注输入弹窗按钮组 */
#daAnnotAddModal .da-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--mn-border-light, #eee);
}
#daAnnotAddModal .da-modal-actions .da-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    justify-content: center;
    letter-spacing: .3px;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    transition: box-shadow .2s, transform .15s, background .15s, border-color .15s, color .15s;
}
#daAnnotAddModal .da-modal-actions .da-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
}
#daAnnotAddModal .da-modal-actions .da-btn-primary {
    background: var(--mn-primary, #0066cc) !important;
    border-color: var(--mn-primary, #0066cc) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 102, 204, .28), 0 1px 3px rgba(0, 102, 204, .16);
}
#daAnnotAddModal .da-modal-actions .da-btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, .36), 0 2px 4px rgba(0, 102, 204, .20);
}

/* 批注弹窗 textarea */
#daAnnotAddModal textarea.da-textarea {
    min-height: 120px;
    line-height: 1.8;
    font-size: 14px;
}

/* 卡片 / 批注弹窗按钮 white-space */
#daCardModal .da-modal-actions .da-btn {
    white-space: nowrap;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   归档页 · 信息增强卡片列表
   ============================================================ */
.da-archive-meta {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--mn-text-muted, #888);
    line-height: 1.6;
}
.da-archive-meta strong {
    color: var(--mn-primary, #0066cc);
    font-weight: 700;
}

.da-archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.da-archive-item {
    margin: 0;
    padding: 0;
}
.da-archive-item-link {
    display: block;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--mn-bg-card, #fff);
    border: 1px solid var(--mn-border-light, #eef0f3);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.da-archive-item-link:hover {
    border-color: var(--mn-primary, #0066cc);
    box-shadow: 0 4px 16px rgba(0, 102, 204, .12);
    transform: translateY(-1px);
}

/* 顶部：期号徽章 + 分类胶囊 */
.da-archive-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.da-archive-item-issue {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--mn-primary-subtle, #e6f0ff);
    color: var(--mn-primary, #0066cc);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .2px;
    white-space: nowrap;
}
.da-archive-item-cat {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--mn-bg-soft, #f8f9fa);
    border: 1px solid var(--mn-border-light, #eee);
    color: var(--mn-text-secondary, #666);
    font-size: 11px;
    line-height: 1.5;
    white-space: nowrap;
}

/* 标题 */
.da-archive-item-title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--mn-text, #333);
    letter-spacing: .2px;
    transition: color .15s;
}
.da-archive-item-link:hover .da-archive-item-title {
    color: var(--mn-primary, #0066cc);
}

/* 摘要：最多 2 行 */
.da-archive-item-summary {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--mn-text-secondary, #666);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* 底部元信息行 */
.da-archive-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px dashed var(--mn-border-light, #eee);
    font-size: 12px;
    color: var(--mn-text-muted, #888);
    line-height: 1.5;
}
.da-archive-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .da-archive-item-link { padding: 14px 16px; border-radius: 10px; }
    .da-archive-item-title { font-size: 16px; }
    .da-archive-item-meta { gap: 12px; }
    .da-archive-item-head { margin-bottom: 6px; }
}