/* ============================================================
   言聊 — 资讯 / 文章页
   ============================================================ */
.page-head { padding-top: 132px; position: relative; overflow: hidden; }
.page-head .hero-glow-a { width: 520px; height: 520px; top: -240px; right: -80px; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumb a:hover { color: var(--ink-soft); }
.crumb .sep { color: var(--faint); }
.page-head h1 { font-family: var(--font-display); font-size: clamp(38px,6vw,76px); font-weight: 600; letter-spacing: -.02em; max-width: 16ch; }
.page-head .lede { color: var(--ink-soft); font-size: clamp(16px,1.5vw,19px); max-width: 52ch; margin-top: 22px; font-weight: 300; }

/* filter tabs */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 44px; }
.filter { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); background: rgba(255,255,255,.015); transition: all .25s; }
.filter:hover { color: var(--ink); border-color: color-mix(in oklab,var(--accent) 40%, var(--line)); }
.filter.active { color: #20170a; background: linear-gradient(180deg,var(--gold-bright),var(--accent)); border-color: transparent; font-weight: 500; }

/* featured */
.featured { display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-1); }
.featured .thumb { position: relative; min-height: 380px; }
.featured .thumb .ph-photo { position: absolute; inset: 0; }
.featured .cat { position: absolute; top: 20px; left: 20px; font-size: 12px; letter-spacing: .08em; padding: 6px 13px; border-radius: 100px; background: color-mix(in oklab,var(--bg) 70%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--accent-bright); }
.featured .body { padding: clamp(30px,4vw,52px); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.featured .tagline { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.featured h2 { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 600; line-height: 1.22; }
.featured p { color: var(--ink-soft); font-size: 16px; font-weight: 300; }
.featured .meta { font-size: 13px; color: var(--muted); display: flex; gap: 12px; align-items: center; }

/* pagination */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.pager a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); transition: all .25s; }
.pager a:hover { border-color: var(--accent); color: var(--ink); }
.pager a.on { background: linear-gradient(180deg,var(--gold-bright),var(--accent)); color: #20170a; border-color: transparent; font-weight: 600; }

/* newsletter */
.subscribe { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(36px,5vw,64px); text-align: center; background: linear-gradient(180deg,var(--surface-2),var(--bg-1)); position: relative; overflow: hidden; }
.subscribe h3 { font-family: var(--font-display); font-size: clamp(26px,3.4vw,42px); font-weight: 600; }
.sub-form { display: flex; gap: 12px; max-width: 460px; margin: 26px auto 0; flex-wrap: wrap; }
.sub-form input { flex: 1; min-width: 200px; height: 52px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,.03); padding: 0 22px; color: var(--ink); font: inherit; }
.sub-form input::placeholder { color: var(--muted); }
.sub-form input:focus { outline: none; border-color: var(--accent); }

/* ===== article detail ===== */
.article { max-width: 760px; margin-inline: auto; }
.article .a-meta { display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--muted); margin: 26px 0 30px; flex-wrap: wrap; }
.article .a-meta .av { width: 38px; height: 38px; border-radius: 50%; }
.article-cover { width: 100%; aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; position: relative; margin-bottom: 48px; }
.prose { font-size: 18px; line-height: 1.85; color: var(--ink-soft); font-weight: 300; }
.prose h2 { font-family: var(--font-display); font-size: 30px; color: var(--ink); margin: 48px 0 18px; font-weight: 600; }
.prose h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin: 36px 0 12px; }
.prose p { margin-bottom: 22px; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose blockquote { border-left: 2px solid var(--accent); padding: 6px 0 6px 26px; margin: 32px 0; font-family: var(--font-display); font-size: 22px; color: var(--ink); font-style: italic; }
.prose ul { margin: 0 0 22px; padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--accent); }

@media (max-width: 860px) {
  .featured { grid-template-columns: 1fr; }
  .featured .thumb { min-height: 240px; }
}
