/*
Theme Name: Nexgadgets
Theme URI: https://nexgadgets.com
Author: Nexgadgets / Milo
Description: Premium editorial design system for Nexgadgets — a light everyday-tech news + review hub. One electric-blue accent, self-hosted Space Grotesk + Space Mono, editor-led homepage, ranked roundups, head-to-head comparisons, and a transparent E-E-A-T scoring framework.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: nexgadgets
Tags: news, blog, review
*/

/* ============================================================
   Nexgadgets — Light Premium Editorial design system
   One accent: electric blue. One theme: light. No em-dashes.
   ============================================================ */

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("assets/fonts/SpaceMono.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Color tokens */
  --bg: #f7f7f8;                 /* neutral off-white (not warm cream) */
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --ink: #0d1321;                /* near-black text */
  --ink-2: #47505f;              /* secondary */
  --ink-3: #8a93a3;              /* muted */
  --line: rgba(13, 19, 33, 0.10);
  --line-soft: rgba(13, 19, 33, 0.06);

  --accent: #1a5cff;             /* electric blue */
  --accent-ink: #fff;
  --accent-strong: #1348d6;      /* hover */
  --accent-tint: rgba(26, 92, 255, 0.09);

  /* Score tiers (all in the accent family; label carries meaning) */
  --sc-1: #0a54e8;
  --sc-2: #1a5cff;
  --sc-3: #3f74ff;
  --sc-4: #6f94ff;
  --sc-5: #9db4f7;

  /* Radii: one system */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow (tinted to light bg, not pure black) */
  --sh-sm: 0 1px 2px rgba(13, 19, 33, 0.05);
  --sh-md: 0 8px 24px -12px rgba(13, 19, 33, 0.18);
  --sh-lg: 0 24px 60px -28px rgba(13, 19, 33, 0.28);

  --container: 1180px;
}

/* ---------------------------- Reset ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------------------------- Type ---------------------------- */
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.display-1 {
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0.2em 0 0.4em;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.muted { color: var(--ink-2); }
.mono { font-family: "Space Mono", monospace; }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1), background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 20px -10px rgba(26,92,255,0.6);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-narrow { padding: 9px 14px; font-size: 14px; }

/* ---------------------------- Navbar ---------------------------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,247,248,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a5cff, #0a54e8);
  display: grid; place-items: center;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 15px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s;
}
.icon-btn:hover { border-color: var(--ink-2); }

/* ---------------------------- Hero ---------------------------- */
.hero {
  padding: 64px 0 44px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.searchbar {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 18px;
  box-shadow: var(--sh-sm);
}
.searchbar input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
}
.searchbar input::placeholder { color: var(--ink-3); }
.hero-trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--ink-2);
  font-size: 14px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }

.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  background: #e9edf5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .panel {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 16px 18px;
  background: rgba(13,19,33,0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--r-md);
}
.hero-visual .panel .p-kicker {
  font-family: "Space Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-visual .panel h3 { margin: 6px 0 0; font-size: 1.15rem; line-height: 1.2; }

/* ---------------------------- Chips / categories ---------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  background: var(--surface);
  transition: all 0.16s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------------------------- Sections ---------------------------- */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-head .sub { color: var(--ink-2); margin: 8px 0 0; font-size: 16px; }

/* ---------------------------- Cards ---------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--line);
}
.card-img { aspect-ratio: 16 / 10; overflow: hidden; background: #e9edf5; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 20px 20px 22px; }
.card-kicker {
  font-family: "Space Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.card-title { font-size: 1.25rem; font-weight: 600; line-height: 1.25; margin: 8px 0 8px; }
.card-text { color: var(--ink-2); font-size: 15px; margin: 0 0 14px; }
.card-meta { display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 13px; }
.byline { display: flex; align-items: center; gap: 8px; }

/* news grid */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid .lead { grid-column: span 1; }
.news-lead {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.news-lead .nl-img { position: relative; min-height: 260px; }
.news-lead .nl-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-lead .nl-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }

/* ---------------------------- Ranked list (roundups) ---------------------------- */
.roundup { display: flex; flex-direction: column; gap: 0; }
.ranked {
  display: grid;
  grid-template-columns: 84px 1fr 1.6fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}
.ranked:first-child { border-top: 0; }
.rank-num {
  font-family: "Space Mono", monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
}
.ranked:nth-child(1) .rank-num,
.ranked:nth-child(2) .rank-num,
.ranked:nth-child(3) .rank-num { color: var(--accent); }
.ranked .thumb {
  width: 96px; height: 72px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: #e9edf5;
}
.ranked h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 4px; }
.ranked .feat-list { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--ink-2); font-size: 13.5px; }
.ranked .feat-list span::before { content: "\2713"; color: var(--accent); margin-right: 6px; font-weight: 700; }
.score-col { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; min-width: 120px; }
.score-badge {
  font-family: "Space Mono", monospace;
  display: flex; align-items: baseline; gap: 5px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: var(--accent-tint);
  border: 1px solid rgba(26,92,255,0.18);
}
.score-badge .n { font-size: 1.5rem; font-weight: 700; color: var(--sc-1); }
.score-badge .max { font-size: 0.85rem; color: var(--ink-3); }
.score-label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }

/* ---------------------------- Comparison strip ---------------------------- */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compare-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px;
}
.compare-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.vs-pill {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  background: var(--ink); color: #fff;
  padding: 5px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.vs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.vs-item { background: var(--surface-2); border-radius: var(--r-sm); padding: 12px; }
.vs-item .vm { font-size: 13px; color: var(--ink-3); }
.vs-item .vn { font-size: 1.4rem; font-weight: 700; }
.vs-item .vs { font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.vs-bars { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.vs-bar { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; font-size: 13px; }
.vs-bar .track { position: relative; height: 7px; border-radius: 10px; background: rgba(13,19,33,0.08); }
.vs-bar .fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 10px; background: var(--accent); }
.vs-bar .lbl { color: var(--ink-2); font-size: 12.5px; }

/* ---------------------------- Category bento ---------------------------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; gap: 18px; }
.bento-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.bento-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bento-cell::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,19,33,0.02), rgba(13,19,33,0.62)); }
.bento-cell .bc-inner { position: relative; z-index: 2; }
.bento-cell .count { font-family: "Space Mono", monospace; font-size: 13px; opacity: 0.82; }
.bento-cell h3 { margin: 3px 0 0; font-size: 1.25rem; font-weight: 600; }
.bento-cell.big { grid-column: span 2; grid-row: span 2; }
.bento-cell.big h3 { font-size: 1.6rem; }
.bento-cta {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a5cff, #0a54e8);
  border-radius: var(--r-md);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  animation: none;
}
.bento-cta h3 { margin: 0; font-size: 1.35rem; }
.bento-cta p { margin: 4px 0 0; color: rgba(255,255,255,0.78); font-size: 14.5px; }
.bento-cta .btn { background: #fff; color: var(--accent); }
.bento-cta .btn:hover { background: #f2f6ff; }
@media (max-width: 720px) {
  .bento-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------- Trust / how we score ---------------------------- */
.trust {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.trust h2 { font-size: 2rem; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 12px; }
.trust p { color: rgba(255,255,255,0.72); max-width: 56ch; }
.trust .tier {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
}
.trust .tier + .tier { margin-top: 14px; }
.trust .tier .t-ic { font-size: 1.6rem; }
.trust .tier h4 { margin: 0 0 4px; font-size: 1.05rem; }
.trust .tier p { font-size: 14.5px; margin: 0; color: rgba(255,255,255,0.7); }

/* ---------------------------- Newsletter ---------------------------- */
.newsletter {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px;
}
.newsletter h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.newsletter p { color: var(--ink-2); margin: 0 auto 26px; max-width: 52ch; }
.sub-form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto;
}
.sub-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 15px;
  background: var(--surface);
  outline: none;
  font-family: inherit;
}
.sub-form input:focus { border-color: var(--accent); }

/* ---------------------------- Footer ---------------------------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 36px;
  color: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h5 { color: var(--ink); font-size: 14px; letter-spacing: 0.02em; margin: 0 0 12px; }
.footer a { display: block; font-size: 14.5px; margin: 0 0 8px; color: var(--ink-2); }
.footer a:hover { color: var(--ink); }
.footer .brand { font-size: 1.15rem; margin-bottom: 12px; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-lead { grid-template-columns: 1fr; }
  .news-lead .nl-img { min-height: 200px; }
  .compare-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ranked { grid-template-columns: 52px 1fr auto; }
  .ranked .feat-list { grid-column: 2 / span 2; }
  .ranked .thumb { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell.wide, .bento-cell.fill { grid-column: span 1; grid-row: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
  .card:hover, .bento-cell:hover { transform: none; }
}

/* ---------------------------- Header search ---------------------------- */
.nav-search { background:#fff; border-bottom:1px solid var(--line); padding:14px 0; }
.nav-search[hidden] { display:none; }
.nav-search .searchbar { margin:0; }

/* ---------------------------- Single article ---------------------------- */
.article-single { max-width:800px; }
.article-wrap { background:#fff; border:1px solid var(--line-soft); border-radius:var(--r-lg); padding:40px 44px 44px; box-shadow:var(--sh-sm); }
.post-hero { margin-bottom:24px; }
.post-title { font-size:clamp(1.8rem,3.6vw,2.8rem); font-weight:600; letter-spacing:-0.02em; line-height:1.12; margin:10px 0 14px; }
.post-meta { display:flex; align-items:center; gap:9px; flex-wrap:wrap; color:var(--ink-3); font-size:13.5px; }
.post-meta .dot { opacity:0.6; }
.post-figure { margin:18px 0 26px; border-radius:var(--r-md); overflow:hidden; }
.post-figure img { width:100%; height:auto; }

/* Entry content typography */
.entry-content { color:var(--ink); font-size:17.5px; line-height:1.75; }
.entry-content > * + * { margin-top:1.1em; }
.entry-content h2 { font-size:1.7rem; font-weight:600; letter-spacing:-0.01em; margin:1.4em 0 0.5em; }
.entry-content h3 { font-size:1.35rem; font-weight:600; margin:1.3em 0 0.4em; }
.entry-content p { max-width:70ch; }
.entry-content a { color:var(--accent); text-decoration:underline; text-underline-offset:2px; }
.entry-content ul, .entry-content ol { padding-left:1.25em; }
.entry-content li { margin-bottom:0.4em; }
.entry-content blockquote { border-left:3px solid var(--accent); padding-left:18px; margin:1.4em 0; color:var(--ink-2); font-style:italic; }
.entry-content img { border-radius:var(--r-md); }
.entry-content table { width:100%; border-collapse:collapse; margin:1.4em 0; font-size:15px; }
.entry-content th, .entry-content td { padding:10px 12px; border-bottom:1px solid var(--line); text-align:left; }
.entry-content .wp-block-table th { background:var(--surface-2); }

.post-footer { margin-top:32px; padding-top:22px; border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; }
.tag-row a { font-size:13px; color:var(--ink-2); background:var(--surface-2); border:1px solid var(--line); padding:5px 12px; border-radius:var(--r-pill); }
.tag-row a:hover { color:var(--accent); border-color:var(--accent); }

/* ---------------------------- Method banner ---------------------------- */
.method-banner { display:flex; gap:12px; align-items:flex-start; background:var(--accent-tint); border:1px solid rgba(26,92,255,0.2); border-radius:var(--r-md); padding:14px 16px; margin-bottom:22px; }
.method-banner i { font-size:1.3rem; color:var(--accent); }
.method-banner p { margin:0; font-size:14.5px; color:var(--ink-2); }
.method-banner a { color:var(--accent); }
.method-banner.methods-on { background:rgba(16,163,74,0.08); border-color:rgba(16,163,74,0.22); }
.method-banner.methods-on i { color:#0c9b4e; }

/* ---------------------------- Review verdict ---------------------------- */
.verdict { display:grid; grid-template-columns:240px 1fr; gap:28px; align-items:center; background:var(--surface-2); border:1px solid var(--line-soft); border-radius:var(--r-lg); padding:26px 28px; margin-bottom:26px; }
.verdict-score { display:flex; flex-direction:column; gap:10px; align-items:center; text-align:center; border-right:1px solid var(--line); padding-right:26px; }
.verdict-score .score-badge { transform:scale(1.15); }
.verdict-copy .v-pair + .v-pair { margin-top:14px; }
.v-pair strong { font-size:14px; letter-spacing:0.02em; }
.v-pair p { margin:4px 0 0; color:var(--ink-2); font-size:15px; }

/* ---------------------------- Pros & cons ---------------------------- */
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:26px; }
.pc { background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--r-md); padding:20px 22px; }
.pc h3 { margin:0 0 12px; font-size:1.05rem; font-weight:600; }
.pc ul { margin:0; padding:0; list-style:none; }
.pc li { position:relative; padding-left:26px; margin-bottom:9px; font-size:15px; color:var(--ink-2); }
.pc li::before { position:absolute; left:0; top:2px; font-weight:700; }
.pc.pros li::before { content:"\2713"; color:#0c9b4e; }
.pc.cons li::before { content:"\2715"; color:#d64545; }

/* ---------------------------- Buy box ---------------------------- */
.buy-box { display:flex; justify-content:space-between; align-items:center; gap:20px; background:var(--accent-tint); border:1px solid rgba(26,92,255,0.18); border-radius:var(--r-lg); padding:20px 24px; margin-top:26px; }

/* ---------------------------- Review card ---------------------------- */
.review-card .review-card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.review-card .score-badge { padding:4px 9px; }
.review-card .score-badge .n { font-size:1.1rem; }
.review-card .score-badge .max { font-size:0.75rem; }

/* ---------------------------- Archive / pagination / 404 ---------------------------- */
.archive-page { padding:48px 0 64px; }
.pagination { margin-top:40px; }
.pagination .nav-links { display:flex; gap:8px; }
.pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 10px; border:1px solid var(--line); border-radius:var(--r-sm); color:var(--ink-2); font-weight:600; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
.notfound { max-width:600px; }
.notfound .display-1 { font-size:clamp(2rem,4vw,3rem); }

@media (max-width:900px) {
  .article-wrap { padding:26px 22px 30px; }
  .verdict { grid-template-columns:1fr; text-align:center; }
  .verdict-score { border-right:0; padding-right:0; }
  .verdict-copy { text-align:left; }
  .pros-cons { grid-template-columns:1fr; }
  .buy-box { flex-direction:column; align-items:flex-start; text-align:left; }
}

/* ---------------------------- Related reading (internal links) ---------------------------- */
.related { margin-top:40px; padding-top:28px; border-top:1px solid var(--line-soft); }
.related h2 { font-size:1.4rem; font-weight:600; margin:0 0 18px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.related-card { display:flex; flex-direction:column; gap:0; background:var(--surface-2); border:1px solid var(--line-soft); border-radius:var(--r-md); overflow:hidden; transition:transform .2s, box-shadow .2s; }
.related-card:hover { transform:translateY(-3px); box-shadow:var(--sh-md); }
.related-card img { width:100%; height:130px; object-fit:cover; }
.related-card .rc-kicker { font-family:"Space Mono",monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--accent); padding:11px 12px 0; }
.related-card .rc-title { padding:4px 12px 13px; font-weight:600; font-size:14.5px; line-height:1.35; color:var(--ink); }
.related-card:hover .rc-title { color:var(--accent); }

/* ---------------------------- FAQ block ---------------------------- */
.faq { margin-top:40px; padding-top:28px; border-top:1px solid var(--line-soft); }
.faq h2 { font-size:1.4rem; font-weight:600; margin:0 0 14px; }
.faq-item { border:1px solid var(--line-soft); border-radius:var(--r-sm); padding:14px 18px; margin-bottom:10px; background:var(--surface-2); }
.faq-item summary { cursor:pointer; font-weight:600; font-size:15.5px; }
.faq-item summary::marker { color:var(--accent); }
.faq-item p { margin:9px 0 0; color:var(--ink-2); font-size:15px; }

@media (max-width:720px) { .related-grid { grid-template-columns:1fr; } }
