/* ==========================================================================
   漫漫漫画 - 全站样式表
   aibangbangjiazheng.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
:root {
  --paper: #f6f0e6;
  --paper-deep: #efe6d8;
  --card-bg: #fffdf8;
  --text: #262b30;
  --text-soft: #5c636b;
  --coral: #e05a47;
  --coral-deep: #c94a38;
  --leaf: #7a9c7a;
  --mustard: #e7b45a;
  --denim: #4f7c9c;
  --navy: #202830;
  --navy-light: #2b3642;
  --line: rgba(38, 43, 48, 0.1);
  --shadow-sm: 0 2px 8px rgba(38, 43, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(38, 43, 48, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: 1120px;
  --header-h: 72px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--paper);
}

body.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--denim);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--coral);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.site-main {
  flex: 1 0 auto;
  width: 100%;
}

.site-main.inner-main {
  padding-bottom: 72px;
}

.layout-shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 面包屑 */
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-soft);
}

.breadcrumb a:hover {
  color: var(--coral);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: rgba(38, 43, 48, 0.3);
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

/* 页头标题区 */
.page-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 28px;
}

.page-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}

.page-description {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-soft);
  max-width: 680px;
  line-height: 1.8;
}

/* 相关内容导航 */
.related-links {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.related-links-label {
  color: var(--text-soft);
  margin-right: 4px;
}

.related-links-item {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
  background-color: var(--card-bg);
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.related-links-item:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-list a:hover {
  color: var(--coral);
  background-color: rgba(224, 90, 71, 0.06);
}

.nav-list a.is-current {
  color: var(--coral);
  font-weight: 600;
  background-color: rgba(224, 90, 71, 0.08);
}

.header-cta {
  display: inline-block;
  background-color: var(--coral);
  color: #fff;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background-color: var(--coral-deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy);
  color: rgba(246, 240, 230, 0.8);
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
}

.footer-slogan {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(246, 240, 230, 0.7);
}

.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(246, 240, 230, 0.6);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: rgba(246, 240, 230, 0.7);
  font-size: 14px;
}

.footer-nav-list a:hover {
  color: var(--mustard);
}

.footer-boundary-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(246, 240, 230, 0.55);
  border-left: 2px solid rgba(231, 180, 90, 0.4);
  padding-left: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 240, 230, 0.1);
  padding: 20px 24px;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(246, 240, 230, 0.45);
}

/* --------------------------------------------------------------------------
   Components
   -------------------------------------------------------------------------- */

/* 按钮 */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--coral);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 90, 71, 0.25);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--denim);
  color: var(--denim);
  transform: translateY(-2px);
}

/* 区块标题 */
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.section-note {
  font-size: 13px;
  color: var(--text-soft);
}

.section-desc {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 560px;
  margin-left: auto;
}

.section-more {
  font-size: 14px;
  color: var(--denim);
  white-space: nowrap;
}

.section-more:hover {
  color: var(--coral);
}

/* 标签 */
.genre-tag,
.status-tag,
.length-tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 6px;
  white-space: nowrap;
}

.genre-tag {
  background-color: rgba(79, 124, 156, 0.12);
  color: var(--denim);
}

.status-tag {
  background-color: rgba(122, 156, 122, 0.15);
  color: #5d8060;
}

.length-tag {
  background-color: rgba(231, 180, 90, 0.15);
  color: #b58a2e;
}

/* 文字链接 */
.text-link {
  display: inline-block;
  font-size: 14px;
  color: var(--coral);
  font-weight: 500;
  position: relative;
}

.text-link:hover {
  color: var(--coral-deep);
}

/* details 折叠 */
.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(224, 90, 71, 0.3);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-soft);
}

.faq-answer p + p {
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   首页
   -------------------------------------------------------------------------- */

/* 首屏主视觉 */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--leaf);
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(122, 156, 122, 0.12);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}

.hero-lead {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 480px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--paper-deep);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(38, 43, 48, 0.8);
  color: var(--paper);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-float-tag {
  position: absolute;
  top: -14px;
  right: -8px;
  background-color: var(--mustard);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transform: rotate(3deg);
}

/* 通用 section 间距 */
.section-block {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 24px 0;
}

/* 新藏陈列 */
.recent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.book-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.book-card-link {
  display: block;
  color: var(--text);
}

.book-card-link:hover {
  color: var(--text);
}

.book-card-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.book-title {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px 4px;
}

.book-meta {
  font-size: 12px;
  color: var(--leaf);
  padding: 0 16px;
  font-weight: 500;
}

.book-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  padding: 8px 16px 16px;
}

/* 编辑主推跨列 */
.feature-primary {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.feature-main-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-main-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  color: var(--text);
}

.feature-link:hover {
  color: var(--text);
}

.feature-media {
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

.feature-desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

.feature-reason {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-soft);
  background-color: rgba(122, 156, 122, 0.1);
  border-left: 3px solid var(--leaf);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.feature-reason strong {
  color: var(--leaf);
}

.feature-cta {
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
}

.feature-side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-note-card {
  flex: 1;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.side-note-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.side-note-title {
  font-size: 17px;
  font-weight: 700;
}

.side-note-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8;
}

.side-note-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--denim);
  font-weight: 500;
}

.side-note-link:hover {
  color: var(--coral);
}

/* 追更便签 */
.heat-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.heat-item {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  transform: rotate(-0.5deg);
}

.heat-item:nth-child(even) {
  transform: rotate(0.5deg);
}

.heat-item:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.heat-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.heat-number {
  font-size: 12px;
  color: var(--mustard);
  font-weight: 800;
  letter-spacing: 0;
}

.heat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.heat-tag {
  font-size: 12px;
  color: var(--text-soft);
  background-color: var(--paper);
  padding: 2px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

/* 口味入口 */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-link {
  display: inline-block;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.25s ease;
}

.chip-link:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* 手记摘录 */
.journal-teaser-inner {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
  position: relative;
}

.journal-teaser-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--mustard);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.journal-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--mustard);
  font-weight: 600;
  text-transform: uppercase;
}

.journal-quote {
  margin-top: 16px;
  border: none;
}

.journal-quote-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.9;
  max-width: 80%;
}

.journal-source {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-soft);
  font-style: normal;
}

.journal-more-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
}

/* 首页 FAQ 预览 */
.faq-preview-list {
  max-width: 720px;
}

.faq-more-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--denim);
  font-weight: 500;
}

.faq-more-link:hover {
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   书架总目页
   -------------------------------------------------------------------------- */

/* 侧栏在左的布局 */
.sidebar-left {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar-left .shelf-filter {
  grid-column: 1;
}

.sidebar-left .shelf-grid {
  grid-column: 2;
}

.shelf-filter {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.filter-title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-options a {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.filter-options a:hover,
.filter-options a.is-active {
  border-color: var(--coral);
  background-color: rgba(224, 90, 71, 0.08);
  color: var(--coral);
}

.filter-note {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 20px;
}

.filter-note a {
  color: var(--denim);
}

/* 书架网格 */
.shelf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 重点条目展位 */
.entry-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.entry-feature:hover {
  box-shadow: var(--shadow-md);
}

.entry-feature-media {
  overflow: hidden;
}

.entry-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-feature-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.entry-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mustard);
  font-weight: 600;
  margin-bottom: 8px;
}

.entry-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.entry-genre-line {
  margin-bottom: 12px;
}

.entry-synopsis {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}

.entry-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.spec-item {
  background-color: var(--paper);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-soft);
}

.entry-link {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  align-self: flex-start;
}

/* 作品条目卡 */
.entry-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.entry-card-media {
  overflow: hidden;
}

.entry-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.entry-card:hover .entry-card-media img {
  transform: scale(1.03);
}

.entry-card-body {
  padding: 16px;
}

.entry-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.entry-card-tags {
  margin-bottom: 8px;
}

.entry-card-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.entry-card-status {
  font-size: 12px;
}

/* 出口 */
.shelf-exit {
  grid-column: 1 / -1;
  background-color: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.shelf-exit-text {
  font-size: 14px;
  color: var(--text-soft);
}

.shelf-exit-text a {
  color: var(--coral);
  font-weight: 500;
}

.shelf-exit-link {
  background-color: var(--denim);
  color: #fff;
  font-size: 14px;
  padding: 8px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.shelf-exit-link:hover {
  background-color: var(--navy);
  color: #fff;
}

/* --------------------------------------------------------------------------
   策展主题页
   -------------------------------------------------------------------------- */

.curation-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.curation-content {
  min-width: 0;
}

.curation-content .section-title {
  font-size: 22px;
  margin-bottom: 20px;
}

/* 主展位 */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-media {
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-reason {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.spec-list .spec-item {
  background-color: var(--paper);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
}

/* 分辑 */
.split-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.split-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.split-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.split-media {
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-title {
  font-size: 17px;
  font-weight: 700;
  padding: 16px 20px 6px;
}

.split-desc {
  font-size: 13px;
  color: var(--text-soft);
  padding: 0 20px 14px;
  line-height: 1.8;
}

.split-card .text-link {
  margin: 0 20px 20px;
}

/* 小主题 */
.mini-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mini-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mini-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mini-card a {
  font-size: 13px;
  color: var(--coral);
  font-weight: 500;
}

/* 承接说明 */
.curation-bridge {
  margin-top: 32px;
  background-color: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.curation-bridge p {
  font-size: 14px;
  color: var(--text-soft);
}

.curation-bridge p strong {
  color: var(--text);
}

.bridge-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.25s ease;
}

.btn-link:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* 主题索引侧栏 */
.curation-topic-index {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.side-title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.topic-index-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topic-index-list a {
  display: block;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all 0.2s ease;
}

.topic-index-list a:hover {
  background-color: rgba(224, 90, 71, 0.06);
  color: var(--coral);
}

.side-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--denim);
}

/* --------------------------------------------------------------------------
   漫谈手记页
   -------------------------------------------------------------------------- */

.journal-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.journal-intro-copy .section-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.journal-intro-copy p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
  margin-top: 12px;
}

.journal-intro-figure {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.journal-intro-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.journal-intro-figure figcaption {
  font-size: 12px;
  color: var(--text-soft);
  padding: 8px 4px 0;
}

/* 手记列表 */
.journal-note-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.journal-note-list > .section-title {
  font-size: 22px;
  margin-bottom: 24px;
}

.journal-note-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 20px;
  border-left: 4px solid var(--mustard);
  transition: box-shadow 0.25s ease;
}

.journal-note-card:hover {
  box-shadow: var(--shadow-sm);
}

.note-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.note-impression {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.note-tags {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.note-tags li {
  font-size: 12px;
  background-color: var(--paper);
  color: var(--text-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

.note-card-body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
  margin-top: 12px;
}

.note-card-body .note-fit {
  margin-top: 16px;
  font-size: 13px;
  color: var(--leaf);
  background-color: rgba(122, 156, 122, 0.1);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.note-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--coral);
  font-weight: 500;
}

/* 手记 CTA */
.journal-note-cta {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 0;
}

.journal-note-cta > .section-title {
  font-size: 22px;
  margin-bottom: 24px;
}

.cta-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cta-entry-card {
  background-color: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s ease;
}

.cta-entry-card:hover {
  transform: translateY(-3px);
}

.cta-entry-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-entry-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cta-entry-card a {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   新手上路页
   -------------------------------------------------------------------------- */

.guide-start-ways,
.guide-route,
.guide-path-map,
.guide-final-tip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.guide-start-ways > h2,
.guide-route h2,
.guide-path-map > h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-lead {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.start-ways-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.start-way-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.start-way-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.way-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.way-index {
  font-size: 12px;
  font-weight: 800;
  color: var(--mustard);
  background-color: rgba(231, 180, 90, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.way-label {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

.way-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.way-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}

.way-link {
  display: inline-block;
  font-size: 13px;
  color: var(--coral);
  font-weight: 500;
}

/* 路线 */
.guide-route {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background-color: var(--paper-deep);
  border-radius: var(--radius-lg);
  max-width: calc(var(--container) - 48px);
  padding: 40px 48px;
  margin-left: auto;
  margin-right: auto;
}

.route-lead {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
  margin-bottom: 20px;
}

.route-steps {
  counter-reset: route-step;
}

.route-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
}

.step-marker {
  counter-increment: route-step;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-marker::before {
  content: counter(route-step);
}

.step-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

.step-text a {
  color: var(--coral);
  font-weight: 500;
}

.route-figure {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.route-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.route-caption {
  font-size: 12px;
  color: var(--text-soft);
  padding: 8px 4px 0;
}

/* 路径图 */
.path-map-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.path-map-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.path-node {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.path-node-home {
  background-color: rgba(122, 156, 122, 0.12);
  border-color: rgba(122, 156, 122, 0.3);
}

.node-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.node-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.path-node-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.path-node-group .path-node {
  padding: 12px;
}

.path-node-group .node-title {
  font-size: 14px;
}

.path-node-group .node-desc {
  font-size: 12px;
}

.path-node-back {
  background-color: rgba(79, 124, 156, 0.1);
  border-color: rgba(79, 124, 156, 0.3);
  text-align: center;
}

.node-note {
  font-size: 13px;
  color: var(--denim);
}

.path-arrow {
  text-align: center;
  font-size: 18px;
  color: var(--coral);
  line-height: 1;
  padding: 4px 0;
}

.path-arrow-down::after {
  content: "↓";
}

.path-arrow-up::after {
  content: "↑";
}

.path-map-side {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.side-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.path-scenarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-item {
  padding: 10px;
  border-radius: var(--radius-sm);
  background-color: var(--paper);
}

.scenario-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--leaf);
  margin-bottom: 4px;
}

.scenario-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* 最终建议 */
.guide-final-tip {
  padding-bottom: 0;
}

.tip-inner {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
}

.tip-title {
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 12px;
}

.tip-text {
  font-size: 15px;
  color: rgba(246, 240, 230, 0.8);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

.tip-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tip-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  background-color: var(--coral);
  color: #fff;
  transition: background-color 0.2s ease;
}

.tip-link:hover {
  background-color: var(--coral-deep);
  color: #fff;
}

.tip-link + .tip-link {
  background-color: transparent;
  border: 1px solid rgba(246, 240, 230, 0.4);
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   阅读问答页
   -------------------------------------------------------------------------- */

.faq-guide-media {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 36px;
}

.faq-guide-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.faq-guide-figure img {
  width: 100%;
  aspect-ratio: 21 / 7;
  object-fit: cover;
}

.faq-guide-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(38, 43, 48, 0.75);
  color: var(--paper);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
}

.faq-group {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 36px;
}

.faq-group-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.faq-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 24px;
  background-color: var(--coral);
  border-radius: 2px;
}

.faq-group-desc {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.faq-group .faq-item summary {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-group .faq-answer p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

/* 去向提示条 */
.faq-hint {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
  background-color: var(--paper-deep);
  border-radius: var(--radius-lg);
  text-align: center;
}

.faq-hint-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-hint-text {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 20px;
}

.faq-hint-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.faq-hint-item {
  flex: 1;
  max-width: 260px;
}

.faq-hint-item a {
  display: block;
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  transition: all 0.25s ease;
  height: 100%;
}

.faq-hint-item a:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.hint-item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.hint-item-desc {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   收藏公约页
   -------------------------------------------------------------------------- */

.charter-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.charter-main {
  min-width: 0;
}

.charter-section {
  margin-bottom: 36px;
}

.charter-section h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}

.charter-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 20px;
  background-color: var(--leaf);
  border-radius: 2px;
}

.charter-section p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 2;
  margin-top: 12px;
}

.charter-figure {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.charter-figure img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.charter-figure figcaption {
  font-size: 12px;
  color: var(--text-soft);
  padding: 8px 4px 0;
}

.charter-links {
  background-color: var(--paper-deep);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.charter-links p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 2;
}

.charter-links a {
  color: var(--coral);
  font-weight: 500;
  margin-right: 8px;
  white-space: nowrap;
}

/* 关键词侧栏 */
.charter-keywords {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.keyword-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.keyword-card h2 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.keyword-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.keyword-card li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.keyword-label {
  font-size: 12px;
  color: var(--mustard);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.keyword-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.keyword-note {
  margin-top: 16px;
  background-color: var(--paper-deep);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.keyword-note p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   404 页
   -------------------------------------------------------------------------- */

.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  flex: 1;
}

.error-panel {
  text-align: center;
  max-width: 480px;
}

.error-code {
  font-size: 88px;
  font-weight: 800;
  color: var(--mustard);
  line-height: 1.1;
  letter-spacing: 0;
}

.error-panel h1 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 8px;
}

.error-lead {
  font-size: 16px;
  color: var(--text-soft);
  margin-top: 16px;
}

.error-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-top: 8px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.error-home-link,
.error-shelf-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
}

.error-home-link {
  background-color: var(--coral);
  color: #fff;
}

.error-home-link:hover {
  background-color: var(--coral-deep);
  color: #fff;
}

.error-shelf-link {
  border: 1.5px solid var(--line);
  color: var(--text);
}

.error-shelf-link:hover {
  border-color: var(--denim);
  color: var(--denim);
}

/* --------------------------------------------------------------------------
   响应式
   -------------------------------------------------------------------------- */

/* 平板 */
@media (max-width: 1024px) {
  .heat-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .heat-item:nth-child(4),
  .heat-item:nth-child(5) {
    transform: rotate(-0.5deg);
  }

  .mini-card-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .start-ways-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 移动端 */
@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    width: 100%;
    flex-basis: 100%;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--card-bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 0;
    border-left: 3px solid transparent;
  }

  .nav-list a.is-current {
    border-left-color: var(--coral);
    background-color: rgba(224, 90, 71, 0.06);
  }

  .header-cta {
    display: none;
  }

  .brand-name {
    font-size: 20px;
  }

  /* 布局 */
  .layout-shell,
  .page-header,
  .breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-description {
    font-size: 14px;
  }

  .site-main.inner-main {
    padding-bottom: 48px;
  }

  /* 页脚 */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 28px;
  }

  .footer-bottom {
    padding: 16px;
  }

  /* 首页 */
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .hero-float-tag {
    top: -10px;
    right: 4px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .section-block {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .recent-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-primary {
    grid-template-columns: 1fr;
  }

  .feature-link {
    grid-template-columns: 1fr;
  }

  .feature-link img {
    aspect-ratio: 16 / 10;
  }

  .feature-content {
    padding: 24px 20px;
  }

  .feature-side-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .heat-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .heat-item:nth-child(odd) {
    transform: rotate(-0.5deg);
  }

  .heat-item:nth-child(even) {
    transform: rotate(0.5deg);
  }

  .chip-list {
    gap: 10px;
  }

  .chip-link {
    padding: 8px 18px;
    font-size: 13px;
  }

  .journal-teaser-inner {
    padding: 32px 24px;
  }

  .journal-quote-text {
    font-size: 17px;
    max-width: 100%;
  }

  /* 书架页 */
  .sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sidebar-left .shelf-filter {
    order: 2;
    width: 100%;
    position: static;
  }

  .sidebar-left .shelf-grid {
    order: 1;
    width: 100%;
  }

  .shelf-grid {
    grid-template-columns: 1fr;
  }

  .entry-feature {
    grid-template-columns: 1fr;
  }

  .entry-feature-media img {
    aspect-ratio: 16 / 10;
  }

  .entry-feature-content {
    padding: 20px;
  }

  .entry-specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .shelf-exit {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 策展页 */
  .curation-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .curation-content {
    order: 2;
    width: 100%;
  }

  .curation-topic-index {
    order: 1;
    width: 100%;
    position: static;
    overflow-x: auto;
    padding: 16px;
  }

  .curation-topic-index .side-title {
    display: none;
  }

  .topic-index-list {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .topic-index-list a {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .topic-index-list a:hover {
    background-color: rgba(224, 90, 71, 0.08);
  }

  .curation-topic-index .side-link {
    display: none;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card .feature-media img {
    aspect-ratio: 16 / 9;
  }

  .feature-body {
    padding: 20px;
  }

  .split-list {
    grid-template-columns: 1fr;
  }

  .mini-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .curation-bridge {
    padding: 20px;
  }

  /* 手记页 */
  .journal-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px 32px;
  }

  .journal-note-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .journal-note-card {
    padding: 20px;
  }

  .note-card-head {
    flex-direction: column;
    gap: 10px;
  }

  .note-impression {
    font-size: 16px;
  }

  .cta-entry-grid {
    grid-template-columns: 1fr;
  }

  /* 新手上路 */
  .guide-start-ways,
  .guide-route,
  .guide-path-map,
  .guide-final-tip {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
  }

  .start-ways-list {
    grid-template-columns: 1fr;
  }

  .guide-route {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .path-map-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .path-node-group {
    grid-template-columns: 1fr;
  }

  .path-arrow-down::after,
  .path-arrow-up::after {
    content: "↓";
  }

  .tip-inner {
    padding: 32px 20px;
  }

  .tip-title {
    font-size: 20px;
  }

  .tip-links {
    flex-direction: column;
    align-items: stretch;
  }

  .tip-link {
    text-align: center;
  }

  /* FAQ 页 */
  .faq-guide-media {
    padding: 0 16px 24px;
  }

  .faq-guide-figure img {
    aspect-ratio: 16 / 6;
  }

  .faq-group {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-hint {
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px 16px;
  }

  .faq-hint-list {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-hint-item {
    max-width: 100%;
  }

  /* 公约页 */
  .charter-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .charter-main {
    width: 100%;
  }

  .charter-keywords {
    width: 100%;
    position: static;
  }

  .charter-section p {
    font-size: 14px;
  }

  .charter-figure img {
    aspect-ratio: 16 / 8;
  }

  .charter-links p a {
    display: inline-block;
    margin-bottom: 4px;
  }

  /* 404 */
  .error-main {
    padding: 48px 16px;
  }

  .error-code {
    font-size: 64px;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-actions a {
    text-align: center;
  }

  .related-links {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 小屏手机 */
@media (max-width: 480px) {
  .mini-card-list {
    grid-template-columns: 1fr;
  }

  .heat-list {
    grid-template-columns: 1fr;
  }

  .heat-item:nth-child(n) {
    transform: none;
  }

  .entry-specs {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .spec-item {
    font-size: 12px;
    padding: 6px 10px;
  }

  .faq-hint-list {
    flex-direction: column;
  }
}
