:root {
  --display: "Roboto Slab", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --bg: #FAFAFA;
  --paper: #FFFFFF;
  --ink: #0F1115;
  --ink-2: #4A5058;
  --ink-3: #8A9099;
  --rule: #E8EBEE;
  --rule-2: #DADEE3;
  --primary: #0F1115;

  /* Forest green accent */
  --accent: #2F6A3A;
  --accent-deep: #234F2C;
  --accent-tint: #E6EFE8;

  --row-hover: #F4F6F8;
  --shadow-card: 0 1px 2px rgba(15,17,21,0.04), 0 1px 3px rgba(15,17,21,0.06);
  --shadow-hover: 0 6px 18px rgba(15,17,21,0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

/* ----------------------------------------------------------------
   Image cropping safety net.

   Photos in cards / thumbs / featured / hero containers should fill
   their parents cleanly. We cover the container with object-fit:cover,
   which crops the image (when needed) instead of distorting it. The
   server-side `add_image_size()` registrations in functions.php do
   most of the cropping; this is the fallback for any case where the
   served size doesn't perfectly match the container's aspect ratio.

   Selectors target the existing photo wrappers used across templates.
---------------------------------------------------------------- */
.bike-card .card-photo img,
.feature-hero .fh-photo img,
.news-featured .nf-photo img,
.news-row .nl-thumb img,
.article-card .ac-photo img,
.hero-thumbs .h-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*
 * Square 1:1 thumb strip on the bike single page. The 240×240 cropped
 * source loses too much of the bike when the original is a wide
 * landscape hero (a 1920×1200 source center-cropped to 240² shows just
 * the middle 6% — usually a dark frame detail, not the bike). Use
 * `contain` here instead of `cover`, so the whole image scales to fit
 * the square with light letterbox padding. Background flattens any
 * transparent areas to a clean neutral.
 *
 * Cards (.bike-card, .article-card, etc.) still use `cover` above —
 * their 4:3 / 16:9 aspect is close enough to typical source aspects
 * that center-crop usually lands on subject.
 */
.hero-thumbs .h-thumb {
  background: var(--paper, #FFFFFF);
}
.hero-thumbs .h-thumb img {
  object-fit: contain;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header .brand { display: flex; align-items: baseline; gap: 14px; }
.site-header .logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.005em;
}
.site-header .tagline {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}
.site-nav {
  display: flex; gap: 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.site-nav a:hover { color: var(--accent); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Section base ---------- */
.section { padding: 64px 0; }
.section + .section { padding-top: 0; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px; margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--primary);
}
.section-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-foot { margin-top: 28px; font-size: 14px; }
.section-foot a {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: background 140ms ease;
}
.section-foot a:hover { background: var(--accent-deep); }

/* Section header variant used below the main content of detail pages
   (similar bikes on bike singles, related articles on post singles).
   Lives in theme.css so it's available wherever it's used; previously
   only loaded with bike-single.css. */
.section-head-2 {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.section-head-2 h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--primary);
  margin: 0;
}
.section-head-2 .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Inline mono numbers */
.num { font-family: var(--mono); font-size: 0.92em; }

/* ---------- Featured news hero ---------- */
.feature-hero {
  border-bottom: 1px solid var(--rule);
  padding: 40px 0 56px;
}
.feature-hero .fh-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 44px; align-items: stretch;
}
.feature-hero .fh-photo {
  position: relative;
  background: #1A1F2A;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius);
}
.feature-hero .fh-photo .photo-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #2A3142 0%, #1A1F2A 100%);
}
.feature-hero .fh-photo .photo-label {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.feature-hero .fh-body { display: flex; flex-direction: column; justify-content: center; }
.feature-hero .fh-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.feature-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--primary);
  text-wrap: pretty;
}
.feature-hero .fh-dek {
  font-size: 16px; color: var(--ink-2); margin: 0 0 22px;
  max-width: 56ch;
}
.feature-hero .fh-meta {
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--mono);
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 24px;
}
.feature-hero .fh-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: background 140ms ease;
}
.feature-hero .fh-cta:hover { background: var(--accent-deep); }

/* ---------- Directory toolbar ---------- */
.dir-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px; align-items: end;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.dir-search, .dir-sort { display: flex; flex-direction: column; gap: 6px; }
.dir-search label, .dir-sort label, .dir-count {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 500;
}
.dir-search input, .dir-sort select {
  font-family: var(--sans);
  font-size: 14px; color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.dir-search input { width: 100%; }
.dir-search input:focus, .dir-sort select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47,106,58,0.12);
}
.dir-search input::placeholder { color: var(--ink-3); }
.dir-sort { min-width: 240px; }
.dir-sort select {
  font-family: var(--mono);
  font-size: 13px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
    linear-gradient(-45deg, transparent 50%, var(--ink-3) 50%);
  background-position: right 12px center, right 7px center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 26px;
}
.dir-count { align-self: end; padding-bottom: 9px; white-space: nowrap; }
.dir-count .num { color: var(--primary); font-weight: 600; }

/* ---------- Range filters ---------- */
.dir-filters {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; padding: 0 0 28px; margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.dir-filter .ff-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px; font-weight: 500;
}
.dir-filter .ff-readout {
  font-size: 12px; color: var(--primary); letter-spacing: 0; text-transform: none;
  font-weight: 500;
}
.dir-filter .ff-track { position: relative; height: 28px; }
.dir-filter .ff-track input[type="range"] {
  position: absolute; top: 12px; left: 0; width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: transparent; pointer-events: none; margin: 0;
}
.dir-filter .ff-track input[type="range"]::-webkit-slider-runnable-track { height: 1px; background: transparent; }
.dir-filter .ff-track input[type="range"]::-moz-range-track { height: 1px; background: transparent; }
.dir-filter .ff-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: white; border: 2px solid var(--accent);
  cursor: pointer; pointer-events: auto;
  margin-top: -8px; position: relative; z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.dir-filter .ff-track input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: white; border: 2px solid var(--accent);
  cursor: pointer; pointer-events: auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.dir-filter .ff-track .ff-rail {
  position: absolute; top: 13px; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: var(--rule-2);
}
.dir-filter .ff-track .ff-fill {
  position: absolute; top: 12px; height: 4px; border-radius: 2px;
  background: var(--accent);
}
.dir-filter .ff-bounds {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--ink-3); margin-top: 8px;
}

/* ---------- Bike grid ---------- */
.bike-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.bike-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.bike-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rule-2);
}
.bike-card:hover .model { color: var(--accent); }
.bike-card .card-photo {
  aspect-ratio: 4 / 3; background: #F0F2F5; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.bike-card .card-photo .photo-fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EEF1F4 0%, #DEE3E9 100%);
}
.bike-card .card-photo .photo-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
}
.bike-card .card-body { padding: 16px 18px 20px; }
.bike-card .brand {
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-2); margin-bottom: 4px;
  font-weight: 600;
}
.bike-card .model {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px; line-height: 1.15; color: var(--primary);
  margin: 0 0 14px; letter-spacing: -0.005em;
  display: inline-block;
  transition: color 140ms ease;
}
.bike-card .card-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px;
  font-family: var(--mono); font-size: 12px; color: var(--ink);
  border-top: 1px solid var(--rule); padding-top: 12px;
}
.bike-card .card-specs .spec-label {
  display: block; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 2px;
  font-weight: 500;
}

.dir-empty {
  padding: 48px 0; text-align: center;
  font-family: var(--display); font-weight: 600;
  font-size: 18px; color: var(--ink-2);
  border: 1px dashed var(--rule-2); border-radius: var(--radius);
}
.dir-empty .reset {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-left: 12px;
  cursor: pointer;
}
.dir-empty .reset:hover { color: var(--accent-deep); }

/* ---------- News list ---------- */
.news-list { border-top: 1px solid var(--rule); }
.news-row {
  display: grid;
  grid-template-columns: 200px 130px 1fr;
  gap: 28px; padding: 24px 0;
  border-bottom: 1px solid var(--rule); align-items: start;
  transition: background 140ms ease;
}
.news-row:hover { background: var(--row-hover); }
.news-row:hover .nl-headline { color: var(--accent); }
.nl-thumb {
  position: relative; aspect-ratio: 4 / 3;
  background: #F0F2F5; border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
}
.nl-thumb .photo-fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EEF1F4 0%, #DEE3E9 100%);
}
.nl-thumb .photo-label {
  position: absolute; bottom: 8px; left: 10px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
}
.nl-date {
  padding-top: 4px; font-family: var(--mono);
  font-size: 12px; color: var(--ink-3);
}
.nl-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px; line-height: 1.2; color: var(--primary);
  margin: 0 0 10px; letter-spacing: -0.005em;
  display: inline-block;
  transition: color 140ms ease;
}
.nl-dek {
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
  max-width: 64ch; margin: 0;
}

/* ---------- What is downcountry ---------- */
.what-is {
  display: grid; grid-template-columns: 220px 1fr; gap: 56px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
}
.what-is h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0; color: var(--ink-3); line-height: 1.3;
}
.what-is .body {
  font-size: 17px; line-height: 1.6; color: var(--ink); max-width: 60ch;
}
.what-is .body p { margin: 0 0 18px; }
.what-is .body a {
  display: inline-block;
  background: var(--accent); color: white;
  padding: 8px 14px; border-radius: 6px;
  font-weight: 600; font-size: 13px;
  transition: background 140ms ease;
}
.what-is .body a:hover { background: var(--accent-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0F1115;
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
  margin-top: 80px;
}
.site-footer .footer-grid {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 24px; margin-bottom: 18px;
}
.site-footer .f-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px; color: white;
}
.site-footer .f-nav {
  display: flex; gap: 28px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
}
.site-footer .f-nav a:hover { color: #6FAA7A; }
.site-footer .f-line {
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .feature-hero .fh-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-hero h1 { font-size: 30px; }
  .feature-hero .fh-photo { min-height: 240px; }
  .dir-toolbar { grid-template-columns: 1fr; gap: 14px; }
  .dir-sort { min-width: 0; }
  .dir-filters { grid-template-columns: repeat(2, 1fr); gap: 22px 20px; }
  .bike-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .news-row { grid-template-columns: 1fr; gap: 12px; }
  .nl-thumb { aspect-ratio: 16 / 9; }
  .nl-headline { font-size: 20px; }
  .what-is { grid-template-columns: 1fr; gap: 16px; }
  .container { padding: 0 18px; }
  .site-header { padding: 12px 18px; }
  .site-header .tagline { display: none; }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .dir-filters { grid-template-columns: 1fr; }
  .bike-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 22px; }
  .feature-hero h1 { font-size: 26px; }
}


/* ============================================================
   Page-specific additions (Bikes index, News index)
============================================================ */

/* Page header - title block at top of inner pages */
.page-header {
  border-bottom: 1px solid var(--rule);
  padding: 56px 0 40px;
  background: var(--bg);
}
.page-header .ph-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--primary);
}
.page-header .ph-dek {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0 0 20px;
}
.page-header .ph-meta {
  display: flex;
  gap: 22px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.page-header .ph-meta strong { color: var(--ink); font-weight: 500; }

/* Compare bar (bikes index) */
.compare-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-2);
}
.compare-bar .cb-count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.compare-bar .cb-count strong { color: var(--accent); font-weight: 600; }
.compare-bar .cb-actions { display: flex; gap: 10px; }
.compare-bar button {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid var(--rule-2);
  background: white;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 120ms, color 120ms;
}
.compare-bar button:hover { border-color: var(--accent); color: var(--accent); }
.compare-bar button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.compare-bar button.primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: white; }

/* News index — featured + grid + list */
.news-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.news-featured .nf-photo {
  position: relative;
  background: #1A1F2A;
  overflow: hidden;
  min-height: 400px;
  border-radius: var(--radius);
}
.news-featured .nf-photo .photo-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #2A3142 0%, #1A1F2A 100%);
}
.news-featured .nf-photo .photo-label {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.news-featured .nf-body { display: flex; flex-direction: column; justify-content: center; }
.news-featured .nf-kicker {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.news-featured h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--primary);
  text-wrap: pretty;
}
.news-featured .nf-dek {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 56ch;
}
.news-featured .nf-meta {
  display: flex; gap: 14px;
  font-family: var(--mono);
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 22px;
}
.news-featured .nf-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: background 140ms ease;
}
.news-featured .nf-cta:hover { background: var(--accent-deep); }

/* Tag/topic pills */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.topic-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule-2);
  background: white;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 120ms;
}
.topic-pill:hover { border-color: var(--accent); color: var(--accent); }
.topic-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 0 16px;
  font-family: var(--mono);
  font-size: 13px;
}
.pagination a, .pagination span {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  background: white;
  color: var(--ink-2);
  transition: all 120ms;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.pagination .ellipsis { border: none; background: transparent; color: var(--ink-3); }

/* Inline news index list (denser) */
.news-list-dense .news-row {
  grid-template-columns: 240px 110px 1fr;
  padding: 28px 0;
}
.news-list-dense .nl-headline { font-size: 24px; }
.news-list-dense .nl-dek { font-size: 14px; }
.news-list-dense .nl-tags {
  display: flex; gap: 8px; margin-top: 10px;
}
.news-list-dense .nl-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 880px) {
  .page-header { padding: 40px 0 28px; }
  .page-header h1 { font-size: 34px; }
  .news-featured { grid-template-columns: 1fr; gap: 24px; }
  .news-featured .nf-photo { min-height: 240px; }
  .news-featured h2 { font-size: 26px; }
  .news-list-dense .news-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .news-list-dense .nl-headline { font-size: 20px; }
  .compare-bar { flex-direction: column; gap: 10px; align-items: stretch; }
}
