/* ============================================================
   Top Car Shippers — Shared Stylesheet
   Design system extracted from homepage. All pages use this.
   ============================================================ */

:root {
  --ink: #18181B;
  --ink-2: #27272A;
  --ink-3: #3F3F46;
  --paper: #FAFAFA;
  --paper-2: #F2EFEA;
  --rule: #E4E4E7;
  --rule-strong: #D4D4D8;
  --muted: #64748B;
  --accent: #B0210B;
  --accent-on-dark: #FF5A3C;
  --accent-ink: #7A1607;
  --highlight: #FBBF24;
  --paper-dim: #E4E4E7;
  --paper-soft: #C9C9CF;
  --display: "Newsreader", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 24px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid #000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
  display: flex; align-items: baseline;
  font-family: var(--display); font-weight: 600; font-size: 22px;
  letter-spacing: -0.01em; line-height: 1;
}
.logo .top { color: var(--accent); font-style: italic; font-weight: 600; margin-right: 6px; }
.logo .rest { color: var(--paper); }
.logo .dot { display: inline-block; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; margin-left: 6px; transform: translateY(-2px); }
nav.primary { display: flex; align-items: center; gap: 36px; }
nav.primary > .navitem {
  position: relative; font-family: var(--mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  cursor: pointer; padding: 24px 0;
  display: flex; align-items: center; gap: 6px; color: var(--paper);
}
nav.primary > .navitem:hover { color: #f2cfc8; }
nav.primary > .navitem .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
nav.primary > .navitem:hover .caret,
nav.primary > .navitem:focus-within .caret { transform: rotate(-135deg) translate(-2px, -2px); }
.dropdown {
  position: absolute; top: 100%; right: -16px; min-width: 320px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--ink); box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  padding: 8px 0;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
nav.primary > .navitem:hover .dropdown,
nav.primary > .navitem:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  text-transform: none; letter-spacing: 0;
  border-bottom: 1px solid var(--rule); color: var(--ink);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--paper-2); color: var(--accent); }
.dropdown a .arrow { font-family: var(--display); font-size: 18px; opacity: 0.4; }
.dropdown a:hover .arrow { opacity: 1; color: var(--accent); }

/* ── SHARED SECTION STYLES ── */
section.section { padding: 96px 0; border-bottom: 1px solid var(--rule); }
section.cream { background: var(--paper-2); }

.kicker {
  font-family: var(--mono); text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.2em; color: var(--accent);
  font-weight: 600; margin: 0 0 22px;
  display: flex; align-items: center; gap: 14px;
}
.kicker .num { font-variant-numeric: tabular-nums; color: var(--ink-3); }
.kicker::after { content: ""; flex: 1; height: 1px; background: var(--rule-strong); max-width: 220px; }

h2.section-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.018em;
  margin: 0 0 28px; text-wrap: balance;
}
h2.section-title em { font-style: italic; font-weight: 500; }
.section-lede {
  font-family: var(--sans); font-weight: 400;
  font-size: 19px; line-height: 1.55; color: var(--ink-3);
  max-width: 760px; text-wrap: pretty;
}

.placeholder-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  background: var(--paper); border: 1px solid var(--rule-strong);
  padding: 14px 22px; text-align: center;
}
.placeholder-tag .label { color: var(--muted); display: block; margin-bottom: 6px; font-size: 10px; }
.placeholder-tag strong { color: var(--ink); font-weight: 500; }

/* ── HERO (homepage only) ── */
.hero { background: var(--paper); color: var(--ink); padding: 88px 0 96px; border-bottom: 1px solid var(--rule); }
.hero-grid { align-items: center; }
.hero-text { grid-column: 1 / span 7; }
.hero-visual { grid-column: 8 / span 5; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.0; letter-spacing: -0.025em;
  margin: 0 0 32px; text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-sub {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5; color: var(--ink-3);
  max-width: 540px; margin: 0; text-wrap: pretty;
}
.hero-image {
  height: clamp(360px, 38vw, 460px);
  background: repeating-linear-gradient(135deg, #ece9e3 0 12px, #e2dfd8 12px 24px);
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
}

/* ── PAGE HERO (list + blog pages) ── */
.page-hero { background: var(--ink); color: var(--paper); padding: 72px 0 64px; border-bottom: 1px solid #2a2a2a; }
.page-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-on-dark); margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--paper); margin: 0 0 20px; text-wrap: balance;
}
.page-hero-sub { font-size: 19px; line-height: 1.55; color: #a1a1aa; max-width: 640px; margin: 0 0 28px; }
.page-hero-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #71717a;
}

/* ── EVALUATE (homepage) ── */
.evaluate-head { grid-column: 1 / span 12; margin-bottom: 64px; }
.evaluate-title { grid-column: 1 / span 7; }
.evaluate-lede { grid-column: 1 / span 9; margin-top: 8px; }
.criteria { grid-column: 1 / span 12; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.criterion { padding: 36px 32px 40px; border-right: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); display: flex; flex-direction: column; }
.criterion:nth-child(3n) { border-right: none; padding-right: 0; }
.criterion:nth-child(3n+1) { padding-left: 0; }
.criterion:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 8px; }
.criterion .num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; color: var(--accent); font-weight: 600; margin-bottom: 28px; display: flex; justify-content: space-between; align-items: center; }
.criterion .num .label { color: var(--ink-3); }
.criterion h3 { font-family: var(--display); font-weight: 600; font-size: 26px; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 16px; }
.criterion p { font-size: 16px; line-height: 1.6; color: var(--ink-3); margin: 0; max-width: 36ch; }
.criteria-foot { grid-column: 1 / span 12; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.criteria-foot .more { color: var(--ink); }

/* ── TOP PICK (homepage) ── */
.pick-head { grid-column: 1 / span 12; margin-bottom: 56px; }
.pick-card { grid-column: 1 / span 12; background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 5fr 7fr; overflow: hidden; border: 1px solid var(--ink); }
.pick-visual { position: relative; background: linear-gradient(180deg, #1f1f23 0%, #18181B 100%); padding: 48px 40px; border-right: 1px solid #3f3f46; display: flex; flex-direction: column; justify-content: space-between; min-height: 460px; }
.pick-visual::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,0.018) 22px 23px); pointer-events: none; }
.pick-visual .corner-tag { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-on-dark); font-weight: 600; display: flex; align-items: center; gap: 12px; position: relative; }
.pick-visual .corner-tag::before { content: ""; width: 11px; height: 11px; border: 1.5px solid var(--accent-on-dark); transform: rotate(45deg); display: inline-block; }
.pick-logo-placeholder { position: relative; flex: 1; margin: 32px 0; border: 1px dashed #52525b; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.03) 14px 15px); }
.pick-logo-placeholder .ph { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-soft); text-align: center; }
.pick-logo-placeholder .ph strong { color: var(--paper); display: block; margin-top: 6px; font-weight: 500; font-size: 14px; }
.pick-rank { position: relative; display: flex; align-items: baseline; gap: 14px; font-family: var(--display); }
.pick-rank .hash { font-family: var(--mono); font-size: 13px; color: var(--paper-soft); letter-spacing: 0.18em; font-weight: 600; }
.pick-rank .rank { font-size: 96px; font-weight: 600; line-height: 0.9; color: var(--paper); font-style: italic; }
.pick-rank .of { font-family: var(--mono); font-size: 13px; color: var(--paper-dim); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.pick-content { padding: 48px 48px 44px; display: flex; flex-direction: column; gap: 22px; }
.pick-rating { display: flex; align-items: center; gap: 20px; }
.pick-rating .stars { display: flex; gap: 2px; color: var(--highlight); font-size: 20px; letter-spacing: 1px; }
.pick-rating .score { font-family: var(--mono); font-size: 14px; letter-spacing: 0.1em; color: var(--paper-dim); font-weight: 500; }
.pick-rating .score strong { color: var(--paper); font-weight: 600; }
.pick-name { font-family: var(--display); font-weight: 600; font-size: clamp(36px, 3.6vw, 52px); line-height: 1.05; letter-spacing: -0.015em; margin: 0; }
.pick-tagline { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--paper-dim); margin: 0; font-weight: 400; }
.pick-body { font-size: 17px; line-height: 1.65; color: var(--paper-dim); margin: 0; max-width: 56ch; }
.pick-body strong { color: var(--paper); font-weight: 500; }
.pick-cta { margin-top: 6px; display: inline-flex; align-items: center; gap: 14px; align-self: flex-start; background: var(--accent); color: var(--paper); padding: 18px 26px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--accent); transition: background .15s, color .15s; cursor: pointer; }
.pick-cta:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.pick-cta .arrow { width: 22px; height: 1px; background: currentColor; position: relative; }
.pick-cta .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ── LISTS GRID (homepage) ── */
.lists-head { grid-column: 1 / span 12; margin-bottom: 64px; display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 24px; }
.lists-head h2 { grid-column: 1 / span 12; }
.lists { grid-column: 1 / span 12; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.list-card { background: transparent; border-right: 1px solid var(--rule-strong); padding: 32px 28px 36px; display: flex; flex-direction: column; min-height: 340px; cursor: pointer; transition: background .2s ease; }
.list-card:last-child { border-right: none; }
.list-card:hover { background: rgba(255,255,255,0.5); }
.list-card .num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; color: var(--ink-3); font-weight: 600; margin-bottom: 28px; }
.list-card .num .ic { color: var(--accent); margin-right: 10px; }
.list-card h3 { font-family: var(--display); font-weight: 600; font-size: 24px; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 14px; }
.list-card p { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin: 0; flex: 1; }
.list-card .foot { margin-top: 28px; display: flex; align-items: baseline; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); }
.list-card .count { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.list-card .count strong { color: var(--ink); font-weight: 600; }
.list-card .read { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.list-card:hover .read { color: var(--accent); }
.list-card .read .a { width: 14px; height: 1px; background: currentColor; position: relative; transition: width .2s ease; }
.list-card .read .a::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.list-card:hover .read .a { width: 22px; }

/* ── BLOG PREVIEW (homepage) ── */
.blog-head { grid-column: 1 / span 12; margin-bottom: 56px; display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.blog-head h2 { margin: 0; }
.blog-head .all { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.blog-head .all:hover { color: var(--accent); border-color: var(--accent); }
.articles { grid-column: 1 / span 12; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 32px; border-top: 1px solid var(--ink); }
.article { padding: 32px 0 36px; border-right: 1px solid var(--rule); padding-right: 32px; cursor: pointer; }
.article:last-child { border-right: none; padding-right: 0; }
.article + .article { padding-left: 32px; }
.article-meta { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 22px; display: flex; justify-content: space-between; }
.article-meta .cat { color: var(--accent); font-weight: 600; }
.article-thumb { height: 160px; background: repeating-linear-gradient(135deg, #ece9e3 0 10px, #e2dfd8 10px 20px); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--rule-strong); }
.article-thumb .ph { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #78716c; }
.article h3 { font-family: var(--display); font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 12px; text-wrap: balance; }
.article p { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin: 0 0 20px; }
.article .read-more { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.article:hover h3 { color: var(--accent); }
.article:hover .read-more { color: var(--accent); }

/* ── LIST PAGE ENTRIES ── */
.entry-list { max-width: 860px; margin: 0 auto; padding: 72px 32px; }
.quick-picks {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--rule-strong);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.quick-picks-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.qp-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.qp-row:last-child { border-bottom: none; }
.qp-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  font-style: normal;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.qp-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.qp-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  white-space: nowrap;
  border-radius: 2px;
}
.qp-badge.red { color: var(--accent); background: rgba(176,33,11,0.08); border: 1px solid rgba(176,33,11,0.25); }
.qp-badge.gold { color: #92580a; background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.4); }
.qp-badge.slate { color: #1e40af; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); }

/* ── CTA BUTTON ── */
.entry-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  margin: 8px 0 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.entry-cta:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }
.entry-cta::after { content: "→"; font-family: var(--sans); font-weight: 500; transition: transform 0.15s ease; }
.entry-cta:hover::after { transform: translateX(3px); }
.entry { border-top: 1px solid var(--rule); padding: 52px 0; }
.entry:first-child { border-top: 1px solid var(--ink); }
.entry-rank-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.entry-num { font-family: var(--display); font-size: 15px; color: var(--muted); font-style: italic; }
.entry-name { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.015em; }
.entry-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; align-self: center; }
.entry-badge.red { background: var(--accent); color: #fff; }
.entry-badge.gold { background: var(--highlight); color: var(--ink); }
.entry-badge.slate { background: #3b82f6; color: #fff; }
.entry-meta { display: flex; align-items: center; gap: 24px; margin: 12px 0 24px; flex-wrap: wrap; }
.entry-rating { display: flex; align-items: center; gap: 8px; }
.entry-stars { color: var(--highlight); font-size: 14px; letter-spacing: 1px; }
.entry-score { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink); }
.entry-tagline { font-family: var(--display); font-style: italic; font-size: 17px; color: var(--muted); }
.entry-body p { font-size: 16px; line-height: 1.72; color: var(--ink-3); margin: 0 0 16px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pros { background: #f0faf5; border-left: 3px solid #2E7D5E; padding: 20px 22px; }
.cons { background: #fdf5f0; border-left: 3px solid #B85C38; padding: 20px 22px; }
.pros h4, .cons h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin: 0 0 12px; }
.pros h4 { color: #2E7D5E; }
.cons h4 { color: #B85C38; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.pros li, .cons li { font-size: 14px; color: var(--ink-3); line-height: 1.4; padding-left: 16px; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #2E7D5E; font-size: 11px; top: 1px; }
.cons li::before { content: '–'; position: absolute; left: 0; color: #B85C38; }

/* ── BLOG / ARTICLE PAGES ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px; }
.article-content h2 { font-family: var(--display); font-weight: 600; font-size: 28px; line-height: 1.15; letter-spacing: -0.01em; margin: 40px 0 14px; color: var(--ink); }
.article-content h3 { font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.2; margin: 30px 0 12px; color: var(--ink); }
.article-content p { font-size: 17px; line-height: 1.75; color: var(--ink-3); margin: 0 0 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { font-size: 16px; line-height: 1.65; color: var(--ink-3); margin-bottom: 8px; }
.article-byline { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ── FOOTER ── */
footer.site { background: var(--ink); color: var(--paper); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 24px; padding-bottom: 48px; border-bottom: 1px solid #3f3f46; }
.footer-logo { grid-column: 1 / span 4; }
.footer-logo .logo { font-size: 26px; }
.footer-tag { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-dim); font-weight: 500; margin-top: 18px; }
.footer-disclosure { grid-column: 5 / span 8; font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.55; color: #d4d4d8; max-width: 720px; }
.footer-disclosure .label { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-dim); font-weight: 600; display: block; margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-dim); font-weight: 500; flex-wrap: wrap; gap: 16px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .wrap { padding: 0 20px; }
  .hero { padding-top: 56px; padding-bottom: 56px; }
  .hero-text, .hero-visual { grid-column: 1 / span 12; }
  .hero-visual { margin-top: 40px; }
  .hero-image { height: clamp(280px, 60vw, 380px); }
  section.section { padding: 64px 0; }
  .criteria { grid-template-columns: 1fr; }
  .criterion { border-right: none; border-bottom: 1px solid var(--rule-strong); padding: 28px 0; }
  .criterion + .criterion { padding-left: 0; }
  .pick-card { grid-template-columns: 1fr; }
  .pick-visual { border-right: none; border-bottom: 1px solid #3f3f46; min-height: 280px; }
  .pick-content { padding: 32px 28px; }
  .lists { grid-template-columns: 1fr 1fr; }
  .list-card:nth-child(2) { border-right: none; }
  .list-card:nth-child(1), .list-card:nth-child(2) { border-bottom: 1px solid var(--rule-strong); }
  .articles { grid-template-columns: 1fr; }
  .article { border-right: none; padding-right: 0; border-bottom: 1px solid var(--rule); }
  .article + .article { padding-left: 0; }
  .article:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; row-gap: 24px; }
  .footer-logo, .footer-disclosure { grid-column: 1 / -1; }
  .lists-head { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .entry-list { padding: 48px 20px; }
  .article-wrap { padding: 48px 20px; }
}
.pick-logo-placeholder,
.pick-logo-placeholder .ph {
  border: none !important;
  background: transparent !important;
}
.pick-logo-placeholder .ph { display: none; }
