/* ============================================================
   jichangce unified theme — merged from index.html + styles.styl
   ============================================================ */

/* ---------- Design Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-page: #0a0a0a;
  --bg-card: #161616;
  --bg-elevated: #1e1e1e;
  --bg-hover: #222222;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --text-muted: #5a5a5a;
  --accent: #f97316;
  --accent-dim: rgba(249,115,22,0.15);
  --accent-glow: 0 0 24px rgba(249,115,22,0.2);
  --gold: #987B41;
  --gold-dim: rgba(152,123,65,0.15);
  --green: #66bb6a;
  --green-dim: rgba(102,187,106,0.1);
  --amber: #ffa726;
  --red: #ef5350;
  --red-dim: rgba(239,83,80,0.1);
  --radius: 12px;
  --font-display: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', 'Space Grotesk', sans-serif;
  --max-w: 1140px;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 6px;
}
.nav-logo .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-search {
  width: 36px; height: 36px;
  border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text-secondary);
  cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.nav-search:hover { border-color: var(--border-strong); }

/* ---------- LAYOUT CONTAINERS ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding-top: 40px;
}
.content-main { min-width: 0; }

/* ---------- HERO (Homepage) ---------- */
.hero {
  padding: 72px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-text { flex: 1; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 12px; }

/* Buttons */
.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.btn-outline:hover { background: var(--accent-dim); }
.btn-ghost {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text-secondary);
  text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text-primary); }

/* Score Ring (Hero) */
.hero-ring-wrap {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.score-ring {
  width: 160px; height: 160px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.score-ring svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.score-ring .ring-bg { stroke: #1e1e1e; }
.score-ring .ring-fill { stroke: var(--accent); stroke-linecap: round; }
.score-ring .score-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.hero-ring-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}
.hero-ring-label strong { color: #fff; }

/* ---------- SECTION HEADER ---------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-top: 48px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; gap: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- TOP 3 CARDS ---------- */
.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rank-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: var(--border-strong);
}
.rank-card.featured {
  border-color: rgba(249,115,22,0.25);
  box-shadow: var(--accent-glow);
}
.rank-card.featured:hover {
  box-shadow: 0 0 32px rgba(249,115,22,0.3);
}
.rank-number {
  position: absolute;
  top: 12px; left: 16px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}
.rank-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 8px;
}
.card-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.card-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

/* Mini score ring */
.mini-ring {
  width: 72px; height: 72px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-ring svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.mini-ring .ring-bg { stroke: #2a2a2a; }
.mini-ring .ring-fill { stroke: var(--accent); stroke-linecap: round; }
.mini-ring .mini-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

/* Rating bars (shared: homepage + posts) */
.rating-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.rating-item,
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.rating-label {
  font-size: 13px;
  color: var(--text-secondary);
  width: 56px;
  flex-shrink: 0;
  display: flex; justify-content: space-between;
}
.rating-track {
  flex: 1;
  height: 6px;
  background: #2a2a2a;
  border-radius: 999px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.6s ease;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}
.card-summary {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- CRITERIA BAR ---------- */
.criteria-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.criteria-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  margin-right: 8px;
}
.criteria-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.criteria-pill {
  background: var(--bg-elevated);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}
.criteria-pill span {
  color: var(--accent);
  font-weight: 700;
  margin-left: 4px;
}

/* ---------- ARTICLES LIST (Homepage) ---------- */
.articles-list { display: flex; flex-direction: column; }
.article-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.article-row:hover { background: rgba(255,255,255,0.02); }
.article-row:last-child { border-bottom: none; }
.article-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.article-cat.cat-recommend,
.article-cat.cat-机场推荐 { background: var(--accent); color: #fff; }
.article-cat.cat-tutorial,
.article-cat.cat-教程 { background: var(--gold-dim); color: var(--gold); }
.article-cat.cat-guide { background: var(--bg-elevated); color: var(--text-secondary); }
.article-content { flex: 1; min-width: 0; }
.article-title-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.article-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-date {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ---------- POST (Article Detail) ---------- */
.post-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
}
.post-header { margin-bottom: 32px; }
.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.post-meta {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-meta a { color: var(--accent); }

/* Post body typography */
.post-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
  font-family: var(--font-display);
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
}
.post-body h2 {
  font-size: 22px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.post-body h3 { font-size: 18px; }
.post-body p { margin-bottom: 16px; }
.post-body a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  transition: color 0.2s, border-color 0.2s;
}
.post-body a:hover {
  color: #ea580c;
  border-bottom-color: var(--accent);
}
.post-body ul, .post-body ol {
  margin: 0 0 16px 24px;
  color: var(--text-secondary);
}
.post-body li { margin-bottom: 6px; }
.post-body strong { color: var(--text-primary); font-weight: 600; }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 16px 0;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-secondary);
}

/* Tables */
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}
.post-body th {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
}
.post-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.post-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.post-body tr:hover td { background: rgba(255,255,255,0.04); }

/* Compare status badges in tables */
.compare-ok, .status-ok { color: var(--green); font-weight: 700; }
.compare-warn, .status-warn { color: var(--amber); font-weight: 700; }
.compare-bad, .status-bad { color: var(--red); font-weight: 700; }

/* Badge recommend */
.badge-recommend {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

/* Pros & Cons */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.pros, .cons { padding: 20px 24px; }
.pros {
  background: var(--green-dim);
  border: 1px solid rgba(102,187,106,0.15);
  border-right: none;
}
.cons {
  background: var(--red-dim);
  border: 1px solid rgba(239,83,80,0.15);
  border-left: none;
}
.proscons-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pros .proscons-title { color: var(--green); }
.cons .proscons-title { color: var(--red); }
.proscons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.proscons-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Post navigation (prev/next) */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.post-nav-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.post-nav-item:hover { border-color: var(--accent); }
.post-nav-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---------- PAGE (About etc.) ---------- */
.page-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.sidebar-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-section { margin-bottom: 24px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-section-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sidebar-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li { margin-bottom: 12px; }
.sidebar-list a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color 0.2s;
}
.sidebar-list a:hover { color: var(--accent); }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.sidebar-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* TOC in sidebar */
.toc,
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}
.toc .toc-item { margin-bottom: 4px; }
.toc .toc-link {
  color: var(--text-secondary);
  transition: color 0.2s;
  display: block;
  padding: 3px 8px;
  border-radius: 6px;
}
.toc .toc-link:hover { color: var(--accent); background: var(--bg-elevated); }
.toc .toc-link.active { color: var(--accent); }
.toc .toc-number { display: none; }
.toc .toc-child {
  padding-left: 14px;
  margin: 2px 0 0;
}

/* ---------- ARCHIVE / CATEGORY / TAG ---------- */
.archive-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}
.archive-list { display: flex; flex-direction: column; }
.archive-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.archive-item:last-child { border-bottom: none; }
.archive-item-date {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  width: 100px;
  flex-shrink: 0;
}
.archive-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.archive-item-title:hover { color: var(--accent); }
.archive-item-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* ---------- PAGINATION ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-display);
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.active { display: flex; }
.search-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  width: 90%;
  max-width: 560px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--text-primary);
}
.search-input::placeholder { color: var(--text-muted); }
.search-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 8px;
  cursor: pointer;
}
.search-results {
  max-height: 400px;
  overflow-y: auto;
}
.search-results a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.15s;
  margin-bottom: 4px;
}
.search-results a:hover { background: var(--bg-elevated); }
.search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.search-result-snippet {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.search-result-snippet em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}
.footer-copy p + p { margin-top: 4px; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px; height: 40px;
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
  z-index: 50;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--bg-elevated); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 48px 0 32px; }
  .hero-buttons { justify-content: center; }
  .hero-title { font-size: 36px; }
  .top3-grid { grid-template-columns: 1fr; }
  .criteria-bar { flex-direction: column; align-items: flex-start; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .nav-links { display: none; }
  .post-block, .page-block { padding: 24px; }
  .proscons { grid-template-columns: 1fr; }
  .pros { border-right: 1px solid rgba(102,187,106,0.15); border-radius: var(--radius) var(--radius) 0 0; }
  .cons { border-left: 1px solid rgba(239,83,80,0.15); border-radius: 0 0 var(--radius) var(--radius); }
  .post-nav { grid-template-columns: 1fr; }
}
