/* ============================================================
   tzhuanan.com - 香蕉影视 全站样式
   设计方向：高端服务风 / 深色文字 / 低饱和点缀 / 精细间距
   色彩：象牙白底 #f9f8f6，深灰 #2c2c2c，青绿 #4a7a74，暖沙 #c9bda4
   ============================================================ */

/* ============================================================
   Base
   ============================================================ */
:root {
  --bg: #f9f8f6;
  --text: #2c2c2c;
  --text-secondary: #3a3a3a;
  --primary: #4a7a74;
  --primary-dark: #3d6560;
  --accent: #c9bda4;
  --footer-bg: #1f1f1f;
  --footer-text: #b5b0a8;
  --border: #e5e1da;
  --card-bg: #ffffff;
  --max-width: 1200px;
  --content-width: 720px;
  --radius: 8px;
  --radius-sm: 6px;
  --transition: 0.2s ease;
  --font-stack: -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-num: Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 无障碍隐藏 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Layout - 全站骨架
   ============================================================ */

/* 页头 */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-name::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  margin-right: 8px;
}

/* 导航 */
.site-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 2px;
  white-space: nowrap;
  position: relative;
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-list a.is-current {
  color: var(--primary);
  font-weight: 600;
}

.nav-list a.is-current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* 汉堡按钮 */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: var(--radius-sm);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* 主容器 */
.site-main {
  min-height: 60vh;
}

.inner-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 72px;
}

/* 面包屑 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8a857c;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #8a857c;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: #b5b0a8;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text-secondary);
  font-weight: 500;
}

/* 页面标题区 */
.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.page-description {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.7;
}

/* 页脚 */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-text);
  max-width: 320px;
}

.footer-nav-title,
.footer-note-title {
  font-size: 14px;
  font-weight: 600;
  color: #8a857c;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-feedback {
  margin-top: 12px;
}

.footer-feedback a {
  color: var(--accent);
}

.footer-feedback a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #8a857c;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   Components - 通用组件
   ============================================================ */

/* 区块标题 */
.section-head {
  margin-bottom: 32px;
}

.section-head h2,
.section-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.section-head p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.section-link:hover {
  color: var(--primary-dark);
}

/* 按钮 */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* 标签 */
.type-badge,
.type-tag,
.tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 13px;
  color: var(--primary);
  background: rgba(74, 122, 116, 0.08);
  border-radius: 20px;
  line-height: 1.5;
}

/* 作品卡 */
.work-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.work-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.work-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.work-info {
  padding: 16px;
}

.work-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.work-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.year {
  font-size: 13px;
  color: #8a857c;
  font-family: var(--font-num);
}

.work-desc,
.work-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-info a,
.work-card a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.work-info a:hover,
.work-card a:hover {
  color: var(--primary-dark);
}

/* 指南卡片（works 页） */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.guide-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.guide-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   Components - 首页专属
   ============================================================ */

/* 首屏 */
.home-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.catalog-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.catalog-item dt {
  font-size: 13px;
  color: #8a857c;
  margin-bottom: 4px;
}

.catalog-item dd {
  font-size: 15px;
  font-weight: 600;
}

.catalog-item dd a {
  color: var(--text);
}

.catalog-item dd a:hover {
  color: var(--primary);
}

.hero-media {
  position: relative;
}

.hero-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 44, 44, 0.08);
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 三步使用路径 */
.home-path {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.home-path .section-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 32px;
}

.path-steps {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.path-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.path-step:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-num);
  background: rgba(74, 122, 116, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.path-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.path-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.path-step a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.path-step a:hover {
  color: var(--primary-dark);
}

/* 类型标签墙 */
.home-genres {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.genre-tag {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.genre-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* 最近收录 */
.home-recent {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.home-recent .section-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.recent-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.recent-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.recent-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.recent-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.recent-info {
  padding: 16px;
}

.recent-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.recent-info .type-badge {
  margin-bottom: 8px;
}

.recent-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-info a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.recent-info a:hover {
  color: var(--primary-dark);
}

/* 专题推荐 */
.home-features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 16px 16px 4px;
  line-height: 1.4;
}

.read-time {
  display: inline-block;
  font-size: 13px;
  color: #8a857c;
  padding: 0 16px;
  margin-bottom: 8px;
  font-family: var(--font-num);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 16px;
  margin-bottom: 12px;
}

.feature-card a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  padding: 0 16px 16px;
}

.feature-card a:hover {
  color: var(--primary-dark);
}

/* 主创入口 */
.home-creators {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.home-creators .section-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 32px;
}

.creator-entry {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.creator-entry .creator-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.creator-entry .creator-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.creator-entry .creator-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.creator-entry .creator-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.creator-works {
  display: block;
  font-size: 14px;
  color: #8a857c;
  margin-bottom: 16px;
}

.creator-entry .creator-card a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.creator-entry .creator-card a:hover {
  color: var(--primary-dark);
}

/* 观看指南折叠 */
.home-guide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px;
}

.guide-faq {
  max-width: var(--content-width);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-family: var(--font-num);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 信息边界条 */
.home-boundary {
  background: var(--primary);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-boundary p {
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.home-boundary a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.home-boundary a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   Pages - 作品库 works.html
   ============================================================ */

.alpha-index {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.alpha-index {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.alpha-index-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.alpha-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.alpha-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-family: var(--font-num);
  transition: background var(--transition), color var(--transition);
}

.alpha-list a:hover {
  background: var(--primary);
  color: #fff;
}

/* 主内容 + 侧栏布局 */
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

/* 作品分区 */
.work-section {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}

.work-section .section-title {
  font-size: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 侧栏 */
.sidebar-right {
  position: sticky;
  top: 88px;
}

.filter-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-list a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.filter-list a:hover {
  background: rgba(74, 122, 116, 0.08);
  color: var(--primary);
}

.filter-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: #8a857c;
  line-height: 1.6;
}

/* 作品库指南 */
.work-guide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 0;
}

.work-guide .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

/* 相关内容链接 */
.related-links {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.related-links-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.related-links-item {
  font-size: 14px;
  color: var(--primary);
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.related-links-item:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   Pages - 类型索引 genres.html
   ============================================================ */

.genre-tag-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.genre-tag-nav a {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.genre-tag-nav a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.genre-section {
  margin-bottom: 56px;
  scroll-margin-top: 80px;
}

.genre-section-header {
  margin-bottom: 24px;
}

.genre-section-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.genre-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
}

.genre-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.genre-works .work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.genre-works .work-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.genre-works .work-title {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 16px 0;
  color: var(--text);
}

.genre-works .work-meta {
  padding: 4px 16px 0;
}

.genre-works .work-intro {
  padding: 0 16px;
  margin-bottom: 12px;
}

.genre-works .work-card > a {
  display: inline-block;
  padding: 0 16px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.genre-works .work-card > a:hover {
  color: var(--primary-dark);
}

/* 交叉推荐 */
.cross-recommend {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.cross-recommend .section-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.cross-intro {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.cross-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cross-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.cross-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.cross-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cross-more {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cross-more a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.cross-more a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   Pages - 主创资料 creators.html
   ============================================================ */

/* 筛选标签 */
.creator-filter {
  margin-bottom: 32px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* 主创档案网格 */
.creator-grid-section {
  margin-bottom: 48px;
}

.creator-grid-section .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.creator-grid .creator-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.creator-grid .creator-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.creator-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.creator-role {
  display: inline-block;
  padding: 2px 12px;
  background: rgba(74, 122, 116, 0.08);
  color: var(--primary);
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
}

.creator-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.creator-style {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.creator-works {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.creator-works li {
  padding: 4px 0;
  font-size: 14px;
}

.creator-works li a {
  color: var(--primary);
  font-size: 14px;
}

.creator-works li a:hover {
  color: var(--primary-dark);
}

/* 代表作品展示 */
.creator-featured-works {
  margin-bottom: 48px;
}

.creator-featured-works .section-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.featured-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.featured-work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-work-card figcaption {
  padding: 16px;
}

.featured-work-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.featured-work-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.featured-work-card a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.featured-work-card a:hover {
  color: var(--primary-dark);
}

/* 阅读指引 */
.creator-reading-guide {
  margin-bottom: 48px;
}

.creator-reading-guide .section-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.creator-reading-guide .guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.creator-reading-guide .guide-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.creator-reading-guide .guide-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.creator-reading-guide .guide-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 关联内容 */
.creator-related-links .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.related-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.related-link-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.related-link-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.related-link-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   Pages - 专题文章 features.html
   ============================================================ */

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tag-item {
  display: inline-block;
  padding: 8px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.tag-item:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tag-item.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.feature-tags a.tag-item {
  text-decoration: none;
}

/* 文章列表 */
.feature-list-section {
  margin-bottom: 48px;
}

.feature-list-section .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.feature-list-section .feature-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-list-section .feature-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
  transform: translateY(-2px);
}

.feature-card-media {
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-card-meta {
  font-size: 13px;
  color: #8a857c;
  margin-bottom: 8px;
  font-family: var(--font-num);
}

.feature-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.feature-card-link:hover {
  color: var(--primary-dark);
}

/* 编辑片单 */
.editor-pick-section {
  margin-bottom: 48px;
}

.editor-pick-section .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.editor-pick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.editor-pick-head {
  margin-bottom: 20px;
}

.editor-pick-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(74, 122, 116, 0.08);
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.editor-pick-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.editor-pick-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
}

.editor-pick-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}

.editor-pick-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.editor-pick-list li:last-child {
  border-bottom: none;
}

.editor-pick-list a {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

.editor-pick-list a:hover {
  color: var(--primary-dark);
}

.pick-note {
  font-size: 13px;
  color: #8a857c;
  white-space: nowrap;
}

.editor-pick-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.editor-pick-link:hover {
  color: var(--primary-dark);
}

/* 关联入口 */
.related-entry-section .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.related-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-entry-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.related-entry-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.related-entry-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.related-entry-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.related-entry-link:hover {
  color: var(--primary-dark);
}

/* ============================================================
   Pages - 更新记录 updates.html
   ============================================================ */

/* 本周新增 */
.update-summary {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 48px;
}

.summary-content .section-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.summary-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-list li {
  padding-left: 16px;
  position: relative;
}

.summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.summary-list a {
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-list a:hover {
  color: var(--primary);
}

.summary-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.summary-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.summary-media figcaption {
  font-size: 13px;
  color: #8a857c;
  padding: 8px 0 0;
}

/* 时间线 */
.update-timeline {
  margin-bottom: 48px;
}

.update-timeline .section-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.timeline-list {
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 80px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.timeline-date {
  font-size: 14px;
  color: #8a857c;
  font-family: var(--font-num);
  padding-top: 2px;
}

.timeline-tag {
  display: inline-block;
  padding: 2px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
  width: fit-content;
  background: rgba(74, 122, 116, 0.08);
  color: var(--primary);
}

.timeline-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-body p a {
  color: var(--primary);
}

.timeline-body p a:hover {
  color: var(--primary-dark);
}

/* 修订与勘误 */
.update-corrections {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 48px;
}

.update-corrections .section-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.update-corrections p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* 信息边界 */
.info-boundary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.info-boundary p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   Pages - 关于本站 about.html
   ============================================================ */

.about-section {
  margin-bottom: 40px;
}

.section-inner {
  max-width: var(--content-width);
}

.section-inner.narrow {
  max-width: var(--content-width);
}

.section-inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.section-inner p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* 关于页工作方式列表 */
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.guide-list .guide-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.guide-list .guide-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.guide-list .guide-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* 边界列表 */
.boundary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.boundary-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.boundary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* 反馈说明 */
.feedback-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
}

.feedback-note p {
  font-size: 14px;
  margin-bottom: 0;
}

/* 关于页相关链接 */
.related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.related-links a {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}

.related-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   Pages - 404
   ============================================================ */

.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 24px;
}

.error-section {
  text-align: center;
  max-width: 520px;
}

.error-code {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-num);
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.error-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.error-guide {
  font-size: 14px;
  color: #8a857c;
  margin-bottom: 24px;
}

.error-back {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.error-back:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ============================================================
   Responsive - 响应式
   ============================================================ */

/* 平板与窄桌面 */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .catalog-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 24px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .genre-works {
    grid-template-columns: repeat(2, 1fr);
  }

  .cross-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-links-grid,
  .related-entry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list-section .feature-card {
    grid-template-columns: 220px 1fr;
  }

  .update-summary {
    grid-template-columns: 1fr 260px;
  }
}

/* 移动端 */
@media (max-width: 768px) {
  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .brand-name {
    font-size: 18px;
  }

  /* 汉堡菜单 */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.06);
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    padding: 14px 8px;
    font-size: 16px;
  }

  .nav-list a.is-current::after {
    display: none;
  }

  .nav-list a.is-current {
    color: var(--primary);
  }

  /* 首页 */
  .home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px;
  }

  .hero-content {
    order: 2;
  }

  .hero-media {
    order: 1;
  }

  .hero-title {
    font-size: 24px;
  }

  .catalog-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .path-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .home-path .section-head {
    padding: 0 16px;
  }

  .home-genres {
    padding: 40px 16px;
  }

  .genre-tags {
    gap: 8px;
  }

  .genre-tag {
    padding: 8px 16px;
    font-size: 14px;
  }

  .home-recent {
    padding: 40px 0;
  }

  .home-recent .section-head {
    padding: 0 16px;
  }

  .recent-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .home-features {
    padding: 40px 16px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-creators {
    padding: 40px 0;
  }

  .home-creators .section-head {
    padding: 0 16px;
  }

  .creator-entry {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .home-guide {
    padding: 40px 16px;
  }

  .home-boundary {
    padding: 16px;
    flex-direction: column;
    gap: 8px;
  }

  /* 内页 */
  .inner-main {
    padding: 24px 16px 48px;
  }

  .page-header {
    margin-bottom: 24px;
  }

  .page-title {
    font-size: 24px;
  }

  .alpha-index {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .alpha-list {
    gap: 2px;
  }

  .alpha-list a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar-right {
    position: static;
    order: 2;
  }

  .content-main {
    order: 1;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-guide {
    padding: 32px 16px 0;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-links {
    padding: 16px;
  }

  /* 类型索引 */
  .genre-tag-nav {
    gap: 8px;
    margin-bottom: 32px;
  }

  .genre-section {
    margin-bottom: 40px;
  }

  .genre-works {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cross-recommend {
    padding: 24px;
  }

  .cross-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 主创 */
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .creator-reading-guide .guide-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .related-links-grid,
  .related-entry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* 专题 */
  .feature-tags {
    gap: 6px;
  }

  .tag-item {
    padding: 8px 16px;
    font-size: 13px;
  }

  .feature-list-section .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-media img {
    aspect-ratio: 16 / 9;
  }

  .feature-card-body {
    padding: 16px;
  }

  .editor-pick-card {
    padding: 20px;
  }

  .editor-pick-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* 更新 */
  .update-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-date {
    font-size: 13px;
  }

  .update-corrections {
    padding: 20px;
  }

  /* 关于 */
  .about-section {
    margin-bottom: 32px;
  }

  /* 页脚 */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    padding: 16px;
  }
}

/* 超小屏 */
@media (max-width: 390px) {
  .catalog-overview {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .catalog-item dd {
    font-size: 14px;
  }

  .genre-tag {
    padding: 6px 14px;
    font-size: 13px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .related-links-grid,
  .related-entry-grid {
    grid-template-columns: 1fr;
  }
}

/* 程序验收反馈：修复网格孤项 */
@media (min-width: 769px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
