/* Generated file. Source: shared/brand/styles/life/life-visual.css. Do not edit directly. Run: node tools/brand/sync-shared-brand.mjs */
/* ============================================================
   life-visual.css — life.tomatronic.com 视觉系统
   铁律：不写任何 display/position/width/max-width/min-width/
        height/margin/padding/gap/grid-template/flex-direction/inset
        以及: overflow/align-items/justify-content/top/left/right/bottom/transform
   ============================================================ */

/* ── 全局链接 ── */
a {
  color: var(--life-accent-alt);
  text-decoration: none;
  transition: color var(--life-transition);
}
a:hover {
  color: var(--life-accent-alt-hover);
}

/* ── Frame 面板（浮雕） ── */
.life-frame {
  border: 1px solid var(--life-accent-soft);
  border-radius: var(--life-radius-lg);
  background: var(--life-surface);
  box-shadow:
    inset 1px 1px 0 var(--life-emboss-highlight),
    inset -1px -1px 0 var(--life-emboss-shadow),
    var(--life-emboss-depth);
  transition: box-shadow var(--life-transition), border-color var(--life-transition), transform var(--life-transition);
}
.life-frame:hover {
  border-color: var(--life-accent-glow);
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,0.10),
    inset -1px -1px 0 rgba(0,0,0,0.45),
    0 4px 24px var(--life-accent-soft);
}

/* ── 按钮（终端命令键） ── */
.life-btn {
  font-family: var(--life-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--life-text-secondary);
  transition: background var(--life-transition), border-color var(--life-transition), color var(--life-transition), transform var(--life-transition);
}
.life-btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.20);
  color: var(--life-text);
}
.life-btn-secondary:hover {
  border-color: rgba(255,255,255,0.20);
  color: var(--life-text);
}
.life-btn-primary:hover {
  background: var(--life-accent-hover);
  border-color: var(--life-accent);
  box-shadow: 0 0 16px var(--life-accent-glow);
}

.life-btn-secondary {
  border-color: rgba(255,255,255,0.08);
  color: var(--life-text-secondary);
}
.life-btn-secondary:hover {
  border-color: rgba(255,255,255,0.20);
  color: var(--life-text);
}

/* ── 输入框（终端） ── */
.life-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: var(--life-text);
  font-family: var(--life-font-mono);
  font-size: 13px;
  outline: none;
  transition: border-color var(--life-transition), box-shadow var(--life-transition);
}
.life-input:focus {
  border-bottom-color: var(--life-accent);
  box-shadow: 0 1px 0 0 var(--life-accent);
}

.life-input:focus-visible {
  outline: 2px solid var(--life-accent);
  outline-offset: 2px;
}
.life-input::placeholder {
  color: var(--life-text-muted);
  opacity: 0.4;
}

/* ── 搜索栏（终端命令行） ── */
.life-search-bar {
  border: 1px solid var(--life-accent-glow);
  border-radius: var(--life-radius);
  background: var(--life-accent-hover);
}
.life-search-bar::before {
  font-family: var(--life-font-mono);
  font-size: 13px;
  color: var(--life-terminal-prompt);
}
.life-search-bar .life-input {
  background: transparent;
  border: none;
  font-family: var(--life-font-mono);
  font-size: 12px;
  color: var(--life-text);
  caret-color: var(--life-accent);
}
.life-search-bar .life-input:focus {
  box-shadow: none;
  border-color: transparent;
}
.life-search-bar .life-input::placeholder {
  color: var(--life-text-muted);
  opacity: 0.5;
}
.life-search-bar .btn {
  font-family: var(--life-font-mono);
  font-size: 12px;
  background: transparent;
  border: 1px solid var(--life-accent-glow);
  color: var(--life-accent);
  border-radius: 0 var(--life-radius) var(--life-radius) 0;
}
.life-search-bar .btn:hover {
  background: var(--life-accent-hover);
  border-color: var(--life-accent);
}

/* ── 标签 ── */
.life-label {
  font-size: 13px;
  color: var(--life-text-secondary);
}

/* ── 状态徽章 ── */
.life-status {
  border-radius: var(--life-radius-sm);
  font-size: 12px;
}
.life-status-active {
  background: rgba(52, 211, 153, 0.15);
  color: var(--life-success);
}
.life-status-draft {
  background: var(--life-accent-soft);
  color: var(--life-accent);
}
.life-status-hidden {
  background: var(--life-error-bg);
  color: var(--life-error);
}

/* ── 等宽编号 ── */
.life-code {
  font-family: var(--life-font-mono) !important;
  font-size: 13px;
  color: var(--life-text-secondary);
  letter-spacing: 0.02em;
}

/* ── Hero（终端系统启动信息） ── */
.life-hero h1 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  color: var(--life-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.life-hero h1::before {
  content: '> ';
}
.life-hero p {
  font-family: var(--life-font-mono);
  font-size: 12px;
  color: var(--life-text-muted);
}

/* ── 返回链接 ── */
.life-back-link {
  color: var(--life-accent-alt);
}

/* ── 提示消息 ── */
.life-error-msg {
  color: var(--life-error);
}
.life-success-msg {
  color: var(--life-success);
}

/* ── Gallery 卡片 ── */
.life-gallery-item {
  cursor: pointer;
}
.life-gallery-item:hover {
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,0.10),
    inset -1px -1px 0 rgba(0,0,0,0.45),
    0 4px 24px var(--life-accent-soft);
}
.life-gallery-item .info h3 {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.life-gallery-item .info .code {
  font-family: var(--life-font-mono);
  font-size: 12px;
  color: var(--life-text-secondary);
}

/* ── 卡片图片（凹陷） ── */
.life-card-image {
  border-radius: calc(var(--life-radius-lg) - 6px);
  background: var(--life-surface);
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.5),
    inset 0 -1px 1px rgba(255,255,255,0.03);
}

/* ── 卡片信息栏 ── */
.life-card-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--life-text);
}
.life-card-code {
  font-family: var(--life-font-mono) !important;
  font-size: 12px;
  color: var(--life-text-muted);
  letter-spacing: 0.04em;
}

/* ── 轮播视觉 ── */
.life-carousel-slide img {
  object-fit: contain;
}

/* ── 媒体列表项 ── */
.life-media-item {
  border-top: 1px solid var(--life-border);
}
.life-media-item:first-child {
  border-top: none;
}

/* ── 统计卡片（系统诊断） ── */
.life-stat-card {
  text-align: center;
}
.life-stat-card .num {
  font-family: var(--life-font-mono);
  font-size: 2em;
  font-weight: 400;
  color: var(--life-accent-alt);
  letter-spacing: 0.02em;
}
.life-stat-card .label {
  font-family: var(--life-font-mono);
  font-size: 11px;
  color: var(--life-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── 表格（数据终端） ── */
.life-table th {
  font-family: var(--life-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 400;
  color: var(--life-text-secondary);
  background: var(--life-bg);
}
.life-table th,
.life-table td {
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.life-table tr:hover td {
  background: var(--life-accent-hover);
  border-bottom-color: var(--life-accent-soft);
}

/* ── 分页（终端导航） ── */
.life-pagination button {
  font-family: var(--life-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── 模态弹窗（浮雕系统弹窗） ── */
.life-modal {
  background: rgba(0,0,0,0.7);
}
.life-modal-box {
  border: 1px solid var(--life-accent-glow);
  box-shadow:
    inset 1px 1px 0 var(--life-emboss-highlight),
    inset -1px -1px 0 var(--life-emboss-shadow),
    0 8px 32px rgba(0,0,0,0.6);
}

/* ── 空态/加载态（系统消息） ── */
.life-empty {
  text-align: center;
  color: var(--life-text-muted);
  font-family: var(--life-font-mono);
  font-size: 12px;
}
.life-loading {
  text-align: center;
  color: var(--life-text-muted);
  font-family: var(--life-font-mono);
  font-size: 12px;
}

/* ── 所有者入口 ── */
.life-owner-entry {
  text-align: center;
}
.life-owner-entry p {
  color: var(--life-text-secondary);
}

/* ── 分隔线 ── */
hr {
  border: none;
  border-top: 1px solid var(--life-border);
}

/* ── Footer 色条覆盖 ── */
.cstrip-foot span:nth-child(1) {
  background: var(--life-accent);
}
.cstrip-foot span:nth-child(2) {
  background: var(--life-accent-alt);
}

/* ── 返回顶部按钮（终端风格） ── */
.back-to-top {
  background: transparent;
  border: 1px solid var(--life-border);
  color: var(--life-text-muted);
  font-family: var(--life-font-mono);
  font-size: 12px;
  border-radius: 6px;
  transition: all var(--life-transition);
}
.back-to-top:hover {
  border-color: var(--life-accent);
  color: var(--life-accent);
  background: var(--life-accent-hover);
}

/* ── 下拉刷新指示器 ── */
.pull-refresh {
  text-align: center;
  font-family: var(--life-font-mono);
  font-size: 12px;
  color: var(--life-accent);
  animation: pulse-refresh 1.2s ease-in-out infinite;
}

@keyframes pulse-refresh {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── 底部加载指示器（上滑刷新风格） ── */
.load-more-indicator {
  font-family: var(--life-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--life-accent);
}

/* ── 页面屏幕氛围 ── */
.life-shell::before {
  background: radial-gradient(ellipse at 50% 8%, var(--life-accent-hover) 0%, transparent 70%);
}

/* ── § 策展分段头视觉 ── */
.life-section-head {
  font-family: var(--life-font-mono) !important;
  font-size: 11px;
  font-weight: 700;
  color: var(--life-accent);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.life-section-head::after {
  background: var(--life-accent-line);
  opacity: 0.3;
}

/* ── § 标签标签（终端风格） ── */
.life-tag-chip {
  font-family: var(--life-font-mono);
  font-size: 11px;
  color: var(--life-text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.2s ease;
}
.life-tag-chip:hover {
  color: var(--life-accent);
  border-color: var(--life-accent-line);
  background: var(--life-accent-soft);
}
.life-tag-chip.is-active {
  color: var(--life-accent);
  border-color: var(--life-accent-line);
  background: var(--life-accent-soft);
}

/* ── § 参数面板视觉 ── */
.life-specs-panel {
  background: var(--life-panel-bg);
  border: 1px solid var(--life-accent-line);
  border-radius: var(--life-radius-lg);
}
.life-specs-panel .spec-row {
  font-family: var(--life-font-mono);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.life-specs-panel .spec-row:last-child {
  border-bottom: none;
}
.life-specs-panel .spec-label {
  color: var(--life-spec-label);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.life-specs-panel .spec-value {
  color: var(--life-spec-value);
  font-size: 12px;
}
.spec-value-badge {
  border-radius: 3px;
  background: var(--life-accent-hover);
  border: 1px solid var(--life-accent-soft);
  color: var(--life-accent-alt);
  font-family: var(--life-font-mono);
  font-size: 11px;
}
.life-specs-panel .spec-group {
  border-left: 1px solid var(--life-accent-line);
  opacity: 0.7;
}
.life-specs-panel .spec-group-header {
  font-family: var(--life-font-mono);
  font-size: 10px;
  color: var(--life-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.life-specs-panel .spec-group .spec-row:last-child {
  border-bottom: none;
}

/* ── § 关联推荐视觉 ── */
/* （layout-only: margin-bottom 在 life-layout.css 中） */


/* ── § Hero 统计数据 ── */
.life-hero-stats .stat-num {
  font-family: var(--life-font-mono);
  font-size: 28px;
  color: var(--life-accent);
}
.life-hero-stats .stat-label {
  font-family: var(--life-font-mono);
  font-size: 10px;
  color: var(--life-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── § Hero 轮播视觉 ── */
.life-hero-carousel {
  border-radius: var(--life-radius-lg);
}
.life-hero-slide {
  border-radius: var(--life-radius-lg);
}
.life-hero-slide img {
  border-radius: var(--life-radius-lg);
}
.life-hero-arrow {
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.life-hero-arrow:hover {
  color: #fff;
  text-shadow: 0 0 18px var(--life-accent-glow);
}
.life-hero-dot {
  background: var(--life-accent);
  box-shadow: 0 0 6px var(--life-accent-glow);
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 50%;
}
.life-hero-dot.is-active {
  background: var(--life-accent);
}
.life-hero-status {
  font-family: var(--life-font-mono) !important;
  font-size: 10px;
  font-weight: 400;
  color: var(--life-accent-alt);
  letter-spacing: 0.06em;
}
.life-hero-title-zh {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(232,230,224,0.7);
  letter-spacing: 0.08em;
}

/* ── § 卡片数据面板 hover ── */
.life-card-panel {
  transition: box-shadow var(--life-transition), border-color var(--life-transition), transform var(--life-transition);
}
.life-card-panel .life-holo-id {
  font-family: var(--life-font-mono) !important;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--life-accent);
  background-image: repeating-linear-gradient(
    to bottom, transparent, transparent 2px,
    rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 3px
  );
  background-size: 100% 4px;
  animation: life-holo-scan 4.8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.life-card-panel .life-material-badge {
  font-family: var(--life-font-mono) !important;
  font-size: 10px;
  color: var(--life-accent-alt);
  border-radius: 3px;
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.life-card-panel .life-status-dot {
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.life-card-panel .life-status-dot.is-active {
  background: var(--life-status-active);
  box-shadow: 0 0 6px var(--life-status-active);
  animation: status-pulse 2s ease-in-out infinite;
}
.life-card-panel:hover .life-holo-id,
.life-card-panel:hover .life-material-badge,
.life-card-panel:hover .life-status-dot {
  opacity: 1;
}

@keyframes life-holo-scan {
  0% { background-position-y: 0; }
  100% { background-position-y: 8px; }
}
@keyframes status-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── Admin Panel — Tab Hover / Active Transitions ── */
.admin-tab {
  background: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--life-text-secondary);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.admin-tab:hover {
  color: var(--life-accent);
}

.admin-tab.active {
  color: var(--life-accent);
  border-bottom-color: var(--life-accent);
}

/* ── Admin Panel — Tab Separator ── */
.admin-tabs {
  border-bottom: 1px solid var(--life-border);
}

/* ── Admin Panel — Detail Drawer Visuals ── */
.detail-drawer-overlay {
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.detail-drawer-overlay.open {
  opacity: 1;
}

.detail-drawer {
  background: var(--life-surface);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.drawer-header {
  border-bottom: 1px solid var(--life-border);
  background: var(--life-surface);
}

.drawer-header h2 {
  font-size: 18px;
  font-weight: 300;
}

.drawer-close-btn {
  background: none;
  font-size: 24px;
  color: var(--life-text-secondary);
}

.drawer-close-btn:hover {
  color: var(--life-text);
}

.drawer-section-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--life-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-field-label {
  font-size: 11px;
  color: var(--life-text-secondary);
}

.detail-field-value {
  font-size: 14px;
  color: var(--life-text);
}

.drawer-actions {
  border-top: 1px solid var(--life-border);
  background: var(--life-surface);
}

/* ── Admin Panel — Media Gallery Visuals ── */
.media-gallery-item {
  border-radius: 6px;
  background: var(--life-border);
}

.media-gallery-item .media-type-badge {
  font-size: 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.media-gallery-item .media-size {
  font-size: 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.media-gallery-empty {
  color: var(--life-text-secondary);
  font-size: 13px;
}

/* ── Admin Panel — Status Toggle Buttons Visuals ── */
.btn-status-hide {
  background: rgba(248, 113, 113, 0.1);
  color: #F87171;
  border: 1px solid #F87171;
}

.btn-status-hide:hover {
  background: rgba(248, 113, 113, 0.2);
}

.btn-status-activate {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  border: 1px solid #22C55E;
}

.btn-status-activate:hover {
  background: rgba(34, 197, 94, 0.2);
}

.btn-status-disabled {
  opacity: 0.5;
}

/* ── Admin Panel — Upload Zone Visuals ── */
.upload-zone {
  border: 2px dashed var(--life-border);
  border-radius: 12px;
  transition: all 0.2s;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--life-accent);
  background: color-mix(in srgb, var(--life-accent) 8%, transparent);
}

.upload-zone-icon {
  font-size: 36px;
  opacity: 0.4;
}

.upload-zone-text {
  font-size: 14px;
  color: var(--life-text-secondary);
}

.upload-zone-hint {
  font-size: 12px;
  color: var(--life-text-secondary);
  opacity: 0.7;
}

.upload-preview-item {
  border-radius: 6px;
  background: var(--life-border);
}

.upload-preview-remove {
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: 2px solid var(--life-surface);
  font-size: 12px;
}

.upload-preview-remove:hover {
  background: #dc2626;
}

/* ── Admin Panel — Status Modal Visuals ── */
.status-modal-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.status-modal-box {
  background: var(--life-surface);
  border-radius: 12px;
}

.status-modal-box h3 {
  font-weight: 300;
}

/* ── Admin Panel — Detail Drawer: Mobile border-radius ── */
@media (max-width: 768px) {
  .detail-drawer {
    border-radius: 16px 16px 0 0;
  }
}

/* ── Nav 绿色下划线覆盖 ── */
.nav-tech::after {
  background: var(--life-accent);
}

/* ── 详情页：Hero 封面 ── */
.life-hero-cover {
  border-radius: var(--life-radius-lg);
}
.life-hero-cover img {
  border-radius: var(--life-radius-lg);
}
.life-hero-overlay {
  background: linear-gradient(transparent 10%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.95));
}
.life-hero-overlay h1 {
  font-family: var(--life-font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--life-text);
}
.life-hero-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}
.life-hero-share button {
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  border-radius: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--life-transition), color var(--life-transition);
  font-family: var(--life-font-mono);
}
.life-hero-share button:hover {
  border-color: var(--life-accent);
  color: var(--life-accent);
}

/* ── 详情页：缩略条 ── */
.life-thumb-strip img {
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--life-transition);
}
.life-thumb-strip img.is-active {
  border: 2px solid var(--life-accent);
}
.life-thumb-strip img:hover {
  border-color: var(--life-accent);
}
.life-thumb-more {
  font-size: 10px;
  color: var(--life-text-muted);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  font-family: var(--life-font-mono);
}

/* ── 详情页：媒体图标 ── */
.life-media-btn {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--life-font-mono);
  font-size: 10px;
  color: var(--life-text-secondary);
  transition: border-color var(--life-transition);
  background: transparent;
}
.life-media-btn:hover {
  border-color: rgba(255,255,255,0.20);
}
.life-media-play {
  background: var(--life-accent-hover);
  color: var(--life-accent);
}
.life-media-play .life-media-dot {
  border-radius: 50%;
  background: var(--life-accent);
  animation: life-pulse-green 1.6s ease-in-out infinite;
}
.life-media-dot {
  border-radius: 50%;
  background: var(--life-accent);
}

@keyframes life-pulse-green {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}

/* ── 详情页：规格卡片 ── */
.life-spec-card {
  border: 1px solid rgba(67,163,22,0.08);
  border-radius: 8px;
  background: var(--life-surface);
}
.life-spec-header {
  font-family: var(--life-font-mono);
  font-size: 8px;
  color: rgba(67,163,22,0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.life-spec-grid {
  font-size: 10px;
}
.life-spec-grid .spec-item {
  border-bottom: 1px solid rgba(255,255,255,0.025);
}
.life-spec-grid .spec-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.life-spec-grid .spec-label {
  font-family: var(--life-font-mono);
  color: var(--life-accent);
  font-size: 9px;
}
.life-spec-grid .spec-value {
  color: var(--life-text);
}

.life-spec-sub {
  border-top: 1px solid rgba(67,163,22,0.08);
  font-size: 9px;
}
.life-spec-sub .spec-label {
  font-family: var(--life-font-mono);
  color: rgba(67,163,22,0.4);
}
.life-spec-sub .spec-value {
  color: var(--life-text-secondary);
}

/* ── 详情页：描述 ── */
.life-desc {
  font-size: 13px;
  color: var(--life-text);
  line-height: 2.2;
}

/* ── 详情页：关联作品标题 ── */
.life-related-title {
  font-family: var(--life-font-mono);
  font-size: 9px;
  color: var(--life-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── 详情页：移动端响应式 — 仅调整视觉参数 ── */
@media (max-width: 768px) {
  .life-hero-overlay h1 {
    font-size: 15px;
  }
  .life-hero-share button {
    font-size: 8px;
  }
  .life-thumb-more {
    font-size: 8px;
  }
  .life-media-btn {
    font-size: 9px;
  }
  .life-spec-header {
    font-size: 8px;
  }
  .life-desc {
    font-size: 12px;
  }
}
