/* ============================================================
   Printer Society — Main Stylesheet
   Design: Technical Editorial
   Fonts: Syne (display) · Lora (body) · Space Mono (specs)
   ============================================================ */


/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --ps-black:         #0D0D0D;
  --ps-near-black:    #111118;
  --ps-white:         #FAFAF8;
  --ps-orange:        #FF4500;
  --ps-orange-dark:   #D93C00;
  --ps-orange-light:  #FFF3EE;
  --ps-orange-muted:  #FFE4D6;
  --ps-blue:          #0057FF;
  --ps-blue-light:    #EEF3FF;
  --ps-green:         #00A550;
  --ps-green-light:   #E6F7EF;
  --ps-red:           #D92D20;
  --ps-red-light:     #FEE4E2;
  --ps-yellow:        #F59E0B;
  --ps-yellow-light:  #FFFBEB;

  /* Neutrals */
  --ps-surface:       #F3F2EF;
  --ps-surface-alt:   #ECEAE6;
  --ps-border:        #E0DED8;
  --ps-border-strong: #C8C6BF;
  --ps-text:          #1C1C1E;
  --ps-text-muted:    #6B6B7A;
  --ps-text-faint:    #9B9BA4;

  /* Typography */
  --font-display:     'Syne', sans-serif;
  --font-body:        'Lora', Georgia, serif;
  --font-mono:        'Space Mono', 'Courier New', monospace;
  --font-ui:          system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.14);

  /* Layout */
  --container:    1200px;
  --content-max:  760px;
  --header-h:     64px;
}


/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ps-text);
  background: var(--ps-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ps-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ps-orange); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }


/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-2) var(--space-4);
  background: var(--ps-orange);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }


/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--space-4); }
}


/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ps-orange);
  color: #fff;
  border-color: var(--ps-orange);
}
.btn--primary:hover {
  background: var(--ps-orange-dark);
  border-color: var(--ps-orange-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,69,0,0.30);
}

.btn--outline {
  background: transparent;
  color: var(--ps-text);
  border-color: var(--ps-border-strong);
}
.btn--outline:hover {
  background: var(--ps-surface);
  color: var(--ps-text);
  border-color: var(--ps-text);
}

.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.btn--sm  { padding: 7px 14px; font-size: 0.8125rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }


/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ps-near-black);
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.40);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}


/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ps-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
}
.site-logo__text {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}
.site-logo__text strong {
  font-weight: 700;
  color: #fff;
}
.site-logo--footer .site-logo__text { color: rgba(255,255,255,0.6); }
.site-logo--footer .site-logo__text strong { color: #fff; }


/* Primary Nav */
.site-nav { flex: 1; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.site-nav__list a {
  display: block;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
  color: #fff;
  background: rgba(255,255,255,0.08);
}


/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}
.search-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.search-toggle:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mobile-menu-toggle { display: none; }


/* Search Drawer */
.search-drawer {
  background: var(--ps-near-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-4) 0;
  display: none;
}
.search-drawer.is-open {
  display: block;
}
.search-drawer .search-form {
  display: flex;
  gap: var(--space-2);
}
.search-drawer .search-field {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1rem;
}
.search-drawer .search-field::placeholder { color: rgba(255,255,255,0.40); }
.search-drawer .search-field:focus { outline: 2px solid var(--ps-orange); outline-offset: 2px; border-color: transparent; }
.search-drawer .search-submit {
  padding: 10px 20px;
  background: var(--ps-orange);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-ui);
}


/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ps-near-black);
  overflow: hidden;
  padding: var(--space-20) 0 var(--space-16);
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Subtle engineering grid overlay */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}
.hero__bg-grid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ps-orange), transparent);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: var(--space-4);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero__headline em {
  font-style: normal;
  color: var(--ps-orange);
}
.hero__subhead {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: var(--space-8);
}
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.hero__featured-card {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero__featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.50);
  border-color: rgba(255,69,0,0.30);
}
.hero__featured-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.hero__featured-body {
  padding: var(--space-5) var(--space-6);
}
.hero__featured-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: var(--space-2) 0 var(--space-3);
  letter-spacing: -0.02em;
}
.hero__featured-score {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
}
.hero__featured-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ps-orange);
}


/* Hero fallback visual (engineering diagram shown when no featured post) */
.hero__visual-fallback {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.hero__visual-svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero__visual-label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,69,0,0.5);
}


/* ── Quick Picks ───────────────────────────────────────────── */
.quick-picks {
  padding: var(--space-16) 0;
  background: var(--ps-white);
  border-bottom: 1px solid var(--ps-border);
}
.quick-picks__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ps-text);
  margin-bottom: var(--space-8);
}
.quick-picks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pick-card {
  position: relative;
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pick-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pick-card__award {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  background: var(--ps-near-black);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.pick-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--ps-surface);
}
.pick-card__body {
  padding: var(--space-5);
  flex: 1;
}
.pick-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ps-text);
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.pick-card__title:hover { color: var(--ps-orange); }
.pick-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.pick-card__score {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ps-text-muted);
}
.pick-card__price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 0;
}
.pick-card__footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--ps-border);
  display: flex;
  gap: var(--space-2);
}


/* ── Section Header ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.section-header__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ps-text);
}
.section-header__link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ps-orange);
  text-decoration: none;
}
.section-header__link:hover { text-decoration: underline; color: var(--ps-orange-dark); }


/* ── Article Grid ──────────────────────────────────────────── */
.latest-articles {
  padding: var(--space-20) 0;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.article-grid--archive {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.article-card {
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card__image-link { display: block; text-decoration: none; }
.article-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ps-surface);
}
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-card__image img { transform: scale(1.03); }
.article-card__award {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--ps-near-black);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.article-card__body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.article-card__meta { display: flex; align-items: center; gap: var(--space-3); }
.article-card__cat {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ps-orange);
  text-decoration: none;
}
.article-card__cat:hover { color: var(--ps-orange-dark); }
.article-card__reading-time {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--ps-text-faint);
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  flex: 1;
}
.article-card__title a { color: var(--ps-text); text-decoration: none; }
.article-card__title a:hover { color: var(--ps-orange); }
.article-card__excerpt {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ps-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__score { display: flex; align-items: center; gap: var(--space-2); font-family: var(--font-mono); font-size: 0.8125rem; color: var(--ps-text-muted); margin-top: auto; }


/* ── Trust Section ─────────────────────────────────────────── */
.trust-section {
  padding: var(--space-20) 0;
  background: var(--ps-near-black);
}
.trust-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.trust-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: var(--space-3);
}
.trust-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.trust-section__body {
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Outline button on dark trust section — needs explicit white */
.trust-section .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.trust-section .btn--outline:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: #fff;
}
.trust-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.trust-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.trust-stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ps-orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat__label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}


/* ── Category Browse ───────────────────────────────────────── */
.category-browse {
  padding: var(--space-20) 0;
  background: var(--ps-white);
}
.category-browse__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); background: var(--ps-white); }
.cat-card__icon { width: 32px; height: 32px; color: var(--ps-orange); }
.cat-card__icon svg { width: 100%; height: 100%; }
.cat-card__label { font-family: var(--font-ui); font-size: 0.8125rem; font-weight: 700; color: var(--ps-text); text-align: center; }
.cat-card__count { font-family: var(--font-ui); font-size: 0.75rem; color: var(--ps-text-faint); }


/* ── Stars ─────────────────────────────────────────────────── */
.ps-stars { display: inline-flex; gap: 2px; align-items: center; }
.star { fill: var(--ps-border-strong); flex-shrink: 0; }
.star--full  { fill: var(--ps-yellow); }
.star--half  { fill: url(#half-star-grad); }


/* ── Score Badge ───────────────────────────────────────────── */
.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: var(--ps-near-black);
  border-radius: var(--radius-md);
  padding: 6px 12px;
}
.score-badge--excellent { background: var(--ps-green); }
.score-badge--good      { background: var(--ps-blue); }
.score-badge--average   { background: var(--ps-yellow); }
.score-badge--poor      { background: var(--ps-red); }
.score-badge__number {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.score-badge__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}


/* ── Award Badge ───────────────────────────────────────────── */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--ps-near-black);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.award-badge::before { content: '🏆'; font-size: 0.75rem; }
.award-badge--large { font-size: 0.75rem; padding: 5px 14px; }


/* ── Article Layout ────────────────────────────────────────── */
.article-main { padding-top: var(--space-8); padding-bottom: var(--space-20); }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--space-12);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.article-body { min-width: 0; }


/* Breadcrumb */
.breadcrumb { margin-bottom: var(--space-6); }
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--ps-text-muted);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: var(--space-2);
  color: var(--ps-border-strong);
}
.breadcrumb a { color: var(--ps-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ps-orange); }
.breadcrumb [aria-current="page"] { color: var(--ps-text); }


/* Article Header */
.article-header { margin-bottom: var(--space-8); }
.article-header__type {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: var(--space-3);
}
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ps-text);
  margin-bottom: var(--space-5);
}
.article-header__score { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-5); }


/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.article-meta__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ps-text);
  text-decoration: none;
}
.article-meta__author:hover { color: var(--ps-orange); }
.article-meta__avatar { border-radius: 50%; object-fit: cover; }
.article-meta__divider { width: 1px; height: 14px; background: var(--ps-border-strong); }
.article-meta__date,
.article-meta__updated,
.article-meta__reading-time {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--ps-text-muted);
}
.article-meta__updated::before { content: 'Updated '; }


/* Featured Image */
.article-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-8);
}
.article-hero-image img { width: 100%; height: 480px; object-fit: cover; }
.article-hero-image figcaption {
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--ps-text-muted);
  background: var(--ps-surface);
  text-align: center;
}


/* ── Verdict Box ───────────────────────────────────────────── */
.verdict-box {
  background: var(--ps-surface);
  border: 2px solid var(--ps-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-10);
}
.verdict-box--top { border-color: var(--ps-orange); }
.verdict-box__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--ps-orange);
  border-bottom: none;
}
.verdict-box__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.verdict-box__product {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}
.verdict-box__body {
  padding: var(--space-6);
  display: flex;
  gap: var(--space-6);
}
.verdict-box__image { flex-shrink: 0; width: 200px; }
.verdict-box__image img { border-radius: var(--radius-md); }
.verdict-box__content { flex: 1; }
.verdict-box__score-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.verdict-box__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.verdict-box__summary {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ps-text-muted);
  margin-bottom: var(--space-5);
  font-style: italic;
}
.verdict-box__cta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.verdict-box__price {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ps-text);
}


/* ── Pros / Cons ───────────────────────────────────────────── */
.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pros-list li,
.cons-list li {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: var(--space-5);
  position: relative;
  color: var(--ps-text);
}
.pros-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--ps-green);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3.5 3.5L12 4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3.5 3.5L12 4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.cons-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--ps-red);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l8 8M11 3l-8 8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l8 8M11 3l-8 8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.pros-cons-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--ps-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ps-border);
}
.pros-cons-block__heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.pros-cons-block__heading--pros { color: var(--ps-green); }
.pros-cons-block__heading--cons { color: var(--ps-red); }


/* ── Affiliate Box ─────────────────────────────────────────── */
.affiliate-box {
  position: relative;
  border: 2px solid var(--ps-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: var(--space-8) 0;
  background: var(--ps-white);
  transition: box-shadow 0.2s;
}
.affiliate-box:hover { box-shadow: var(--shadow-lg); }
.affiliate-box__badge {
  background: var(--ps-orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px var(--space-4);
  text-align: center;
}
.affiliate-box__inner {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  flex-wrap: wrap;
}
.affiliate-box__image { flex-shrink: 0; width: 100px; }
.affiliate-box__image img { border-radius: var(--radius-md); }
.affiliate-box__info { flex: 1; min-width: 200px; }
.affiliate-box__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ps-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.affiliate-box__rating { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); }
.affiliate-box__score { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--ps-text-muted); }
.affiliate-box__excerpt { font-family: var(--font-ui); font-size: 0.875rem; color: var(--ps-text-muted); }
.affiliate-box__cta { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-2); flex-shrink: 0; }
.affiliate-box__price { font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--ps-text); }


/* ── Article Content Typography ────────────────────────────── */
.article-content {
  max-width: var(--content-max);
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ps-text);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  padding-top: var(--space-5);
  border-top: 2px solid var(--ps-border);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ps-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.article-content h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.article-content p {
  margin-bottom: var(--space-5);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ps-text);
}
.article-content a { color: var(--ps-blue); }
.article-content a:hover { color: var(--ps-orange); }
.article-content strong { font-weight: 700; color: var(--ps-text); }
.article-content em { font-style: italic; }
.article-content ul,
.article-content ol {
  margin: var(--space-5) 0;
  padding-left: var(--space-6);
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  margin-bottom: var(--space-2);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.article-content li::marker { color: var(--ps-orange); }
.article-content blockquote {
  margin: var(--space-8) 0;
  padding: var(--space-5) var(--space-6);
  background: var(--ps-surface);
  border-left: 4px solid var(--ps-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content blockquote p { font-style: italic; font-size: 1.125rem; margin-bottom: 0; color: var(--ps-text); }
.article-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--ps-surface);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--ps-text);
}
.article-content pre {
  background: var(--ps-near-black);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-6) 0;
}
.article-content pre code { background: none; padding: 0; color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.article-content img { border-radius: var(--radius-md); margin: var(--space-6) 0; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-8) 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.article-content table th {
  background: var(--ps-near-black);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.article-content table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--ps-border);
  vertical-align: top;
}
.article-content table tr:hover td { background: var(--ps-surface); }
.article-content hr { border: none; border-top: 2px solid var(--ps-border); margin: var(--space-10) 0; }


/* Comparison table wrapper */
.comparison-table-wrap { margin: var(--space-8) 0; }
.comparison-table-wrap__caption { font-family: var(--font-ui); font-size: 0.875rem; color: var(--ps-text-muted); margin-bottom: var(--space-3); }
.comparison-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table-scroll table th:first-child,
.comparison-table-scroll table td:first-child { position: sticky; left: 0; background: var(--ps-white); z-index: 1; }
.comparison-table-scroll table tr:hover td:first-child { background: var(--ps-surface); }


/* Spec table */
.spec-table { margin: var(--space-8) 0; border: 1px solid var(--ps-border); border-radius: var(--radius-lg); overflow: hidden; }
.spec-table__header {
  padding: var(--space-3) var(--space-5);
  background: var(--ps-near-black);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.spec-table table { width: 100%; border-collapse: collapse; }
.spec-table th {
  width: 40%;
  padding: var(--space-3) var(--space-5);
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ps-text-muted);
  background: var(--ps-surface);
  border-bottom: 1px solid var(--ps-border);
}
.spec-table td {
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--ps-text);
  border-bottom: 1px solid var(--ps-border);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }


/* Alert boxes */
.alert {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  margin: var(--space-6) 0;
  border: 1px solid;
}
.alert--tip       { background: var(--ps-green-light);  border-color: var(--ps-green);  color: var(--ps-text); }
.alert--warning   { background: var(--ps-yellow-light); border-color: var(--ps-yellow); color: var(--ps-text); }
.alert--info      { background: var(--ps-blue-light);   border-color: var(--ps-blue);   color: var(--ps-text); }
.alert--important { background: var(--ps-red-light);    border-color: var(--ps-red);    color: var(--ps-text); }
.alert__icon { flex-shrink: 0; margin-top: 2px; }
.alert--tip .alert__icon     { color: var(--ps-green); }
.alert--warning .alert__icon { color: var(--ps-yellow); }
.alert--info .alert__icon    { color: var(--ps-blue); }
.alert--important .alert__icon { color: var(--ps-red); }
.alert__title { display: block; font-family: var(--font-ui); font-size: 0.875rem; font-weight: 700; margin-bottom: var(--space-1); }
.alert__content { font-family: var(--font-ui); font-size: 0.9rem; line-height: 1.6; }


/* ── Table of Contents ─────────────────────────────────────── */
.toc-container {
  background: var(--ps-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
}
.toc-container:empty { display: none; }
.toc-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-text-muted);
  margin-bottom: var(--space-4);
}
.toc-list { list-style: none; counter-reset: toc-counter; }
.toc-list li {
  counter-increment: toc-counter;
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--ps-border);
}
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--ps-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color 0.15s;
}
.toc-list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ps-orange);
  flex-shrink: 0;
}
.toc-list a:hover { color: var(--ps-orange); }
.toc-list a.is-active { color: var(--ps-orange); font-weight: 600; }


/* Sticky sidebar TOC */
.article-toc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-6));
  max-height: calc(100vh - var(--header-h) - var(--space-12));
  overflow-y: auto;
  scrollbar-width: thin;
}
.toc-sidebar__inner {
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.toc-sidebar__title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-text-muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--ps-border);
}
.toc-sidebar__list { list-style: none; }
.toc-sidebar__list li { border-bottom: 1px solid var(--ps-border); }
.toc-sidebar__list li:last-child { border-bottom: none; }
.toc-sidebar__list a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--ps-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  line-height: 1.4;
  transition: color 0.15s, padding-left 0.15s;
}
.toc-sidebar__list a:hover { color: var(--ps-orange); }
.toc-sidebar__list a.is-active { color: var(--ps-orange); font-weight: 600; padding-left: var(--space-2); border-left: 2px solid var(--ps-orange); }
.toc-sidebar__list .toc-h3 a { padding-left: var(--space-4); font-size: 0.75rem; }


/* ── Final Verdict ─────────────────────────────────────────── */
.final-verdict {
  background: var(--ps-near-black);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  margin: var(--space-12) 0;
}
.final-verdict__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.final-verdict__score { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.final-verdict__text { font-family: var(--font-ui); font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: var(--space-6); }


/* ── Author Bio ────────────────────────────────────────────── */
.author-bio {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--ps-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ps-border);
  margin: var(--space-12) 0;
}
.author-bio__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio__label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ps-text-muted); margin-bottom: var(--space-1); }
.author-bio__name { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ps-text); text-decoration: none; margin-bottom: var(--space-2); }
.author-bio__name:hover { color: var(--ps-orange); }
.author-bio__bio { font-family: var(--font-ui); font-size: 0.9rem; line-height: 1.65; color: var(--ps-text-muted); }


/* ── Related Posts ─────────────────────────────────────────── */
.related-posts { margin: var(--space-12) 0; padding-top: var(--space-8); border-top: 2px solid var(--ps-border); }
.related-posts__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

.related-card {
  display: block;
  border: 1px solid var(--ps-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card__image {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--ps-surface);
}
.related-card__award { position: absolute; top: var(--space-2); left: var(--space-2); background: var(--ps-near-black); color: #fff; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-pill); }
.related-card__body { padding: var(--space-4); }
.related-card__score { display: inline-block; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: var(--ps-orange); background: var(--ps-orange-light); padding: 2px 8px; border-radius: var(--radius-pill); margin-bottom: var(--space-2); }
.related-card__title { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ps-text); line-height: 1.3; margin-bottom: var(--space-2); }
.related-card__read { font-family: var(--font-ui); font-size: 0.8125rem; font-weight: 600; color: var(--ps-orange); }


/* ── Archive Header ────────────────────────────────────────── */
.archive-main { padding: var(--space-10) 0 var(--space-20); }
.archive-header { margin-bottom: var(--space-10); padding-bottom: var(--space-8); border-bottom: 2px solid var(--ps-border); }
.archive-header__type { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ps-orange); margin-bottom: var(--space-3); }
.archive-header__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--ps-text); margin-bottom: var(--space-3); }
.archive-header__description { font-family: var(--font-ui); font-size: 1.0625rem; color: var(--ps-text-muted); max-width: 640px; }
.archive-header__count { font-family: var(--font-ui); font-size: 0.875rem; color: var(--ps-text-faint); margin-top: var(--space-3); }


/* ── Pagination ────────────────────────────────────────────── */
.pagination { margin-top: var(--space-12); }
.pagination .page-numbers { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.pagination a, .pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--ps-border);
  text-decoration: none;
  color: var(--ps-text);
  transition: background 0.15s, color 0.15s;
}
.pagination a:hover { background: var(--ps-surface); }
.pagination .current { background: var(--ps-orange); color: #fff; border-color: var(--ps-orange); }


/* ── Page / Static ─────────────────────────────────────────── */
.page-main { padding: var(--space-12) 0 var(--space-20); }
.page-layout { max-width: 800px; }
.page-header__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--space-8); }


/* ── 404 ───────────────────────────────────────────────────── */
.error-main { padding: var(--space-20) 0; }
.error-layout { max-width: 560px; }
.error-code { font-family: var(--font-display); font-size: 6rem; font-weight: 800; letter-spacing: -0.05em; color: var(--ps-border-strong); line-height: 1; margin-bottom: var(--space-4); }
.error-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--space-5); }
.error-body { font-family: var(--font-ui); font-size: 1.0625rem; color: var(--ps-text-muted); margin-bottom: var(--space-8); }
.error-actions { display: flex; gap: var(--space-3); margin-bottom: var(--space-8); }


/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ps-near-black);
  margin-top: var(--space-20);
}
.site-footer__top {
  padding: var(--space-16) 0 var(--space-12);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__tagline { font-family: var(--font-ui); font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-top: var(--space-3); }
.site-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.site-footer__nav-col h4 { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: var(--space-4); }
.site-footer__nav-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__nav-col a { font-family: var(--font-ui); font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.site-footer__nav-col a:hover { color: #fff; }
.site-footer__bottom { padding: var(--space-6) 0; display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__copy { font-family: var(--font-ui); font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.site-footer__disclosure { font-family: var(--font-ui); font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 700px; line-height: 1.6; }
.site-footer__disclosure strong { color: rgba(255,255,255,0.40); }


/* ── Utility ───────────────────────────────────────────────── */
.no-results { padding: var(--space-12) 0; text-align: center; }
.no-results h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: var(--space-4); }
.no-results p { color: var(--ps-text-muted); font-family: var(--font-ui); margin-bottom: var(--space-6); }


/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-toc-sidebar { display: none; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__featured-card { display: none; }
  .quick-picks__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .category-browse__grid { grid-template-columns: repeat(3, 1fr); }
  .trust-section__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .trust-section__stats { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1fr; gap: var(--space-10); }
  .site-footer__nav { grid-template-columns: repeat(3, 1fr); }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .site-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--ps-near-black); padding: var(--space-6); z-index: 99; overflow-y: auto; }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list a { padding: var(--space-4); font-size: 1.125rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mobile-menu-toggle { display: grid; place-items: center; width: 36px; height: 36px; color: rgba(255,255,255,0.8); }
  .burger { display: flex; flex-direction: column; gap: 5px; }
  .burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; transition: transform 0.2s, opacity 0.2s; }
  .mobile-menu-toggle[aria-expanded="true"] .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] .burger span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: var(--space-12) 0 var(--space-10); min-height: unset; }
  .article-grid { grid-template-columns: 1fr; }
  .verdict-box__body { flex-direction: column; }
  .verdict-box__image { width: 100%; }
  .verdict-box__lists { grid-template-columns: 1fr; }
  .pros-cons-block { grid-template-columns: 1fr; }
  .affiliate-box__inner { flex-direction: column; align-items: flex-start; }
  .affiliate-box__cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .category-browse__grid { grid-template-columns: repeat(2, 1fr); }
  .related-posts__grid { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }
  .article-hero-image img { height: 260px; }
  .toc-container { display: none; }
  .trust-section__stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .category-browse__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__nav { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .error-actions { flex-direction: column; }
}


/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .article-toc-sidebar, .related-posts, .author-bio { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  body { font-size: 12pt; background: white; color: black; }
  a { color: black; }
}
