.addon-item.selected .checkbox::after { content: "✔"; font-size: 24px; font-weight: bold; color: var(--ink); line-height: 1; margin-bottom: 4px;}
        
.addon-item .desc { font-size: 16px; color: var(--ink-light); margin-bottom: 24px;}
.addon-price { font-size: 22px; font-weight: 700;}

/* 博客列表：主区域距固定顶栏；文章阅读页无顶栏时用 html[data-layout-no-nav] 收紧上边距 */
#page-blog.page-main,
html:not([data-layout-no-nav]) .page-main:has(.blog-article-wrap) {
    padding-top: 84px;
}
@media (max-width: 768px) {
    #page-blog.page-main,
    html:not([data-layout-no-nav]) .page-main:has(.blog-article-wrap) {
        padding-top: 76px;
    }
}

html:not([data-layout-no-nav]) .page-main:has(.blog-article-wrap) .blog-article-back {
    margin-top: 18px;
}

/* ========== 文章阅读页（无顶栏）：舞台、衬纸、轻顶栏、宽屏目录 ========== */
html[data-layout-no-nav] .page-main.page-enter:has(.blog-article-stage) {
    padding-top: 0;
    padding-bottom: clamp(40px, 7vw, 72px);
    max-width: none;
}
html[data-layout-no-nav] .blog-article-stage {
    position: relative;
    padding: clamp(20px, 4vw, 40px) 0 clamp(32px, 6vw, 64px);
    background:
        linear-gradient(
            90deg,
            rgba(43, 43, 43, 0.04) 0%,
            rgba(43, 43, 43, 0) 14%,
            rgba(43, 43, 43, 0) 86%,
            rgba(43, 43, 43, 0.04) 100%
        );
}
html[data-layout-no-nav] .blog-article-outer.container {
    max-width: min(1180px, calc(100% - 32px));
}
html[data-layout-no-nav] .blog-article-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: clamp(18px, 3vw, 28px);
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(43, 43, 43, 0.18);
}
html[data-layout-no-nav] .blog-article-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, transform 0.25s var(--ease-spring, cubic-bezier(0.34, 1.35, 0.64, 1));
}
html[data-layout-no-nav] .blog-article-brand:hover {
    color: var(--ink);
}
html[data-layout-no-nav] .blog-article-brand-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--marker-yellow);
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-1);
    box-shadow: 2px 2px 0 var(--ink);
    transition: transform 0.3s var(--ease-spring, cubic-bezier(0.34, 1.35, 0.64, 1)), box-shadow 0.2s ease;
}
html[data-layout-no-nav] .blog-article-brand:hover .blog-article-brand-icon {
    transform: rotate(-5deg) scale(1.04);
    box-shadow: 3px 3px 0 var(--ink);
}
html[data-layout-no-nav] .blog-article-brand-icon .lucide {
    width: 18px;
    height: 18px;
}
html[data-layout-no-nav] .blog-article-topbar-sep {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-light);
    opacity: 0.45;
    user-select: none;
}
html[data-layout-no-nav] .blog-article-topbar-crumb {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-light);
    text-decoration: none;
    border-bottom: 2px dashed transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
html[data-layout-no-nav] .blog-article-topbar-crumb:hover {
    color: var(--ink);
    border-color: var(--marker-blue);
}

html[data-layout-no-nav] .blog-article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

html[data-layout-no-nav] .blog-article-sheet {
    background: #fffef8;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-3);
    box-shadow: var(--shadow-sketch, 5px 5px 0px var(--ink));
    padding: clamp(20px, 4vw, 36px) clamp(18px, 3.5vw, 32px) clamp(28px, 5vw, 44px);
    position: relative;
}
@media (max-width: 600px) {
    html[data-layout-no-nav] .blog-article-sheet {
        margin-left: -4px;
        margin-right: -4px;
        padding-left: clamp(14px, 4vw, 20px);
        padding-right: clamp(14px, 4vw, 20px);
    }
}

html[data-layout-no-nav] .blog-article-inner {
    max-width: 46rem;
    margin: 0 auto;
}

html[data-layout-no-nav] .blog-article-wrap {
    max-width: none;
    margin: 0;
    padding-bottom: 0;
}
html[data-layout-no-nav] .blog-article-back {
    margin-top: 0;
    padding: 4px 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-light);
    border-bottom: 2px dashed rgba(43, 43, 43, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: inline-block;
}
html[data-layout-no-nav] .blog-article-back:hover {
    color: var(--ink);
    border-color: var(--marker-blue);
}
html[data-layout-no-nav] .blog-article-head {
    margin-top: 10px;
    margin-bottom: clamp(24px, 4vw, 36px);
    padding-bottom: clamp(16px, 2.5vw, 24px);
    border-bottom: var(--border-width) dashed var(--ink-light);
}
html[data-layout-no-nav] .blog-article-head h1 {
    font-size: clamp(1.55rem, 4.2vw, 2.05rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}
html[data-layout-no-nav] .blog-article-head .blog-article-lead {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.55;
    margin-top: 12px;
}
html[data-layout-no-nav] .blog-article-body {
    font-size: clamp(17px, 2.1vw, 18px);
    line-height: 1.88;
}
html[data-layout-no-nav] .blog-article-body h2 {
    font-size: clamp(1.08rem, 2.5vw, 1.28rem);
    margin-top: 1.75em;
    scroll-margin-top: 1.25rem;
}

/* ---- 文章页 营销 Banner（衬纸同宽，在 grid 第一列） ---- */
html[data-layout-no-nav] .blog-article-after {
    margin-top: 0;
}
html[data-layout-no-nav] .blog-article-promo {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 24px);
    padding: clamp(20px, 3.5vw, 28px) clamp(20px, 3.5vw, 32px);
    background: linear-gradient(135deg, #fffde7 0%, #fff9c4 55%, #fffef8 100%);
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-3);
    box-shadow: var(--shadow-sketch, 5px 5px 0 var(--ink));
}
html[data-layout-no-nav] .blog-article-promo__deco {
    position: absolute;
    right: clamp(10px, 3vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.055;
    pointer-events: none;
    user-select: none;
}
html[data-layout-no-nav] .blog-article-promo__deco .lucide {
    width: clamp(56px, 14vw, 108px);
    height: clamp(56px, 14vw, 108px);
    stroke-width: 1.2px;
}
html[data-layout-no-nav] .blog-article-promo__body {
    flex: 1;
    min-width: min(220px, 100%);
    position: relative;
    z-index: 1;
}
html[data-layout-no-nav] .blog-article-promo__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--marker-pink);
    border: 1.5px solid var(--ink);
    border-radius: var(--sketch-radius-2);
    padding: 2px 9px;
    margin-bottom: 9px;
    vertical-align: middle;
}
html[data-layout-no-nav] .blog-article-promo__headline {
    font-size: clamp(1.1rem, 2.8vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
html[data-layout-no-nav] .blog-article-promo__sub {
    font-size: clamp(12px, 1.6vw, 14px);
    color: var(--ink-light);
    font-weight: 700;
    margin: 0;
    line-height: 1.55;
}
html[data-layout-no-nav] .blog-article-promo__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
html[data-layout-no-nav] .blog-article-promo__btn-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    background: var(--marker-yellow);
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-1);
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.28s var(--ease-spring, cubic-bezier(0.34, 1.35, 0.64, 1)), box-shadow 0.2s ease;
    white-space: nowrap;
}
html[data-layout-no-nav] .blog-article-promo__btn-home:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
}
html[data-layout-no-nav] .blog-article-promo__btn-home:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--ink);
}
html[data-layout-no-nav] .blog-article-promo__btn-home .lucide {
    width: 15px;
    height: 15px;
}

/* ---- 限时优惠 FAB（贴纸风格） ---- */
@keyframes blog-fab-sway {
    0%   { transform: rotate(-4deg) translateY(0);    }
    25%  { transform: rotate(-2deg) translateY(-4px); }
    60%  { transform: rotate(-5deg) translateY(-1px); }
    100% { transform: rotate(-4deg) translateY(0);    }
}
@keyframes blog-fab-ring {
    0%   { opacity: 0.9; transform: rotate(-4deg) scale(0.94); }
    100% { opacity: 0;   transform: rotate(-4deg) scale(1.55); }
}
@keyframes blog-fab-pop {
    0%   { transform: rotate(-4deg) scale(1);    }
    45%  { transform: rotate(-1deg) scale(1.12); }
    100% { transform: rotate(-4deg) scale(1);    }
}
html[data-layout-no-nav] .blog-offer-fab {
    position: fixed;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(148px, calc(env(safe-area-inset-bottom, 0px) + 128px));
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    padding: 14px 10px 11px;
    gap: 7px;
    text-decoration: none;
    color: var(--ink);
    background: var(--marker-yellow, #ffe44d);
    border: 2.5px solid var(--ink);
    /* 略微不规则的圆角，模拟手撕贴纸 */
    border-radius: 14px 16px 12px 15px / 13px 14px 16px 13px;
    box-shadow: 4px 4px 0 var(--ink);
    transform: rotate(-4deg);
    animation: blog-fab-sway 4.8s ease-in-out infinite;
}
/* 扩散光环 */
html[data-layout-no-nav] .blog-offer-fab::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2.5px solid var(--marker-yellow, #ffe44d);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    animation: blog-fab-ring 2.4s ease-out infinite;
}
html[data-layout-no-nav] .blog-offer-fab:hover {
    animation: blog-fab-pop 0.42s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
    box-shadow: 6px 6px 0 var(--ink);
}
html[data-layout-no-nav] .blog-offer-fab:active {
    animation: none;
    transform: rotate(-4deg) translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}
html[data-layout-no-nav] .blog-offer-fab:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}
/* 图标：深色圆形背景，反色图标 */
html[data-layout-no-nav] .blog-offer-fab__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--ink);
    border-radius: 50%;
    flex-shrink: 0;
}
html[data-layout-no-nav] .blog-offer-fab__icon .lucide {
    width: 18px;
    height: 18px;
    color: var(--marker-yellow, #ffe44d);
    stroke: var(--marker-yellow, #ffe44d);
}
html[data-layout-no-nav] .blog-offer-fab__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
html[data-layout-no-nav] .blog-offer-fab__label {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-align: center;
}
html[data-layout-no-nav] .blog-offer-fab__sub {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--ink);
    opacity: 0.55;
    line-height: 1.2;
    text-align: center;
}
@media (prefers-reduced-motion: reduce) {
    html[data-layout-no-nav] .blog-offer-fab,
    html[data-layout-no-nav] .blog-offer-fab::before {
        animation: none;
    }
    html[data-layout-no-nav] .blog-offer-fab {
        transform: rotate(-4deg);
        box-shadow: 4px 4px 0 var(--ink);
    }
}

/* ==================== 3. 涂鸦博客视图 ==================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; background: #fff;}
/* 分页隐藏：须覆盖上面的 display:flex，否则 [hidden] 被作者样式盖掉，卡片仍可见 */
.blog-card[hidden] { display: none !important; }
.blog-card:nth-child(2) { transform: translateY(20px); } /* 错落排版 */
.blog-grid a.blog-card.blog-card--link:nth-child(2):hover {
    transform: translate(-2px, 18px);
}
        
.blog-image { height: 200px; background: var(--paper-dot); border-bottom: 2.5px solid var(--ink); display: flex; align-items: center; justify-content: center;}
.blog-content { padding: 32px; display: flex; flex-direction: column; flex: 1;}
.blog-meta { font-size: 16px; color: var(--ink-light); margin-bottom: 16px; font-weight: 700;}

a.blog-card.blog-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    outline-offset: 4px;
    transition: box-shadow 0.38s var(--ease-smooth, cubic-bezier(0.22, 1, 0.36, 1)), transform 0.38s var(--ease-spring, cubic-bezier(0.34, 1.35, 0.64, 1));
}
a.blog-card.blog-card--link:focus-visible {
    outline: 3px solid var(--ink);
}
a.blog-card.blog-card--link:hover {
    box-shadow: 8px 8px 0 var(--ink);
    transform: translate(-2px, -2px);
}
a.blog-card.blog-card--link:active {
    box-shadow: 2px 2px 0 var(--ink);
    transform: translate(1px, 1px);
}
.blog-grid a.blog-card.blog-card--link:nth-child(2):active {
    transform: translate(1px, 21px);
}
/* 开发日记中归入 OpenClaw 专栏的卡片角标（与 data-blog-series="openclaw" / 链接含 openclaw 对应） */
.blog-card--series-openclaw .blog-image {
    position: relative;
}
.blog-card--series-openclaw .blog-image::after {
    content: 'OpenClaw';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border: 2px solid var(--ink);
    border-radius: var(--sketch-radius-2);
    background: var(--marker-yellow);
    color: var(--ink);
    line-height: 1;
    pointer-events: none;
}

.blog-read-more {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding-bottom: 2px;
    border-bottom: 2px dashed var(--ink);
    margin-top: auto;
}
a.blog-card.blog-card--link:hover .blog-read-more {
    color: var(--marker-blue);
    border-color: var(--marker-blue);
}

/* 文章详情页 */
.blog-article-wrap { max-width: 720px; margin: 0 auto; padding-bottom: 100px; }
.blog-article-back {
    display: inline-block;
    margin-top: 32px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px dashed var(--ink-light);
}
.blog-article-back:hover { color: var(--marker-blue); border-color: var(--marker-blue); }
.blog-article-head { margin-top: 28px; margin-bottom: 32px; }
.blog-article-head h1 { font-size: clamp(22px, 4.5vw, 32px); line-height: 1.3; margin-bottom: 12px; }
.blog-article-head .blog-article-lead { font-size: 18px; color: var(--ink-light); font-weight: 700; }
.blog-article-body { font-size: 18px; line-height: 1.85; color: var(--ink); }
.blog-article-body p { margin: 0 0 1.2em; }
.blog-article-body h2 { font-size: 22px; margin: 1.6em 0 0.6em; }
.blog-article-body ul { margin: 0 0 1.2em 1.2em; padding: 0; }
.blog-article-body li { margin-bottom: 0.5em; }

.blog-pager {
    margin-top: 48px;
    padding: 20px;
}
.blog-pager[hidden] { display: none !important; }
.blog-pager__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
}
.blog-pager__goto {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: var(--border-width) dashed var(--ink-light);
    border-radius: var(--sketch-radius-3);
}
.blog-pager__goto-text { font-size: 17px; font-weight: 700; color: var(--ink); }
.blog-pager__goto-total { font-size: 17px; font-weight: 700; color: var(--ink-light); }
.blog-pager__input {
    width: 4.2em;
    padding: 8px 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    color: var(--ink);
    background: #fff;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-2);
    box-shadow: 2px 2px 0 var(--ink);
    -moz-appearance: textfield;
}
.blog-pager__input::-webkit-outer-spin-button,
.blog-pager__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.blog-pager__input:focus {
    outline: none;
    box-shadow: 3px 3px 0 var(--ink);
}
.blog-pager__goto-btn { padding: 8px 18px; font-size: 16px; }
.blog-pager__info {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-light);
    min-width: 8em;
    text-align: center;
}
.blog-pager__btn {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    border: var(--border-width, 2.5px) solid var(--ink);
    border-radius: var(--sketch-radius-1);
    box-shadow: 3px 3px 0 var(--ink);
    cursor: pointer;
}
.blog-pager__btn:hover:not(:disabled) {
    box-shadow: 5px 5px 0 var(--ink);
    transform: translate(-1px, -1px);
}
.blog-pager__btn:active:not(:disabled) {
    box-shadow: 1px 1px 0 var(--ink);
    transform: translate(1px, 1px);
}
.blog-pager__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: 2px 2px 0 var(--ink);
}

/* ==================== 日记 / OpenClaw 双栏切换（轻量胶囊） ==================== */
/* 置顶靠左，避免与下方居中大标题在视觉或层级上抢位、被误读为「被挡住」 */
.blog-dual-rail-wrap {
    max-width: 100%;
    margin: 0 0 28px;
    text-align: left;
    position: relative;
    z-index: 10;
    width: fit-content;
    max-width: min(100%, 36em);
}
.blog-dual-rail {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    padding: 3px 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.035);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-dual-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin: 0;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-light);
    transition: color 0.15s ease, background 0.15s ease;
}
.blog-dual-tab:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
}
.blog-dual-tab--active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.blog-dual-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.55;
}
.blog-dual-tab--active .blog-dual-tab-icon {
    opacity: 0.9;
}
.blog-dual-tab-icon i {
    width: 15px;
    height: 15px;
    stroke-width: 2px;
}
.blog-dual-tab-text {
    min-width: 0;
}
.blog-dual-tab-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
}
.blog-dual-sep {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-light);
    opacity: 0.45;
    user-select: none;
    padding: 0 2px;
}
.blog-dual-hint {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-light);
    line-height: 1.45;
    opacity: 0.88;
    text-align: left;
}
.blog-dual-hint code {
    font-size: 0.95em;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    color: var(--ink);
}

.blog-panel[hidden] {
    display: none !important;
}

#page-blog .blog-panel-openclaw {
    padding-bottom: 80px;
}

/* ============================================================
   Midnight Aurora 博客列表重设计
   blg-* 命名空间，与旧 blog-* 并存，不互相覆盖
   ============================================================ */

/* ── CSS 变量（与首页 idx-vitrine 对齐）── */
#page-blog {
    --blg-vitrine-bg: linear-gradient(
        155deg,
        rgba(28, 16, 48, 0.82) 0%,
        rgba(14, 8, 28, 0.88) 45%,
        rgba(18, 10, 36, 0.78) 100%
    );
    --blg-vitrine-border: rgba(167, 139, 250, 0.22);
    --blg-vitrine-shadow: 0 24px 60px -28px rgba(79, 70, 229, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --idx-vitrine-bg: var(--blg-vitrine-bg);
    --idx-vitrine-border: var(--blg-vitrine-border);
    --idx-vitrine-shadow: var(--blg-vitrine-shadow);
}

/* ── Shell 容器 ── */
.blg-shell {
    padding-top: 0;
}

/* ── Hero ── */
.blg-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 14vw, 130px) 0 clamp(52px, 10vw, 96px);
    text-align: center;
}

.blg-hero__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% -10%, rgba(139, 92, 246, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 15% 60%,  rgba(232, 121, 249, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 85% 65%,  rgba(99, 102, 241, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.blg-hero__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blg-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.18;
}

.blg-hero__blob--1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.7) 0%, transparent 70%);
    top: -80px; left: 55%;
}

.blg-hero__blob--2 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.65) 0%, transparent 70%);
    top: 30%; left: 8%;
}

.blg-hero__blob--3 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, transparent 70%);
    bottom: 10%; right: 6%;
}

.blg-hero__inner {
    position: relative;
    z-index: 1;
}

.blg-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #c4b5fd;
    opacity: 0.9;
}

.blg-hero__kicker svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.blg-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fdf4ff;
}

.blg-hero__title-sub {
    display: block;
    font-size: 0.62em;
    font-weight: 700;
    color: rgba(196, 181, 253, 0.78);
    letter-spacing: -0.01em;
    margin-top: 6px;
}

.blg-hero__lead {
    margin: 0 auto;
    max-width: 520px;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 500;
    color: rgba(196, 181, 253, 0.65);
    line-height: 1.65;
}

/* ── 主体区 ── */
.blg-body {
    padding-top: clamp(32px, 5vw, 56px);
}

/* ── Tab 切换条 ── */
.blg-tabs-wrap {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.blg-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.18);
}

.blg-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: rgba(196, 181, 253, 0.6);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    letter-spacing: 0.01em;
}

.blg-tab:hover {
    color: #e9d8fd;
    background: rgba(139, 92, 246, 0.12);
}

.blg-tab--active {
    color: #fdf4ff;
    background: rgba(139, 92, 246, 0.28);
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.blg-tab__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blg-tab__ico svg,
.blg-tab__ico i {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.blg-tab__label {
    line-height: 1;
}

/* ── Section 标题 ── */
.blg-section-head {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.blg-section-head__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a78bfa;
}

.blg-section-head__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #fdf4ff;
    line-height: 1.2;
}

.blg-section-head__desc {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(196, 181, 253, 0.6);
    line-height: 1.6;
}

/* ── 文章卡片网格 ── */
.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── 文章卡片 ── */
a.blg-card {
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3vw, 28px);
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    outline-offset: 4px;
}

a.blg-card:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.7);
}

.blg-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.blg-card__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(167, 139, 250, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    transition: background 0.2s ease, border-color 0.2s ease;
}

a.blg-card:hover .blg-card__ico {
    background: rgba(139, 92, 246, 0.24);
    border-color: rgba(167, 139, 250, 0.38);
}

.blg-card__ico svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.blg-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
}

.blg-badge {
    display: inline-block;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.20);
    color: rgba(196, 181, 253, 0.75);
    line-height: 1.4;
}

.blg-badge--openclaw {
    background: rgba(232, 121, 249, 0.12);
    border-color: rgba(232, 121, 249, 0.28);
    color: rgba(240, 171, 252, 0.88);
}

.blg-card__title {
    margin: 0 0 10px;
    font-size: clamp(14px, 1.5vw, 15.5px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #e9d8fd;
    flex: 1;
    transition: color 0.18s ease;
}

a.blg-card:hover .blg-card__title {
    color: #fdf4ff;
}

.blg-card__excerpt {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(196, 181, 253, 0.55);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(167, 139, 250, 0.10);
}

.blg-card__date {
    font-size: 12px;
    font-weight: 600;
    color: rgba(196, 181, 253, 0.40);
    letter-spacing: 0.02em;
}

.blg-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 700;
    color: #a78bfa;
    transition: color 0.18s ease, gap 0.18s ease;
}

.blg-card__more svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
    transition: transform 0.22s ease;
}

a.blg-card:hover .blg-card__more {
    color: #c4b5fd;
    gap: 7px;
}

a.blg-card:hover .blg-card__more svg {
    transform: translateX(2px);
}

/* ── 响应式 ── */
@media (max-width: 960px) {
    .blg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .blg-grid {
        grid-template-columns: 1fr;
    }

    .blg-hero__title-sub {
        display: inline;
    }
}

/* ============================================================
   参考稿布局（博客页面.html）：标题行 / Chip / 杂志网格 / CTA
   ============================================================ */

.blg-ref-head {
    padding-top: clamp(88px, 12vw, 120px);
    padding-bottom: clamp(28px, 5vw, 44px);
}

.blg-ref-head__row {
    display: block;
}

.blg-ref-head__copy {
    min-width: 0;
}

/* 标签与搜索同一行对齐 */
.blg-ref-head__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2.2vw, 20px);
    margin-top: clamp(28px, 4vw, 40px);
}

.blg-ref-head__toolbar .blg-ref-tabrail {
    margin-top: 0;
    flex-shrink: 0;
}

.blg-ref-head__toolbar .blg-ref-search {
    flex: 1 1 200px;
    max-width: 320px;
    min-width: 0;
    align-self: center;
}

@media (max-width: 520px) {
    .blg-ref-head__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .blg-ref-head__toolbar .blg-ref-search {
        max-width: none;
        width: 100%;
    }
}

.blg-ref-title {
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    font-size: clamp(2.35rem, 7vw, 4.25rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.06;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.42) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blg-ref-title__br {
    display: none;
}

@media (min-width: 640px) {
    .blg-ref-title__br {
        display: inline;
    }
}

.blg-ref-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(15px, 1.65vw, 18px);
    font-weight: 500;
    color: rgba(148, 163, 184, 0.92);
    line-height: 1.65;
}

.blg-ref-search {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.blg-ref-search__ico {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    color: rgba(148, 163, 184, 0.65);
    pointer-events: none;
}

.blg-ref-search__ico svg {
    width: 18px;
    height: 18px;
}

.blg-ref-search__input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    font-size: 15px;
    font-family: inherit;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blg-ref-search__input::placeholder {
    color: rgba(148, 163, 184, 0.55);
}

.blg-ref-search__input:focus {
    border-color: rgba(167, 139, 250, 0.55);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.blg-ref-search-empty {
    margin: clamp(20px, 3vw, 32px) 0 clamp(8px, 2vw, 16px);
    padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 28px);
    text-align: center;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
}

.blg-ref-search-empty__msg {
    margin: 0 0 14px;
    font-size: 15px;
    color: rgba(203, 213, 225, 0.92);
    line-height: 1.55;
}

.blg-ref-search-empty__clear {
    font-size: 14px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 博客 · OpenClaw 双胶囊切换（参考暗色：未选中描边浅灰字；选中浅色底黑字） */
.blg-ref-tabrail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding: 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blg-ref-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(148, 163, 184, 0.96);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.18s ease;
}

.blg-ref-tab:hover:not(.blg-ref-tab--active) {
    color: rgba(226, 232, 240, 0.95);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.blg-ref-tab:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.65);
    outline-offset: 3px;
}

.blg-ref-tab--active {
    background: linear-gradient(180deg, #faf8ff 0%, #f0ebff 100%);
    color: #0a0a12;
    border-color: rgba(255, 255, 255, 0.65);
    font-weight: 800;
    box-shadow:
        0 12px 36px -14px rgba(99, 102, 241, 0.45),
        0 2px 8px -4px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.blg-ref-tab__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.88;
}

.blg-ref-tab:not(.blg-ref-tab--active) .blg-ref-tab__ico {
    color: rgba(167, 139, 250, 0.55);
}

.blg-ref-tab--active .blg-ref-tab__ico {
    color: #5b21b6;
    opacity: 1;
}

.blg-ref-tab__ico svg,
.blg-ref-tab__ico i {
    width: 16px;
    height: 16px;
}

.blg-ref-tab__ico--crystal .icon-aurora-crystal {
    font-size: 15px;
    line-height: 1;
}

.blg-ref-tab__txt {
    line-height: 1.2;
}

.blg-ref-main {
    padding-bottom: clamp(80px, 12vw, 120px);
}

/* 杂志排布：大图 + 侧卡 */
.blg-magazine {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

@media (min-width: 1024px) {
    .blg-magazine {
        grid-template-columns: minmax(0, 1.68fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.blg-glow-card {
    border-radius: clamp(22px, 3vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(20, 15, 45, 0.42);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.32s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

a.blg-glow-card:hover {
    border-color: rgba(157, 92, 246, 0.42);
    box-shadow: 0 22px 48px -22px rgba(157, 92, 246, 0.38);
    transform: translateY(-3px);
}

.blg-featured {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .blg-featured {
        grid-column: auto;
    }
}

.blg-featured__media {
    position: relative;
    height: clamp(220px, 42vw, 360px);
    overflow: hidden;
}

.blg-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s ease;
}

a.blg-featured:hover .blg-featured__img {
    transform: scale(1.04);
}

.blg-featured__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.25) 42%, transparent 100%);
}

.blg-featured__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: clamp(20px, 4vw, 36px);
}

.blg-featured__pill {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(139, 92, 246, 0.95);
    border-radius: 999px;
}

.blg-featured__hl {
    margin: 0;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 800;
    line-height: 1.28;
    color: #fff;
    max-width: 40rem;
}

.blg-featured__body {
    padding: clamp(22px, 3.5vw, 38px);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.blg-featured__excerpt {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    color: rgba(148, 163, 184, 0.92);
}

.blg-featured__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.blg-featured__author {
    color: rgba(241, 245, 249, 0.9);
}

.blg-featured__hint {
    color: rgba(148, 163, 184, 0.75);
    font-style: italic;
}

/* 侧卡 */
.blg-side-card {
    padding: clamp(22px, 3vw, 30px);
}

.blg-side-card__media {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.25);
}

.blg-side-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

a.blg-side-card:hover .blg-side-card__img {
    transform: scale(1.06);
}

.blg-side-card__tag {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #f472b6;
    margin-bottom: 10px;
}

.blg-side-card__hl {
    margin: 0 0 14px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    color: #f8fafc;
    transition: color 0.2s ease;
}

a.blg-side-card:hover .blg-side-card__hl {
    color: #f472b6;
}

.blg-side-card__excerpt {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(148, 163, 184, 0.88);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-side-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: rgba(148, 163, 184, 0.7);
}

.blg-side-card__arrow {
    width: 16px;
    height: 16px;
    color: #f472b6;
    transition: transform 0.2s ease;
}

a.blg-side-card:hover .blg-side-card__arrow {
    transform: translateX(4px);
}

/* 列表区网格 */
.blog-grid.blg-grid--rest,
.blog-grid.blg-grid--openclaw-rest {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 960px) {
    .blog-grid.blg-grid--rest,
    .blog-grid.blg-grid--openclaw-rest {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .blog-grid.blg-grid--rest,
    .blog-grid.blg-grid--openclaw-rest {
        grid-template-columns: 1fr;
    }
}

/* OpenClaw 说明行 */
.blg-ref-openclaw-note {
    margin: 32px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(196, 181, 253, 0.55);
    text-align: center;
}

/* 底栏 CTA */
.blg-ref-cta {
    position: relative;
    margin-top: clamp(48px, 8vw, 88px);
    padding: clamp(40px, 6vw, 56px) clamp(22px, 4vw, 40px);
    border-radius: clamp(28px, 4vw, 48px);
    overflow: hidden;
    text-align: center;
}

.blg-ref-cta__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(76, 29, 149, 0.45) 0%, rgba(157, 23, 77, 0.35) 100%);
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
}

.blg-ref-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(20, 15, 45, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.blg-ref-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 0 auto;
}

.blg-ref-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blg-ref-cta__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
    animation: blg-cta-pulse 2.2s ease-in-out infinite;
}

@keyframes blg-cta-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .blg-ref-cta__dot {
        animation: none;
    }
}

.blg-ref-cta__pill-t {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
}

.blg-ref-cta__title {
    margin: 0 0 14px;
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
}

.blg-ref-cta__lead {
    margin: 0 auto 28px;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    color: rgba(148, 163, 184, 0.92);
}

.blg-ref-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

@media (min-width: 520px) {
    .blg-ref-cta__actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

.blg-ref-cta__btn {
    justify-content: center;
    min-width: 200px;
}

.blg-ref-cta__hints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.8);
}

.blg-ref-cta__hints li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blg-ref-cta__hints svg {
    width: 14px;
    height: 14px;
    color: #a78bfa;
}

/* 分页条（深色） */
.blg-ref-pager.blog-pager {
    margin-top: 40px;
}

.blg-ref-pager .blog-pager__goto {
    background: rgba(22, 12, 38, 0.55);
    border: 1px dashed rgba(167, 139, 250, 0.25);
}

.blg-ref-pager .blog-pager__input {
    background: rgba(8, 4, 18, 0.85);
    border: 1px solid rgba(167, 139, 250, 0.28);
    color: #e9d8fd;
    box-shadow: none;
}

.blg-ref-pager .blog-pager__btn {
    background: rgba(22, 12, 38, 0.8);
    border: 1px solid rgba(167, 139, 250, 0.28);
    color: #f1f5f9;
    box-shadow: none;
}

.blg-ref-pager .blog-pager__btn:hover:not(:disabled) {
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 8px 24px -12px rgba(99, 102, 241, 0.4);
}

/* 仅一篇时的杂志单列 */
.blg-magazine--solo {
    grid-template-columns: 1fr;
    max-width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.blg-ref-empty {
    margin: 0 0 24px;
    padding: clamp(28px, 5vw, 44px);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(196, 181, 253, 0.72);
    border-radius: 22px;
    border: 1px dashed rgba(167, 139, 250, 0.28);
    background: rgba(20, 15, 45, 0.35);
}

/* 旧 shell 区块在博客页面上不再使用；保留类名无害 */
