/* roulang page: index */
:root {
    --bg: #FBF7F0;
    --surface: #FFFDF9;
    --surface-2: #F0E7DA;
    --ink: #241C15;
    --muted: #6C6158;
    --cream: #FFF8F0;
    --primary: #B9643B;
    --primary-dark: #9A4E2D;
    --terra: #D98664;
    --honey: #EBB35E;
    --tea: #2A211C;
    --line: rgba(36, 28, 21, 0.1);
    --radius-lg: 22px;
    --radius-md: 15px;
    --shadow-card: 0 18px 42px rgba(92, 61, 39, 0.12);
    --shadow-soft: 0 8px 24px rgba(92, 61, 39, 0.08);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    font-size: 16px; line-height: 1.8; -webkit-font-smoothing: antialiased;
  }
  img, svg, video { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input, select, textarea { font-family: inherit; font-size: inherit; }
  ul { padding: 0; margin: 0; list-style: none; }
  h1, h2, h3, p { margin: 0; }
  .wrap { width: min(1200px, 92%); margin: 0 auto; }
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    background: transparent; transition: all 0.3s ease;
  }
  .header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 72px; }
  .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; }
  .logo-mark {
    width: 40px; height: 40px; border-radius: 14px; background: rgba(185,100,59,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
  }
  .nav-list { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
  .nav-list a { position: relative; padding: 6px 0; opacity: 0.85; transition: opacity 0.2s; }
  .nav-list a:hover, .nav-list a.active { opacity: 1; color: var(--primary); }
  .nav-list a.active::after, .nav-list a:hover::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 20px; border-radius: 9px; background: var(--terra); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; border: 0; line-height: 1.1; transition: all 0.22s ease; }
  .btn-primary { background: var(--primary); color: var(--cream); padding: 12px 22px; }
  .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(154,78,45,0.22); }
  .search-toggle { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
  .burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: rgba(185,100,59,0.08); border: 0; border-radius: 14px; cursor: pointer; color: var(--ink); }
  .site-header.scrolled {
    background: rgba(255,250,243,0.93);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 34px rgba(91,63,40,0.1);
    border-bottom: 1px solid var(--line);
  }
  .search-pop { display: none; position: absolute; right: 4px; top: 66px; width: min(360px, 92vw); background: var(--surface); padding: 13px; border-radius: 18px; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
  .search-pop.show { display: block; }
  .search-input { width: 100%; border: 1px solid var(--line); background: #fff; padding: 10px 15px; border-radius: 999px; outline: none; color: var(--ink); }

  .cat-hero {
    position: relative;
    background: linear-gradient(180deg, rgba(42,33,28,0.5), rgba(251,247,240,0.92)), url('/assets/images/backpic/back-4.jpg') center 32% / cover no-repeat;
    padding: 150px 0 58px;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
  }
  .breadcrumb { font-size: 13px; color: rgba(255,248,240,0.82); display: flex; gap: 6px; flex-wrap: wrap; }
  .breadcrumb a { color: #F7DEBF; }
  .breadcrumb a:hover { color: #fff; }
  .cat-eyebrow { margin-top: 36px; display: inline-block; color: #FFE8D6; background: rgba(185,100,59,0.18); border: 1px solid rgba(255,255,255,0.2); padding: 7px 15px; border-radius: 999px; font-size: 13px; }
  .cat-hero h1 { font-size: clamp(32px, 5vw, 48px); color: #FFF7EF; font-weight: 800; margin-top: 18px; text-shadow: 0 2px 18px rgba(40,24,14,0.3); }
  .cat-lead { max-width: 650px; color: rgba(255,248,240,0.94); margin-top: 14px; font-size: 16px; line-height: 1.9; text-shadow: 0 1px 12px rgba(0,0,0,0.16); }
  .filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-bottom: 18px; }
  .chip { border-radius: 999px; padding: 8px 16px; font-size: 13px; background: rgba(42,33,28,0.06); border: 1px solid var(--line); color: var(--muted); transition: all 0.2s; cursor: pointer; }
  .chip:hover { border-color: var(--primary); color: var(--primary); }
  .chip.active { background: var(--primary); color: var(--cream); border-color: var(--primary); }
  .cat-hero .filter-chips .chip { background: rgba(255,248,240,0.65); color: var(--ink); }
  .cat-hero .filter-chips .chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

  .daily-mosaic-section { padding: 74px 0 50px; }
  .section-head { max-width: 690px; margin-bottom: 28px; }
  .section-head .eyebrow { display: inline-flex; gap: 8px; background: rgba(185,100,59,0.08); color: var(--primary); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; align-items: center; }
  .section-head h2 { margin-top: 14px; font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
  .section-head p { color: var(--muted); margin-top: 10px; font-size: 15px; line-height: 1.85; }
  .lead-card {
    display: grid; grid-template-columns: 7fr 5fr;
    background: var(--surface); border: 1px solid rgba(36,28,21,0.05);
    border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .28s, box-shadow .28s;
  }
  .lead-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .lead-figure { min-height: 330px; overflow: hidden; position: relative; }
  .lead-figure img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s; }
  .lead-card:hover .lead-figure img { transform: scale(1.03); }
  .lead-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(42,33,28,0.22) 0%, transparent 50%); }
  .badge-fresh { position: absolute; left: 20px; top: 20px; z-index: 4; background: var(--honey); color: #2A211C; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 800; }
  .lead-body { padding: 30px 30px 32px; display: flex; flex-direction: column; justify-content: center; }
  .date-kicker { font-size: 13px; color: var(--primary); font-weight: 700; }
  .lead-body h3 { font-size: 22px; line-height: 1.5; margin-top: 10px; font-weight: 800; }
  .lead-body p { color: var(--muted); margin-top: 14px; font-size: 15px; }
  .lead-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }
  .lead-meta .story { display: inline-flex; align-items: center; gap: 5px; }
  .morelink { margin-top: 22px; font-weight: 700; color: var(--primary); }
  .morelink:hover { text-decoration: underline; }

  .double-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
  .entry-card { background: var(--surface); border: 1px solid rgba(36,28,21,0.05); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.25s; }
  .entry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .entry-img { aspect-ratio: 16/7.6; overflow: hidden; position: relative; background: #EADDCB; }
  .entry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .entry-card:hover .entry-img img { transform: scale(1.04); }
  .entry-img .d { position: absolute; left: 14px; bottom: 12px; background: rgba(42,33,28,0.72); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: 12px; }
  .entry-body { padding: 20px 22px 22px; }
  .tagrow { display: flex; gap: 6px; flex-wrap: wrap; }
  .tag { border-radius: 999px; border: 1px solid rgba(185,100,59,0.12); background: #F4E3D5; color: var(--primary-dark); padding: 3px 10px; font-size: 12px; font-weight: 600; }
  .entry-body h3 { font-size: 17px; line-height: 1.6; margin-top: 10px; }
  .entry-body .ex { font-size: 14px; color: var(--muted); margin-top: 7px; line-height: 1.8; }
  .entry-foot { margin-top: 16px; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; }
  .col-card--offset1 { transform: translateY(14px); }
  .col-card--offset2 { transform: translateY(-6px); }

  .banner-list { margin-top: 74px; background: var(--tea); border-radius: 26px; padding: 30px 32px; color: #FFF8F0; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
  .banner-list .t { font-size: 20px; font-weight: 800; }
  .banner-list p { color: rgba(255,248,240,0.7); font-size: 14px; margin-top: 4px; }
  .banner-list .listmeta { color: rgba(255,248,240,0.82); font-size: 14px; }
  .liststyle { display: flex; flex-wrap: wrap; gap: 8px; }
  .liststyle span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 4px 13px; font-size: 13px; }

  .note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 40px 0 40px; }
  .note-card { background: var(--surface); border: 1px solid var(--line); border-radius: 21px; padding: 24px; }
  .note-card h3 { font-size: 16px; font-weight: 800; display: flex; gap: 8px; align-items: center; }
  .note-card h3 svg { color: var(--primary); flex: 0 0 auto; }
  .note-card p { color: var(--muted); font-size: 14px; margin-top: 8px; }

  .cat-cta { margin-bottom: 60px; text-align: center; background: linear-gradient(115deg, #FFF5E8, #F7E0CC); border-radius: 28px; padding: 52px 26px; position: relative; overflow: hidden; }
  .cat-cta::after { content: ""; position: absolute; right: -70px; bottom: -100px; width: 260px; height: 260px; border-radius: 50%; background: rgba(185,100,59,0.08); }
  .cat-cta h2 { font-size: clamp(22px, 4vw, 32px); }
  .cat-cta p { color: var(--muted); margin: 12px auto 0; max-width: 540px; }
  .cat-cta .btn { margin-top: 22px; }

  .footer { background: var(--tea); color: #F9EEE3; padding-top: 62px; margin-top: 24px; }
  .footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 42px; padding-bottom: 38px; }
  .footer-title { font-size: 22px; font-weight: 800; }
  .footer-brand-note { color: rgba(249,238,227,0.67); font-size: 14px; max-width: 340px; margin-top: 14px; line-height: 1.8; }
  .footer-group h4 { color: #F3D5BD; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
  .footer-group ul { display: grid; gap: 9px; }
  .footer-group a { color: rgba(249,238,227,0.7); font-size: 14px; transition: color 0.22s; }
  .footer-group a:hover { color: var(--honey); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.13); padding: 22px 0 24px; display: flex; justify-content: space-between; flex-wrap: wrap; color: rgba(249,238,227,0.5); font-size: 13px; }

  @media (max-width: 1024px) {
    .nav-list, .nav-cta .btn-primary { display: none; }
    .header-inner .burger { display: inline-flex; }
    .cat-hero { padding-top: 124px; }
    .lead-card { grid-template-columns: 1fr; }
    .lead-figure { min-height: 280px; position: relative; }
    .lead-figure img { position: absolute; }
    .note-grid, .double-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 680px) {
    .logo { font-size: 19px; }
    .cat-hero { padding-bottom: 40px; }
    .cat-lead { font-size: 15px; }
    .col-card--offset1, .col-card--offset2 { transform: none; }
    .banner-list { padding: 24px 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .lead-body { padding: 24px; }
    .filter-chips .chip { font-size: 12px; padding: 7px 12px; }
    .wrap { width: 94%; }
  }
  @media (max-width: 1024px) {
    .site-header.nav-open .nav-list {
      display: flex; position: fixed; top: 0; right: 0; bottom: 0; width: min(350px, 82vw);
      background: #FFFDF9; flex-direction: column; align-items: flex-start; gap: 4px;
      padding: 110px 28px 32px; color: var(--ink); border-radius: 26px 0 0 26px;
      border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,0.15); z-index: 70;
    }
    .site-header.nav-open .nav-list a { font-size: 19px; padding: 12px 6px; width: 100%; border-bottom: 1px solid var(--line); opacity: 1; }
    .site-header.nav-open .nav-list a::after { display: none; }
    .site-header.nav-open .burger { position: relative; z-index: 80; color: var(--primary); background: rgba(185,100,59,0.1); }
  }
  a:focus-visible, button:focus-visible { outline: 3px solid rgba(185,100,59,0.5); outline-offset: 3px; border-radius: 8px; }

/* roulang page: category1 */
:root {
  --bg: #FBF7F0;
  --surface: #FFFDF9;
  --surface-2: #F0E7DA;
  --ink: #241C15;
  --muted: #6C6158;
  --cream: #FFF8F0;
  --primary: #B9643B;
  --primary-dark: #9A4E2D;
  --terra: #D98664;
  --honey: #EBB35E;
  --tea: #2A211C;
  --line: rgba(36, 28, 21, 0.1);
  --radius-lg: 22px;
  --radius-md: 15px;
  --shadow-card: 0 18px 42px rgba(92, 61, 39, 0.12);
  --shadow-soft: 0 8px 24px rgba(92, 61, 39, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, p { margin-top: 0; }
ul { padding-left: 0; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(185,100,59,0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.nav-list a {
  position: relative;
  padding: 6px 0;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  border-radius: 9px;
  background: var(--terra);
  transition: width 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active { opacity: 1; color: var(--primary); }
.nav-list a.active::after,
.nav-list a:hover::after { width: 20px; }

.site-header.over-dark:not(.scrolled) .logo { color: var(--cream); }
.site-header.over-dark:not(.scrolled) .logo-mark { color: var(--cream); background: rgba(255,255,255,0.12); }
.site-header.over-dark:not(.scrolled) .nav-list a { color: rgba(255,248,240,0.94); }
.site-header.over-dark:not(.scrolled) .nav-list a:hover,
.site-header.over-dark:not(.scrolled) .nav-list a.active { color: #FFD9B8; }
.site-header.over-dark:not(.scrolled) .nav-list a.active::after,
.site-header.over-dark:not(.scrolled) .nav-list a:hover::after { background: var(--honey); }

.site-header.over-dark:not(.scrolled) .search-toggle {
  border-color: rgba(255,255,255,0.28);
  color: var(--cream);
}

.site-header.scrolled {
  background: rgba(255,250,243,0.93);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 8px 34px rgba(91,63,40,0.1);
  border-bottom: 1px solid var(--line);
}

.site-header.scrolled .logo,
.site-header.scrolled .nav-list a { color: var(--ink); }
.site-header.scrolled .nav-list a.active { color: var(--primary); }
.site-header.scrolled .search-toggle { color: var(--ink); border-color: var(--line); background: var(--surface); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36,28,21,0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
}

.site-header.over-dark:not(.scrolled) .burger { color: var(--cream); border-color: rgba(255,255,255,0.28); }
.site-header.scrolled .burger { border-color: var(--line); background: var(--surface); color: var(--ink); }
.site-header.over-dark:not(.scrolled) .nav-list.open { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.site-header.over-dark:not(.scrolled) .nav-list.open a { color: var(--ink); }
.site-header.over-dark:not(.scrolled) .nav-list.open a.active { color: var(--primary); }
.site-header.over-dark:not(.scrolled) .nav-list.open a.active::after,
.site-header.over-dark:not(.scrolled) .nav-list.open a:hover::after { background: var(--terra); }

.search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.search-toggle:hover {
  background: rgba(185,100,59,0.08);
  border-color: rgba(185,100,59,0.28);
  transform: translateY(-1px);
}

.search-pop {
  display: none;
  position: absolute;
  right: 60px;
  top: 64px;
  width: min(360px, 86vw);
  background: var(--surface);
  padding: 13px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.search-pop.show { display: block; }

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  outline: none;
  color: var(--ink);
}

.search-input:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(185,100,59,0.14);
}

/* ===== 按钮 / 标签 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  cursor: pointer;
  border: 0;
  padding: 12px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(154,78,45,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(36,28,21,0.18);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--tea);
}

.btn-light:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(42,33,28,0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid rgba(36,28,21,0.07);
  line-height: 1.4;
}

.badge-honey {
  background: var(--honey);
  color: #2a211c;
}

/* ===== 分类 Hero ===== */
.cat-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(42,33,28,0.55), rgba(42,33,28,0.34) 45%, rgba(251,247,240,0.94)),
    url('/assets/images/backpic/back-4.jpg') center 30% / cover no-repeat;
  padding: 148px 0 64px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

.cat-hero .wrap { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}

.breadcrumb svg { width: 13px; height: 13px; opacity: 0.7; }
.breadcrumb a { color: #FFE3C9; transition: color 0.2s; }
.breadcrumb a:hover { color: #ffffff; }

.cat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  color: #FFE9D9;
  background: rgba(185,100,59,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.cat-hero h1 {
  color: #FFF7EF;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.22;
  margin: 18px 0 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(40,24,14,0.25);
}

.cat-lead {
  max-width: 660px;
  color: rgba(255,248,240,0.95);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.95;
  text-shadow: 0 1px 14px rgba(0,0,0,0.16);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  background: rgba(42,33,28,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.2s ease;
  cursor: default;
  line-height: 1.4;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip.active {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
  font-weight: 700;
}

.cat-hero .filter-chips .chip {
  background: rgba(255,248,240,0.82);
  color: var(--ink);
  border-color: rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
}

.cat-hero .filter-chips .chip:hover { border-color: var(--primary); color: var(--primary); }
.cat-hero .filter-chips .chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== 内容页面通用 ===== */
.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185,100,59,0.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.9vw, 38px);
  font-weight: 800;
  line-height: 1.32;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
}

/* ===== 更新快讯 ===== */
.daily-intro-section {
  padding: 64px 0 26px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
}

.signal-item {
  background: var(--surface);
  border: 1px solid rgba(36,28,21,0.05);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(92,61,39,0.05);
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.signal-item .signal-icon {
  width: 36px;
  height: 36px;
  background: rgba(185,100,59,0.1);
  color: var(--primary);
  flex: 0 0 auto;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.signal-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.signal-item span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ===== 主编推选 ===== */
.featured-section {
  padding: 42px 0 20px;
}

.lead-card {
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--surface);
  border: 1px solid rgba(36,28,21,0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.lead-figure {
  min-height: 380px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}

.lead-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.lead-card:hover .lead-figure img { transform: scale(1.04); }

.lead-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42,33,28,0.3) 0%, transparent 45%);
  pointer-events: none;
}

.badge-fresh {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 4;
  background: var(--honey);
  color: #2A211C;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
}

.lead-body {
  padding: 34px 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-body .idea {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.lead-body h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 18px 0 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lead-body p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
}

.lead-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.lead-duration {
  color: var(--muted);
  font-size: 13px;
  background: var(--surface-2);
  padding: 4px 15px;
  border-radius: 999px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s ease;
}

.link-arrow:hover { gap: 10px; }

/* ===== 常看记录卡片墙 ===== */
.archive-section {
  padding: 62px 0 60px;
}

.offset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 32px;
  align-items: start;
}

.offset-grid .col:last-child {
  margin-top: 64px;
}

.medium-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid rgba(36,28,21,0.05);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(92,61,39,0.05);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.medium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.medium-card + .medium-card { margin-top: 32px; }

.medium-thumb {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.medium-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.medium-card:hover .medium-thumb img { transform: scale(1.04); }

.medium-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(42,33,28,0.18));
  pointer-events: none;
}

.medium-card .duration {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 3;
  background: rgba(42,33,28,0.72);
  backdrop-filter: blur(8px);
  color: #fff7ef;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.medium-body {
  padding: 22px 24px 25px;
}

.medium-body .meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.medium-body h3 {
  font-size: 19px;
  line-height: 1.55;
  margin: 14px 0 0;
  font-weight: 800;
}

.medium-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
  margin: 11px 0 0;
}

.medium-more {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.archive-bottom {
  margin-top: 76px;
  background: var(--surface);
  border-radius: 22px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(36,28,21,0.05);
  box-shadow: var(--shadow-soft);
}

.archive-bottom p {
  max-width: 680px;
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.archive-bottom strong {
  color: var(--ink);
  font-weight: 700;
}

/* ===== 栏目补充说明 ===== */
.record-notes {
  background: var(--tea);
  color: #FFF7EF;
  border-radius: 28px;
  padding: 62px 58px;
  position: relative;
  overflow: hidden;
}

.record-notes::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(235,179,94,0.28), transparent 68%);
  pointer-events: none;
}

.record-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  position: relative;
  z-index: 2;
}

.record-grid h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.4;
}

.record-grid h2 span { color: var(--honey); }

.record-grid > div > p {
  color: rgba(255,248,240,0.78);
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 24px;
}

.rule-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.rule-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 15px 17px;
}

.rule-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--honey);
  margin-top: 4px;
}

.rule-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.rule-list span {
  display: block;
  color: rgba(255,248,240,0.7);
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-section {
  padding-top: 86px;
}

.faq-grid {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(36,28,21,0.07);
  padding: 0 22px;
  margin-bottom: 13px;
  box-shadow: 0 5px 16px rgba(92,61,39,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(185,100,59,0.2);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  min-height: 62px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex: 0 0 auto;
  transition: transform 0.26s ease;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  border-top: 1px dashed var(--line);
  padding: 4px 0 22px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
}

.faq-answer strong { color: var(--ink); }

/* ===== CTA ===== */
.bottom-cta {
  margin-top: 66px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(115deg, #B9643B 0%, #D98664 55%, #EBB35E 100%);
  color: #fffaf3;
  padding: 52px 54px;
  position: relative;
}

.bottom-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 82% 16%, rgba(255,255,255,0.28), transparent 34%);
  pointer-events: none;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.bottom-cta h2 {
  margin: 0;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.4;
}

.bottom-cta p {
  margin: 10px 0 0;
  color: rgba(255,250,243,0.92);
  font-size: 15px;
  max-width: 690px;
}

/* ===== Footer ===== */
.footer {
  background: #251E19;
  color: rgba(255,248,240,0.72);
  margin-top: 64px;
  padding-top: 58px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr;
  gap: 44px;
}

.footer-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
}

.footer-brand-note {
  font-size: 14px;
  line-height: 1.9;
  max-width: 420px;
  margin: 14px 0 0;
}

.footer h4 {
  color: var(--cream);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer ul a {
  color: rgba(255,248,240,0.68);
  font-size: 14px;
  transition: all 0.2s;
}

.footer ul a:hover {
  color: var(--honey);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 46px;
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,248,240,0.46);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .nav-list {
    display: none;
    position: absolute;
    right: 16px;
    top: 66px;
    width: min(280px, 92vw);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    gap: 6px;
    flex-direction: column;
  }

  .nav-list.open {
    display: flex;
    align-items: stretch;
  }

  .nav-list a {
    padding: 11px 14px;
    border-radius: 11px;
    font-size: 15px;
    opacity: 1;
  }

  .nav-list a:hover,
  .nav-list a.active {
    background: rgba(185,100,59,0.08);
    color: var(--primary);
    opacity: 1;
  }

  .burger {
    display: inline-flex;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-item:last-child {
    grid-column: 1 / -1;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .lead-figure {
    min-height: 300px;
  }

  .record-notes {
    padding: 40px 28px;
  }

  .record-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bottom-cta {
    padding: 38px 30px;
  }
}

@media (max-width: 760px) {
  .cat-hero {
    padding: 126px 0 50px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .cat-hero h1 {
    font-size: 32px;
  }

  .cat-lead {
    font-size: 15px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-item:last-child { grid-column: auto; }

  .offset-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .offset-grid .col:last-child { margin-top: 0; }

  .medium-card + .medium-card { margin-top: 26px; }

  .lead-body {
    padding: 24px 22px;
  }

  .lead-body h3 {
    font-size: 20px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .archive-section {
    padding-top: 48px;
  }

  .archive-bottom {
    margin-top: 50px;
    padding: 22px 20px;
  }

  .rule-list {
    gap: 12px;
  }

  .rule-list li {
    padding: 12px 14px;
  }

  .record-notes {
    border-radius: 24px;
  }

  .footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}
