/*
Theme Name: LootBandit ArticleBase
Theme URI: https://lootbandit.com/
Author: LootBandit
Description: Plain ArticleBase-style WordPress theme for LootBandit consumer guides.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.2
Text Domain: lootbandit
*/

:root {
  --paper: #f7f1e7;
  --paper-strong: #fffaf0;
  --ink: #171515;
  --ink-soft: #4d4742;
  --line: #d8cfc2;
  --accent: #b3261e;
  --accent-deep: #7f1813;
  --card: #fffdf8;
  --shadow: rgba(23, 21, 21, 0.06);
}
* { box-sizing: border-box; }
body.ab-body {
  background: #eef2f7;
  color: #1f2937;
  font-family: Arial, Helvetica, sans-serif;
}
.ab-shell {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  border-left: 1px solid #cfd8e3;
  border-right: 1px solid #cfd8e3;
}
.ab-utility-bar,
.ab-footer {
  padding: 8px 18px;
  font-size: 0.82rem;
  color: #425466;
  background: #f7f9fc;
  border-bottom: 1px solid #d8e0ea;
}
.ab-footer {
  border-top: 1px solid #d8e0ea;
  border-bottom: 0;
}
.ab-utility-bar a,
.ab-footer a,
.ab-nav a,
.ab-link-list a,
.ab-breadcrumbs a,
.ab-byline a {
  color: #1f5dbb;
  text-decoration: none;
}
.ab-utility-bar a:hover,
.ab-footer a:hover,
.ab-nav a:hover,
.ab-link-list a:hover,
.ab-breadcrumbs a:hover,
.ab-byline a:hover {
  text-decoration: underline;
}
.ab-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px;
}
.ab-brand-lockup {
  display: grid;
  gap: 4px;
}
.ab-brand {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1f5dbb;
  text-decoration: none;
}
.ab-brand-tagline {
  color: #66758b;
  font-size: 0.95rem;
}
.ab-search {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ab-search input {
  width: min(360px, 44vw);
  border: 1px solid #b7c4d3;
  padding: 8px 10px;
  font-size: 0.95rem;
}
.ab-search button {
  border: 1px solid #1f5dbb;
  background: #1f5dbb;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
.ab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 0 18px;
  background: linear-gradient(180deg, #2f66bf, #1b4ea4);
  border-top: 1px solid #1b4ea4;
  border-bottom: 1px solid #1b4ea4;
}
.ab-nav a {
  display: inline-block;
  padding: 10px 12px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.ab-main {
  padding: 18px;
}
.ab-box {
  background: #fff;
  border: 1px solid #d8e0ea;
  padding: 16px;
  margin-bottom: 18px;
}
.ab-intro-box h1,
.ab-box h1,
.ab-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #1c4fa3;
  margin: 0 0 10px;
}
.ab-kicker,
.ab-note,
.ab-item-meta,
.ab-byline,
.ab-breadcrumbs,
.ab-footer-note {
  color: #627286;
  font-size: 0.88rem;
}
.ab-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.ab-link-list,
.ab-plain-list {
  margin: 0;
  padding-left: 18px;
}
.ab-link-list li,
.ab-plain-list li {
  margin: 0 0 8px;
}
.ab-item-meta {
  display: block;
}
.ab-empty {
  margin: 0;
  color: #627286;
}
.ab-article-shell h1 {
  margin-top: 4px;
}
.ab-hero-image,
.ab-author-image {
  margin: 14px 0;
  max-width: 540px;
}
.ab-hero-image img,
.ab-author-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #d8e0ea;
  display: block;
}
.ab-article-body {
  line-height: 1.7;
}
.ab-article-body h2,
.ab-article-body h3,
.ab-article-body h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: #1c4fa3;
}
.ab-article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.ab-article-body th,
.ab-article-body td {
  border: 1px solid #d8e0ea;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.ab-article-body th {
  background: #f3f6fb;
  color: #1c4fa3;
}
.ab-footer-links {
  margin-bottom: 6px;
}
@media (max-width: 860px) {
  .ab-header {
    flex-direction: column;
    align-items: stretch;
  }
  .ab-search input {
    width: 100%;
  }
  .ab-home-grid {
    grid-template-columns: 1fr;
  }
}
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179, 38, 30, 0.08), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, var(--paper) 100%);
}
body.smartstart-body {
  --sshi-navy: #0c3c5b;
  --sshi-navy-deep: #072f49;
  --sshi-forest: #153f32;
  --sshi-rust: #b8672a;
  --sshi-paper: #fbf7ef;
  --sshi-surface: #fffdf8;
  --sshi-line: #d9d0c2;
  --sshi-muted: #53665f;
  --sshi-shadow: rgba(43, 33, 20, 0.08);
  color: #102b36;
  background:
    linear-gradient(90deg, rgba(251,247,239,0.98) 0%, rgba(251,247,239,0.86) 42%, rgba(251,247,239,0.08) 100%),
    radial-gradient(circle at 82% 8%, rgba(184,103,42,0.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f6efe4 100%);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}
body.smartstart-body a { color: var(--sshi-navy); }
.smartstart-shell {
  min-height: 100vh;
}
.smartstart-shell .topbar {
  position: static;
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 20px 0 18px;
  background: transparent;
  border-bottom: 1px solid rgba(12, 60, 91, 0.14);
  box-shadow: none;
  backdrop-filter: none;
}
.smartstart-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--sshi-navy-deep);
  font-family: Georgia, "Times New Roman", serif;
}
.smartstart-brand:hover { text-decoration: none; }
.smartstart-brand-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sshi-rust);
}
.smartstart-brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.smartstart-brand strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.smartstart-brand small {
  display: block;
  margin-top: 3px;
  color: var(--sshi-muted);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.smartstart-nav {
  justify-content: center;
  gap: 20px;
}
.smartstart-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--sshi-navy-deep);
  font-weight: 700;
}
.smartstart-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--sshi-rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.smartstart-nav a:hover,
.smartstart-nav a.active {
  text-decoration: none;
}
.smartstart-nav a:hover::after,
.smartstart-nav a.active::after {
  transform: scaleX(1);
}
.smartstart-search input {
  border-color: var(--sshi-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
}
.smartstart-search button,
.smartstart-shell .button-link,
.smartstart-shell .cta,
.smartstart-shell .paypal-buy-button {
  border-radius: 7px;
  background: var(--sshi-navy);
  box-shadow: none;
}
.smartstart-shell .button-link.alt {
  background: var(--sshi-surface);
  color: var(--sshi-navy);
  border-color: var(--sshi-line);
}
.smartstart-main {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.smartstart-shell .hero,
.smartstart-shell .page-hero,
.smartstart-shell .article,
.smartstart-shell .product-hero,
.smartstart-shell .not-found {
  max-width: 1040px;
  border-color: var(--sshi-line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,253,248,0.98), rgba(255,249,239,0.96));
  box-shadow: 0 22px 54px var(--sshi-shadow);
}
.smartstart-shell .page-hero h1,
.smartstart-shell .article h1,
.smartstart-shell .product-hero h1,
.smartstart-shell .hero h1 {
  color: var(--sshi-navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}
.smartstart-shell .lede,
.smartstart-shell .muted,
.smartstart-shell .product-meta,
.smartstart-shell .post-meta,
.smartstart-shell .archive-meta,
.smartstart-shell .micro-copy {
  color: var(--sshi-muted);
}
.smartstart-shell .micro-copy {
  color: var(--sshi-rust);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.smartstart-shell .stat,
.smartstart-shell .card,
.smartstart-shell .lane,
.smartstart-shell .route-note,
.smartstart-shell .order-summary-card,
.smartstart-shell .archive-card,
.smartstart-shell .product-card,
.smartstart-shell .post-card,
.smartstart-shell .guide-card,
.smartstart-shell .rail-card,
.smartstart-shell .answer-box,
.smartstart-shell .article-toc,
.smartstart-shell .author-card,
.smartstart-shell .article-table-block,
.smartstart-shell .guided-links-block,
.smartstart-shell .faq-item,
.smartstart-shell .order-panel {
  border-color: var(--sshi-line);
  border-radius: 10px;
  background: var(--sshi-surface);
  box-shadow: 0 14px 34px var(--sshi-shadow);
}
.smartstart-shell .article-media,
.smartstart-shell .article-hero-media,
.smartstart-shell .product-media,
.smartstart-shell .author-portrait,
.smartstart-shell .card-media {
  border-color: var(--sshi-line);
  border-radius: 10px;
  background: var(--sshi-surface);
}
.smartstart-shell .article-ad-slot {
  border-color: rgba(12, 60, 91, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,253,248,0.92), rgba(246,239,228,0.9));
}
.smartstart-shell .article-ad-label {
  display: none;
}
.smartstart-shell .pill {
  border-color: rgba(21, 63, 50, 0.18);
  background: rgba(21, 63, 50, 0.07);
  color: var(--sshi-forest);
}
.smartstart-shell .article-table th {
  background: rgba(184, 103, 42, 0.08);
  color: var(--sshi-navy-deep);
}
.smartstart-footer {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid rgba(12, 60, 91, 0.14);
  color: var(--sshi-muted);
}
.smartstart-footer-brand strong {
  color: var(--sshi-navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}
.smartstart-footer-brand p {
  max-width: 48rem;
  margin: 8px 0 18px;
}
.smartstart-footer-links a {
  color: var(--sshi-navy);
  font-weight: 700;
}
/* Smart Start ArticleBase-style directory skin. */
body.smartstart-body {
  --sshi-blue: #1f5dbb;
  --sshi-blue-dark: #12448f;
  --sshi-blue-darker: #0a3475;
  --sshi-border: #cfd8e3;
  --sshi-panel: #ffffff;
  --sshi-panel-head: #f4f7fb;
  --sshi-text: #111827;
  --sshi-muted: #536172;
  --sshi-link: #0645ad;
  background: #f1f1f1;
  color: var(--sshi-text);
  font-family: Arial, Helvetica, sans-serif;
}
body.smartstart-body a {
  color: var(--sshi-link);
  text-decoration: none;
}
body.smartstart-body a:hover {
  text-decoration: underline;
}
.smartstart-shell {
  width: min(1120px, 100vw);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  border-left: 1px solid var(--sshi-border);
  border-right: 1px solid var(--sshi-border);
}
.smartstart-shell .topbar {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr);
  gap: 12px 20px;
  align-items: end;
  margin: 0;
  padding: 12px 16px 0;
  border: 0;
  background: #fff;
}
.smartstart-brand {
  gap: 8px;
  color: var(--sshi-blue);
  font-family: Arial, Helvetica, sans-serif;
}
.smartstart-brand-mark {
  display: none;
}
.smartstart-brand strong {
  color: var(--sshi-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.15rem;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: none;
}
.smartstart-brand small {
  margin-top: 0;
  color: #6d7786;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}
.smartstart-search {
  justify-self: end;
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}
.smartstart-search input {
  width: 100%;
  border: 1px solid #b8c3d0;
  border-radius: 0;
  background: #fff;
  padding: 6px 8px;
  font-size: 0.9rem;
}
.smartstart-search button,
.smartstart-shell .button-link,
.smartstart-shell .cta,
.smartstart-shell .paypal-buy-button,
.smartstart-shell .search button {
  border: 1px solid var(--sshi-blue-dark);
  border-radius: 3px;
  background: linear-gradient(180deg, #2f66bf, #1b4ea4);
  color: #fff;
  padding: 7px 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  box-shadow: none;
}
.smartstart-shell .button-link.alt {
  background: #f7f7f7;
  color: var(--sshi-blue-dark);
  border: 1px solid #b8c3d0;
}
.smartstart-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  margin-top: 8px;
  background: linear-gradient(180deg, #2f66bf, #1b4ea4);
  border: 1px solid #1b4ea4;
  border-left: 0;
  border-right: 0;
}
.smartstart-nav a {
  display: inline-block;
  padding: 9px 13px;
  border-right: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.smartstart-nav a::after {
  display: none;
}
.smartstart-nav a:hover,
.smartstart-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.smartstart-main {
  width: 100%;
  margin: 0;
  padding: 16px;
}
.smartstart-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  align-items: start;
}
.smartstart-primary {
  min-width: 0;
}
.smartstart-sidebar {
  display: grid;
  gap: 14px;
}
.smartstart-sidebox,
.smartstart-shell .page-hero,
.smartstart-shell .article,
.smartstart-shell .product-hero,
.smartstart-shell .not-found,
.smartstart-shell .section,
.smartstart-shell .route-note,
.smartstart-shell .order-summary-card,
.smartstart-shell .order-panel,
.smartstart-shell .card,
.smartstart-shell .lane,
.smartstart-shell .archive-card,
.smartstart-shell .post-card,
.smartstart-shell .product-card,
.smartstart-shell .guide-card,
.smartstart-shell .rail-card,
.smartstart-shell .answer-box,
.smartstart-shell .article-toc,
.smartstart-shell .author-card,
.smartstart-shell .article-table-block,
.smartstart-shell .guided-links-block,
.smartstart-shell .faq-item {
  border: 1px solid var(--sshi-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.smartstart-shell .section {
  padding: 0;
  margin-top: 16px;
}
.smartstart-shell .page-hero,
.smartstart-shell .article,
.smartstart-shell .product-hero,
.smartstart-shell .not-found {
  max-width: none;
  padding: 16px;
}
.smartstart-shell .page-hero h1,
.smartstart-shell .article h1,
.smartstart-shell .product-hero h1,
.smartstart-shell .hero h1 {
  color: #01439c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}
.smartstart-shell .page-hero h2,
.smartstart-shell .section h2,
.smartstart-sidebox h2,
.smartstart-shell .order-summary-card h2,
.smartstart-shell .order-panel h2 {
  margin: 0;
  padding: 8px 10px;
  border-bottom: 1px solid var(--sshi-border);
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
  color: #01439c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.smartstart-shell .section > .card-grid,
.smartstart-shell .section > .lane-grid,
.smartstart-shell .section > .archive-grid,
.smartstart-shell .section > p,
.smartstart-shell .section > .split,
.smartstart-shell .section > .article-body,
.smartstart-shell .order-panel > :not(h2),
.smartstart-shell .order-summary-card > :not(h2) {
  margin: 12px;
}
.smartstart-sidebox ul {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
}
.smartstart-sidebox li {
  margin: 0 0 7px;
  padding-left: 11px;
  position: relative;
  font-size: 0.9rem;
}
.smartstart-sidebox li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #6b7280;
}
.smartstart-shell .lede,
.smartstart-shell .muted,
.smartstart-shell .product-meta,
.smartstart-shell .post-meta,
.smartstart-shell .archive-meta,
.smartstart-shell .micro-copy {
  color: var(--sshi-muted);
}
.smartstart-shell .micro-copy {
  font-size: 0.78rem;
  color: #4b5563;
  letter-spacing: 0.02em;
  text-transform: none;
}
.smartstart-shell .article-media,
.smartstart-shell .article-hero-media,
.smartstart-shell .product-media,
.smartstart-shell .author-portrait,
.smartstart-shell .card-media {
  border: 1px solid var(--sshi-border);
  border-radius: 0;
  background: #fff;
}
.smartstart-shell .pill {
  border: 1px solid #d5dde8;
  border-radius: 0;
  background: #f8fafc;
  color: #4b5563;
}
.smartstart-shell .article-ad-slot {
  border: 1px solid #d7dfea;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}
.smartstart-shell .article-ad-label {
  display: none;
}
.smartstart-shell .table-scroll {
  border: 1px solid var(--sshi-border);
}
.smartstart-shell .article-table {
  min-width: 560px;
}
.smartstart-shell .article-table th {
  background: #f4f7fb;
  color: #01439c;
}
.smartstart-footer {
  width: 100%;
  margin: 0;
  padding: 14px 16px 24px;
  border-top: 1px solid #2c5fb4;
  color: #536172;
  text-align: center;
  font-size: 0.86rem;
}
.smartstart-footer-brand strong {
  color: #01439c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.smartstart-footer-brand p {
  max-width: none;
  margin: 6px 0 12px;
}
.smartstart-footer-links {
  justify-content: center;
}
.smartstart-footer-links a {
  color: var(--sshi-link);
  font-weight: 400;
}
@media (max-width: 900px) {
  .smartstart-shell {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
  .smartstart-shell .topbar {
    grid-template-columns: 1fr;
    padding: 12px 12px 0;
  }
  .smartstart-search {
    justify-self: stretch;
    width: 100%;
  }
  .smartstart-nav {
    overflow-x: auto;
    white-space: nowrap;
  }
  .smartstart-main {
    padding: 12px;
  }
  .smartstart-content-grid {
    grid-template-columns: 1fr;
  }
  .smartstart-sidebar {
    grid-template-columns: 1fr;
  }
}
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-shell { min-height: 100vh; }
.topbar {
  position: static;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(216, 207, 194, 0.9);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.main-nav a { font-size: 0.95rem; }
.search {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search input {
  width: min(320px, 42vw);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}
.search button,
.cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--accent);
  color: white;
  font-weight: 600;
}
.button-link.alt,
.search button.alt {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
main { padding: 26px 28px 56px; }
.hero {
  padding: 32px;
  border: 1px solid rgba(179, 38, 30, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 247, 238, 0.96));
  box-shadow: 0 18px 42px var(--shadow);
}
.hero h1, .page-hero h1, .article h1, .product-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
.lede,
.muted { color: var(--ink-soft); }
.stats,
.card-grid,
.lane-grid,
.archive-grid,
.meta-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stats { margin-top: 18px; }
.stat,
.card,
.lane,
.route-note,
.order-summary-card,
.archive-card,
.product-card,
.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 26px var(--shadow);
}
.stat {
  min-width: 140px;
  padding: 16px;
}
.section { margin-top: 24px; }
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 10px;
}
.card-grid,
.lane-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card, .lane, .archive-card, .post-card, .product-card {
  padding: 18px;
}
.product-card .price {
  margin: 10px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}
.product-meta,
.post-meta,
.archive-meta,
.micro-copy {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pill {
  border-radius: 999px;
  border: 1px solid rgba(179, 38, 30, 0.12);
  background: rgba(179, 38, 30, 0.06);
  padding: 6px 10px;
  font-size: 0.84rem;
}
.article,
.product-hero,
.page-hero,
.not-found {
  max-width: 960px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px var(--shadow);
}
.article-body { line-height: 1.7; }
.article-body h2, .article-body h3 { font-family: Georgia, "Times New Roman", serif; }
.article-body img { max-width: 100%; height: auto; }
.article-shell {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}
.article-main {
  min-width: 0;
  max-width: 980px;
  margin: 0 auto;
}
.article-guide-rail,
.article-rail {
  display: none;
}
.guide-card,
.rail-card,
.answer-box,
.article-toc,
.author-card,
.article-table-block {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 26px var(--shadow);
}
.answer-box,
.article-toc,
.article-table-block,
.guide-card,
.rail-card { padding: 18px; }
.guide-card {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 0.98));
}
.guide-card-header,
.rail-card-header {
  margin: -18px -18px 16px;
  padding: 14px 18px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #071f3a, #0b2e57 62%, #133b68);
  color: #f7fbff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.guide-steps,
.rail-checklist,
.rail-number-list {
  display: grid;
  gap: 12px;
}
.guide-step,
.rail-check-item,
.rail-number-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.guide-step-number,
.rail-number-badge,
.rail-check-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.guide-step-number,
.rail-number-badge {
  background: linear-gradient(180deg, rgba(25, 94, 194, 0.12), rgba(25, 94, 194, 0.24));
  border: 1px solid rgba(25, 94, 194, 0.18);
  color: #12448b;
}
.rail-check-badge {
  background: linear-gradient(180deg, rgba(31, 133, 78, 0.14), rgba(31, 133, 78, 0.24));
  border: 1px solid rgba(31, 133, 78, 0.18);
  color: #176842;
}
.guide-step-title,
.rail-number-copy strong,
.rail-check-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.guide-step-copy a {
  color: var(--ink);
  text-decoration: none;
}
.guide-step-copy p,
.rail-number-copy p,
.rail-check-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.author-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  padding: 18px;
  align-items: center;
}
.author-card-copy h2,
.rail-card h2,
.answer-box h2,
.article-toc h2,
.guided-links-block h2,
.article-table-block h2 {
  margin-top: 0;
}
.article-breadcrumbs {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.article-breadcrumbs a { color: var(--accent-deep); }
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.article-byline a { color: var(--accent-deep); }
.article-bullets {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}
.article-bullets li + li { margin-top: 8px; }
.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.article-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-section-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(31, 133, 78, 0.12), rgba(31, 133, 78, 0.24));
  border: 1px solid rgba(31, 133, 78, 0.18);
  color: #176842;
  font-weight: 800;
}
.article-section-head h2 {
  margin: 0;
}
.article-meta-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px var(--shadow);
}
.article-meta-card h2 {
  margin: 6px 0 8px;
  font-size: 1.02rem;
}
.article-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  gap: 20px;
}
.article-toc li { break-inside: avoid; margin-bottom: 8px; }
.guided-links-block {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px var(--shadow);
}
.guided-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.guided-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(43, 92, 255, 0.14);
  background: linear-gradient(180deg, rgba(238, 244, 255, 0.9), rgba(255, 255, 255, 0.98));
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(18, 29, 56, 0.06);
}
.guided-link-card strong {
  display: block;
  margin: 4px 0 8px;
}
.guided-link-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.guided-link-kicker {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.article-section-block + .article-section-block { margin-top: 22px; }
.article-field-notes {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(179, 38, 30, 0.1);
  background: rgba(179, 38, 30, 0.04);
}
.article-ad-slot {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px dashed rgba(23, 21, 21, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.86), rgba(255, 250, 240, 0.96));
}
.article-ad-label {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(179, 38, 30, 0.08);
  padding: 4px 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-ad-body {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
}
.article-ad-body strong { color: var(--ink); }
.in-feed-ad-card {
  grid-column: 1 / -1;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-style: solid;
}
.in-feed-ad-card.ad-unfilled,
.article-ad-slot.ad-unfilled {
  display: none !important;
}
.live-adsense-slot.ad-unfilled {
  display: none !important;
}
.live-adsense-slot .sshi-display-ad {
  width: 100%;
  min-height: 88px;
  border-radius: 16px;
  overflow: hidden;
}
.review-home-gear-card.in-feed-ad-card,
.review-home-showcase-card.in-feed-ad-card {
  padding: 18px;
}
.in-feed-ad-card .article-ad-label {
  margin-bottom: 0;
}
.review-feed-ad {
  width: 100%;
  min-height: 120px;
}
.review-banner-ad {
  width: 100%;
  min-height: 120px;
}
.review-multiplex-ad {
  width: 100%;
  min-height: 160px;
}
.article-anchor-wrap {
  margin: 18px 0;
}
.article-media,
.article-hero-media,
.product-media,
.author-portrait,
.card-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}
.article-hero-media,
.product-media { margin: 18px 0; }
.card-media { margin-bottom: 12px; }
.article-media img,
.article-hero-media img,
.product-media img,
.author-portrait img,
.card-media img {
  width: 100%;
  height: auto;
  display: block;
}
.article-media figcaption,
.article-hero-media figcaption,
.product-media figcaption,
.author-portrait figcaption {
  padding: 10px 12px 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.article-table th,
.article-table td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.article-table th {
  background: rgba(179, 38, 30, 0.06);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.faq-stack {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 14px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ink-soft);
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 20px;
}
.route-note,
.order-summary-card { padding: 16px; }
.route-note ul,
.route-note ol,
.order-summary-card ul,
.order-summary-card ol {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}
.route-note li + li,
.order-summary-card li + li {
  margin-top: 8px;
}
.route-note h3,
.order-summary-card h3 {
  margin: 16px 0 0;
}
.order-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(179, 38, 30, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(179, 38, 30, 0.04), rgba(255, 255, 255, 0.96));
}
.order-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.order-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.order-form input,
.order-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font: inherit;
  color: var(--ink);
}
.order-form textarea {
  min-height: 110px;
  resize: vertical;
}
.paypal-direct-form {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(23, 74, 159, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}
.paypal-direct-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}
.paypal-direct-row label {
  min-width: 120px;
}
.paypal-buy-button {
  background: #174a9f;
}
.paypal-note {
  margin: 0;
  font-size: 0.92rem;
}
.order-secondary-heading {
  margin: 18px 0 0;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.callout-error {
  padding: 12px 14px;
  border: 1px solid rgba(179, 38, 30, 0.2);
  border-radius: 16px;
  background: rgba(179, 38, 30, 0.08);
  color: var(--accent-deep);
}
.site-footer {
  padding: 22px 28px 36px;
  border-top: 1px solid rgba(216, 207, 194, 0.9);
  color: var(--ink-soft);
}
.tdg-body {
  background:
    radial-gradient(circle at top left, rgba(185, 51, 32, 0.05), transparent 32%),
    linear-gradient(180deg, #f8f2e9 0%, #f4ecdf 100%);
  color: #16171b;
}
.tdg-site-shell {
  min-height: 100vh;
}
.tdg-trust-strip {
  background: #0d1118;
  color: rgba(249, 245, 238, 0.96);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.tdg-trust-strip-inner,
.tdg-site-header,
.tdg-main,
.tdg-site-footer-bar {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto;
}
.tdg-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 9px 0;
}
.tdg-trust-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tdg-trust-emblem,
.tdg-footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tdg-trust-emblem {
  width: 18px;
  height: 18px;
}
.tdg-site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0 26px;
}
.tdg-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}
.tdg-brand-mark {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tdg-brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tdg-brand-shield {
  fill: #f8f2e9;
  stroke: #0f141b;
  stroke-width: 2.3;
}
.tdg-brand-ink {
  fill: #0f141b;
}
.tdg-brand-red {
  fill: #ab2d21;
}
.tdg-brand-copy {
  display: grid;
  gap: 4px;
}
.tdg-brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.tdg-brand-copy span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6d6358;
}
.tdg-site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.tdg-site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 2px;
  color: #181717;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  position: relative;
}
.tdg-site-nav a[data-caret="1"]::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
}
.tdg-site-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ad2f22;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}
.tdg-site-nav a:hover::before,
.tdg-site-nav a.active::before {
  transform: scaleX(1);
}
.tdg-site-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tdg-icon-button,
.tdg-sign-in,
.tdg-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a4291d;
  text-decoration: none;
}
.tdg-icon-button,
.tdg-footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(168, 41, 29, 0.16);
  background: rgba(255, 255, 255, 0.94);
}
.tdg-sign-in {
  gap: 10px;
  font-weight: 700;
}
.tdg-sign-in span {
  color: #9f241a;
}
.tdg-icon-button svg,
.tdg-sign-in svg,
.tdg-trust-emblem svg,
.tdg-lane-card-icon svg,
.tdg-home-trust-badge svg,
.tdg-footer-icon svg,
.tdg-footer-brand-mark svg,
.tdg-utility-card svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tdg-main {
  padding: 0 0 56px;
}
.tdg-home-shell {
  display: grid;
  gap: 18px;
}
.tdg-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(252, 247, 240, 0.98));
  border: 1px solid rgba(187, 173, 160, 0.48);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(48, 35, 22, 0.08);
}
.tdg-home-hero-copy {
  padding: 28px 28px 26px;
}
.tdg-home-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f261b;
}
.tdg-home-hero-copy h1 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.95rem, 4.85vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 10.8ch;
}
.tdg-home-hero-copy h1 span {
  color: #9f281c;
}
.tdg-home-hero-copy .lede {
  max-width: 31rem;
  color: #382f27;
  font-size: 1.02rem;
  line-height: 1.6;
}
.tdg-home-search {
  margin-top: 20px;
  max-width: 560px;
}
.tdg-home-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(199, 185, 171, 0.8);
  background: #fffefd;
  box-shadow: 0 12px 28px rgba(57, 42, 27, 0.08);
}
.tdg-home-search-row label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #71665b;
}
.tdg-home-search-row label svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tdg-home-search-row input {
  border: 0;
  background: transparent;
  font: inherit;
  color: #1c1b19;
  padding: 17px 0 17px 2px;
}
.tdg-home-search-row input:focus {
  outline: none;
}
.tdg-home-search-row button {
  min-width: 126px;
  border: 0;
  background: linear-gradient(180deg, #b32e20, #8f2117);
  color: white;
  font: inherit;
  font-weight: 700;
  padding: 0 24px;
  cursor: pointer;
}
.tdg-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.tdg-home-actions .button-link {
  padding: 14px 20px;
  border-radius: 14px;
}
.tdg-home-actions .button-link {
  background: linear-gradient(180deg, #b12d20, #962217);
  box-shadow: 0 12px 30px rgba(126, 31, 21, 0.16);
}
.tdg-home-actions .button-link.alt {
  background: rgba(255, 255, 255, 0.95);
  color: #181818;
  border-color: rgba(175, 159, 144, 0.72);
  box-shadow: none;
}
.tdg-home-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tdg-home-shortcuts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(172, 156, 142, 0.72);
  background: rgba(255, 255, 255, 0.8);
  color: #28231e;
  text-decoration: none;
  font-weight: 600;
}
.tdg-home-hero-media {
  min-height: 100%;
  background: #1f1b17;
}
.tdg-home-hero-media img,
.tdg-lane-card-media img,
.tdg-premium-car img,
.tdg-quick-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tdg-lane-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tdg-lane-card,
.tdg-research-card,
.tdg-premium-panel,
.tdg-market-panel,
.tdg-catalog-card,
.tdg-utility-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(199, 185, 171, 0.84);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(57, 42, 27, 0.06);
}
.tdg-lane-card,
.tdg-research-card,
.tdg-premium-panel,
.tdg-catalog-card {
  text-decoration: none;
  color: inherit;
}
.tdg-lane-card {
  overflow: hidden;
}
.tdg-lane-card-media {
  height: 98px;
  background: #1b1918;
}
.tdg-lane-card-body {
  padding: 18px 20px 16px;
}
.tdg-lane-card-body h2,
.tdg-panel-head h2,
.tdg-market-head h2,
.tdg-home-section-head h2,
.tdg-premium-copy h2,
.tdg-utility-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}
.tdg-lane-card-body h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.tdg-lane-card-body p,
.tdg-research-card p,
.tdg-catalog-card p,
.tdg-market-copy p,
.tdg-utility-card p {
  margin: 0;
  color: #4f473f;
}
.tdg-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #a22a1d;
  font-weight: 700;
}
.tdg-inline-link::after {
  content: "->";
  font-size: 0.92em;
}
.tdg-lane-card-icon {
  position: absolute;
  top: 26px;
  left: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.96);
  color: #9c271b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(21, 17, 14, 0.14);
}
.tdg-home-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 1.04fr) minmax(280px, 0.9fr);
  gap: 14px;
}
.tdg-research-panel,
.tdg-market-panel {
  padding: 18px;
}
.tdg-panel-head,
.tdg-market-head,
.tdg-home-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px 18px;
}
.tdg-panel-head h2,
.tdg-market-head h2,
.tdg-home-section-head h2 {
  font-size: clamp(1.7rem, 2vw, 2.15rem);
}
.tdg-panel-head p,
.tdg-home-section-head p {
  margin: 0;
  max-width: 36rem;
  color: #5b5149;
}
.tdg-research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.tdg-research-card {
  padding: 18px 16px 16px;
  text-align: center;
}
.tdg-research-card-icon,
.tdg-home-trust-badge-icon,
.tdg-utility-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: #fffaf5;
  color: #11161c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 185, 170, 0.84);
}
.tdg-research-card strong,
.tdg-catalog-card strong,
.tdg-utility-card strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
}
.tdg-research-card .tdg-inline-link {
  justify-content: center;
}
.tdg-premium-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  min-height: 286px;
  padding: 18px 20px;
  overflow: hidden;
  background:
    linear-gradient(125deg, #121821 0%, #111921 58%, #1c2831 100%);
  color: #f7f1e7;
}
.tdg-premium-panel .micro-copy,
.tdg-market-panel .micro-copy {
  color: rgba(246, 238, 229, 0.8);
}
.tdg-premium-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 2.3vw, 2.55rem);
  line-height: 0.97;
  color: #fff6ec;
}
.tdg-premium-copy h2 span {
  color: #cb4f33;
}
.tdg-premium-copy ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.tdg-premium-copy li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 239, 231, 0.88);
}
.tdg-premium-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid #f6ede2;
  border-bottom: 1.8px solid #f6ede2;
  transform: rotate(45deg);
}
.tdg-premium-copy .button-link.alt {
  background: rgba(255, 255, 255, 0.04);
  color: #fff6ec;
  border-color: rgba(255, 255, 255, 0.18);
}
.tdg-premium-car {
  align-self: end;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.tdg-market-panel {
  background: linear-gradient(180deg, rgba(255, 254, 252, 0.98), rgba(252, 246, 238, 0.98));
}
.tdg-market-head a,
.tdg-home-section-link {
  color: #a52b1d;
  text-decoration: none;
  font-weight: 700;
}
.tdg-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 18px;
  margin-top: 12px;
}
.tdg-market-copy {
  margin-bottom: 10px;
}
.tdg-market-copy strong {
  display: block;
  font-size: 1.24rem;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 6px;
}
.tdg-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(204, 188, 173, 0.72);
  background: rgba(255, 255, 255, 0.86);
}
.tdg-chart-svg .axis,
.tdg-chart-svg .grid {
  stroke: #d8ccc0;
  fill: none;
}
.tdg-chart-svg .line {
  fill: none;
  stroke: #1358b0;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tdg-chart-svg .point {
  fill: #1358b0;
}
.tdg-chart-svg text {
  fill: #665c53;
  font-family: Arial, sans-serif;
  font-size: 11px;
}
.tdg-market-list {
  display: grid;
  gap: 10px;
  align-content: start;
}
.tdg-market-list h3 {
  margin: 0;
  font-size: 1rem;
}
.tdg-quick-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 0;
}
.tdg-quick-thumb {
  width: 50px;
  height: 37px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(203, 187, 171, 0.9);
  background: #f1ece4;
}
.tdg-quick-meta strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}
.tdg-quick-meta span,
.tdg-footer-brand-lockup span {
  color: #685f56;
}
.tdg-quick-meta .tdg-price {
  color: #12151b;
  font-weight: 700;
}
.tdg-home-section-head {
  margin-top: 4px;
}
.tdg-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tdg-catalog-card {
  padding: 18px;
}
.tdg-catalog-card .micro-copy {
  margin-bottom: 8px;
}
.tdg-catalog-card .tdg-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 10px;
  margin-top: 14px;
}
.tdg-catalog-card .price {
  margin: 0;
}
.tdg-catalog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tdg-catalog-pills .pill {
  background: #f7efe6;
}
.tdg-home-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 2px;
}
.tdg-home-trust-badge {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
.tdg-home-trust-badge-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
}
.tdg-home-trust-badge strong {
  display: block;
  font-size: 1rem;
}
.tdg-home-trust-badge span {
  color: #5d544b;
  font-size: 0.94rem;
}
.tdg-site-footer {
  border-top: 1px solid rgba(202, 187, 173, 0.72);
  background: #0f141a;
  color: rgba(247, 241, 232, 0.95);
}
.tdg-site-footer-bar {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0 20px;
}
.tdg-footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.tdg-footer-brand-lockup strong {
  display: block;
  font-size: 1rem;
}
.tdg-footer-brand-lockup span {
  display: block;
  font-size: 0.86rem;
  color: rgba(228, 220, 210, 0.74);
}
.tdg-site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
}
.tdg-site-footer-links a {
  color: rgba(247, 241, 232, 0.92);
  text-decoration: none;
  font-size: 0.94rem;
}
.tdg-site-footer-icons {
  display: inline-flex;
  gap: 10px;
}
.tdg-site-footer-icons .tdg-footer-icon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 245, 232, 0.92);
}
.tdg-utility-page {
  display: grid;
  gap: 18px;
}
.tdg-utility-hero {
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid rgba(199, 185, 171, 0.84);
  background: linear-gradient(180deg, rgba(255, 254, 252, 0.99), rgba(251, 245, 237, 0.98));
  box-shadow: 0 18px 38px rgba(57, 42, 27, 0.07);
}
.tdg-utility-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.94;
}
.tdg-utility-hero .lede {
  max-width: 42rem;
  color: #4e453d;
}
.tdg-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tdg-utility-card {
  padding: 18px;
}
.tdg-utility-card-icon {
  margin: 0 0 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tdg-route-shell {
  display: grid;
  gap: 18px;
}
.tdg-route-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
  gap: 18px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(199, 185, 171, 0.84);
  background:
    radial-gradient(circle at top right, rgba(179, 38, 30, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 254, 252, 0.99), rgba(249, 243, 236, 0.98));
  box-shadow: 0 18px 38px rgba(57, 42, 27, 0.07);
}
.tdg-route-copy h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.45rem, 4vw, 3.9rem);
  line-height: 0.95;
}
.tdg-route-copy .lede {
  max-width: 42rem;
  color: #4e453d;
}
.tdg-route-side {
  display: grid;
  gap: 12px;
  align-content: start;
}
.tdg-highlight-stack {
  display: grid;
  gap: 12px;
}
.tdg-route-side .article-media,
.tdg-route-side .product-media,
.tdg-route-side figure {
  margin: 0;
}
.tdg-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 18px;
}
.tdg-search-panel label {
  display: block;
}
.tdg-search-panel input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(199, 185, 171, 0.92);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
}
.tdg-search-panel button {
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  background: linear-gradient(180deg, #b3261e, #8b1d12);
  color: #fffaf4;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.tdg-collector-section {
  display: grid;
  gap: 14px;
}
.tdg-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
}
.tdg-section-head h2 {
  margin: 4px 0 0;
}
.tdg-section-head p {
  max-width: 38rem;
  margin: 0;
}
.tdg-signal-grid,
.tdg-hub-grid,
.tdg-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tdg-signal-card,
.tdg-route-card,
.tdg-fact-card {
  display: block;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(199, 185, 171, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 244, 237, 0.97));
  box-shadow: 0 14px 28px rgba(57, 42, 27, 0.06);
  color: inherit;
  text-decoration: none;
}
.tdg-signal-card strong,
.tdg-route-card strong,
.tdg-fact-card strong {
  display: block;
  margin: 6px 0 8px;
  color: #171515;
  font-family: Georgia, "Times New Roman", serif;
}
.tdg-signal-card strong,
.tdg-route-card strong {
  font-size: 1.24rem;
  line-height: 1.1;
}
.tdg-fact-card strong {
  font-size: 1.95rem;
  line-height: 1;
}
.tdg-signal-card p,
.tdg-route-card p,
.tdg-fact-card p {
  margin: 0;
  color: #4e453d;
  line-height: 1.58;
}
.tdg-collector-context {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.tdg-generated-result {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(199, 185, 171, 0.86);
  background: linear-gradient(135deg, rgba(19, 29, 40, 0.98), rgba(31, 39, 50, 0.96) 62%, rgba(139, 29, 18, 0.92));
  box-shadow: 0 18px 30px rgba(23, 21, 21, 0.12);
  color: #fff7ef;
}
.tdg-generated-result strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.18rem;
  font-family: Georgia, "Times New Roman", serif;
}
.tdg-generated-result a {
  color: inherit;
}
.tdg-generated-result p {
  margin: 0;
  max-width: 44rem;
  color: rgba(255, 247, 239, 0.86);
}
.tdg-generated-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tdg-generated-result-actions .pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ef;
}
.tdg-prose {
  color: #2e2620;
  line-height: 1.72;
}
.tdg-prose p:first-child,
.tdg-prose h2:first-child,
.tdg-prose h3:first-child {
  margin-top: 0;
}
.tdg-body .page-hero,
.tdg-body .product-hero,
.tdg-body .article,
.tdg-body .not-found {
  border-color: rgba(199, 185, 171, 0.84);
  background:
    radial-gradient(circle at top right, rgba(179, 38, 30, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 254, 252, 0.99), rgba(249, 243, 236, 0.98));
  box-shadow: 0 18px 38px rgba(57, 42, 27, 0.08);
}
.tdg-body .product-card,
.tdg-body .post-card,
.tdg-body .route-note,
.tdg-body .stat,
.tdg-body .article-meta-card,
.tdg-body .guided-link-card,
.tdg-body .guide-card,
.tdg-body .rail-card,
.tdg-body .answer-box,
.tdg-body .article-toc,
.tdg-body .author-card,
.tdg-body .article-table-block {
  border-color: rgba(199, 185, 171, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 244, 237, 0.97));
  box-shadow: 0 12px 26px rgba(57, 42, 27, 0.06);
}
.tdg-body .guide-card-header,
.tdg-body .rail-card-header {
  background: linear-gradient(135deg, #0f161e, #182432 68%, #8b1d12);
}
.tdg-body .guided-link-card strong,
.tdg-body .article-meta-card h2,
.tdg-body .product-card h3,
.tdg-body .post-card h3 {
  color: #171515;
}
.tdg-body .guided-link-card p,
.tdg-body .article-meta-card p,
.tdg-body .product-card .muted,
.tdg-body .post-card .muted {
  color: #4e453d;
}
.tdg-body .article-shell {
  gap: 20px;
}
.tdg-body .article-section-block {
  padding-top: 18px;
  border-top: 1px solid rgba(199, 185, 171, 0.6);
}
.tdg-body .faq-item {
  border: 1px solid rgba(199, 185, 171, 0.84);
  background: rgba(255, 255, 255, 0.96);
}
.tdg-body .article-breadcrumbs a,
.tdg-body .article-byline a {
  color: #8b1d12;
}
.tdg-body .pill {
  border-color: rgba(139, 29, 18, 0.14);
  background: rgba(139, 29, 18, 0.06);
}
.article-result-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071f3a, #0b2e57 62%, #133b68);
  color: #f7fbff;
}
.article-result-strip strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.article-result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-result-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 12px;
  font-size: 0.84rem;
}
.footer-links a { margin-right: 12px; }
.review-body {
  margin: 0;
  color: #152130;
  background:
    radial-gradient(circle at top left, rgba(11, 61, 99, 0.24), transparent 20%),
    linear-gradient(180deg, #06121d 0%, #0d2234 18%, #f3ede3 18.1%, #f6f1e8 100%);
}
.review-shell {
  min-height: 100vh;
  color: #152130;
}
.review-utility {
  background: rgba(5, 18, 29, 0.92);
  border-bottom: 1px solid rgba(141, 180, 209, 0.16);
}
.review-utility-row,
.review-topbar,
.review-main,
.review-footer {
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.review-utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #d7e4ee;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-topbar {
  position: static;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 18px;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 39, 62, 0.08);
}
.review-brand-block {
  display: grid;
  gap: 10px;
}
.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #081722;
  text-decoration: none;
}
.review-brand:hover {
  text-decoration: none;
}
.review-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d4068, #082338 72%);
  box-shadow: 0 18px 30px rgba(8, 35, 56, 0.22);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.review-brand-text {
  display: grid;
  gap: 4px;
}
.review-brand-text strong {
  font-family: "Avenir Next", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
}
.review-brand-text span {
  color: #54697c;
  font-size: 0.9rem;
}
.review-brand-note {
  margin: 0;
  color: #516274;
  font-size: 0.92rem;
  line-height: 1.55;
}
.review-nav-cluster {
  display: grid;
  gap: 12px;
}
.review-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #11263a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(8, 35, 56, 0.08);
}
.review-nav a:hover,
.review-silo-strip a:hover {
  text-decoration: none;
}
.review-silo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-silo-strip a {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 64, 104, 0.07);
  border: 1px solid rgba(13, 64, 104, 0.12);
  color: #39566f;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.review-search {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(9, 37, 58, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 248, 0.92));
  box-shadow: 0 18px 36px rgba(7, 24, 37, 0.08);
}
.review-search-label {
  color: #4a6073;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-search-row {
  display: flex;
  gap: 10px;
}
.review-search input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(8, 35, 56, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #102233;
}
.review-search button,
.review-shell .button-link {
  border-radius: 16px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0d4068, #0a2741 72%);
  box-shadow: 0 14px 28px rgba(8, 35, 56, 0.16);
}
.review-shell .button-link.alt {
  background: rgba(255, 255, 255, 0.85);
  color: #0a2741;
  border: 1px solid rgba(10, 39, 65, 0.12);
  box-shadow: none;
}
.review-main {
  padding-top: 28px;
  padding-bottom: 70px;
}
.review-main .hero,
.review-main .page-hero,
.review-main .product-hero,
.review-main .article,
.review-main .route-note,
.review-main .card,
.review-main .post-card,
.review-main .product-card,
.review-main .guide-card,
.review-main .rail-card,
.review-main .answer-box,
.review-main .article-toc,
.review-main .author-card,
.review-main .article-table-block {
  border-color: rgba(8, 35, 56, 0.09);
  box-shadow: 0 22px 44px rgba(8, 31, 48, 0.08);
}
.review-main .hero,
.review-main .page-hero,
.review-main .product-hero,
.review-main .article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94));
  border-radius: 32px;
}
.review-main .page-hero,
.review-main .product-hero {
  max-width: 1280px;
}
.review-home-hero,
.review-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}
.review-home-search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
}
.review-hero-copy,
.review-page-hero-copy {
  display: grid;
  gap: 16px;
}
.review-home-search-copy,
.review-home-search-side,
.review-home-proof-panel,
.review-home-trust-panel,
.review-home-category-panel,
.review-home-guide-list {
  display: grid;
  gap: 16px;
}
.review-home-search-shell,
.review-home-spotlight,
.review-home-proof-panel,
.review-home-trust-panel,
.review-home-category-panel,
.review-home-guide-list {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(8, 35, 56, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 251, 0.96));
  box-shadow: 0 22px 42px rgba(8, 31, 48, 0.08);
}
.review-home-search-shell {
  gap: 12px;
}
.review-home-search-label,
.review-home-chip-title {
  color: #4a6073;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-home-search-row {
  display: flex;
  gap: 10px;
}
.review-home-search-row input {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(8, 35, 56, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: #102233;
}
.review-home-chip-block {
  display: grid;
  gap: 10px;
}
.review-home-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-home-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 64, 104, 0.08);
  border: 1px solid rgba(13, 64, 104, 0.12);
  color: #183a56;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.review-home-chip:hover,
.review-home-category-tile:hover,
.review-home-guide-row:hover {
  text-decoration: none;
}
.review-home-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-home-proof-card {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(10, 39, 62, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 249, 0.9));
}
.review-home-proof-card strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}
.review-home-proof-card span {
  color: #536778;
  font-size: 0.9rem;
}
.review-home-spotlight {
  display: grid;
  gap: 14px;
}
.review-home-spotlight h2,
.review-home-proof-panel h2,
.review-home-trust-panel h2,
.review-home-guide-list h2,
.review-home-category-panel h2 {
  margin: 0;
}
.review-home-spotlight-media {
  margin-top: 4px;
}
.review-home-discovery-grid,
.review-home-guide-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: start;
}
.review-home-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.review-home-category-tile {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(8, 35, 56, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.95));
  box-shadow: 0 18px 34px rgba(8, 31, 48, 0.06);
  color: #102133;
}
.review-home-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 64, 104, 0.12), rgba(8, 35, 56, 0.06));
  border: 1px solid rgba(13, 64, 104, 0.12);
  color: #0d4068;
  font-weight: 800;
}
.review-home-category-meta {
  color: #4c6477;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-home-category-tile p {
  margin: 0;
  color: #576979;
  line-height: 1.55;
}
.review-home-guide-rows {
  display: grid;
  gap: 12px;
}
.review-home-guide-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(8, 35, 56, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.95));
  box-shadow: 0 16px 28px rgba(8, 31, 48, 0.05);
  color: #102133;
}
.review-home-guide-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 64, 104, 0.08);
  color: #0d4068;
  font-weight: 800;
}
.review-home-guide-copy {
  display: grid;
  gap: 4px;
}
.review-home-guide-copy strong {
  font-size: 1rem;
}
.review-home-guide-copy span,
.review-home-guide-cta {
  color: #576979;
  font-size: 0.92rem;
}
.review-home-guide-cta {
  font-weight: 700;
  white-space: nowrap;
}
.review-home-trust-links {
  display: grid;
  gap: 12px;
}
.review-main .review-home-trust-links a {
  display: block;
  padding: 11px 14px;
  border-radius: 16px;
  border: 1px solid rgba(8, 35, 56, 0.09);
  background: rgba(255, 255, 255, 0.72);
  color: #102133;
}
.review-main .review-home-trust-links a:hover {
  text-decoration: none;
  border-color: rgba(13, 64, 104, 0.22);
}
.review-home-search-hero {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  padding: 38px 36px 34px;
}
.review-home-search-copy {
  max-width: 900px;
  width: 100%;
  justify-items: center;
  text-align: center;
}
.review-home-search-copy .lede {
  max-width: 54rem;
}
.review-page-search-hero {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  padding: 38px 36px 34px;
}
.review-page-search-hero .review-page-hero-copy {
  max-width: 900px;
  width: 100%;
  justify-items: center;
  text-align: center;
}
.review-page-search-hero .review-page-hero-copy .lede {
  max-width: 54rem;
}
.review-page-search-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}
.review-page-search-band,
.review-page-highlights,
.review-page-feature-band {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0;
}
.review-page-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-page-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(8, 35, 56, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(8, 35, 56, 0.08);
}
.review-page-feature-card > figure,
.review-page-feature-card > .review-home-showcase-media,
.review-page-feature-card .product-media,
.review-page-feature-card .article-media {
  margin: 0;
  height: 100%;
}
.review-page-feature-card .review-home-showcase-media,
.review-page-feature-card .product-media,
.review-page-feature-card .article-media {
  min-height: 220px;
}
.review-page-feature-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}
.review-page-feature-copy h2,
.review-page-feature-copy h3,
.review-page-feature-copy p {
  margin: 0;
}
.review-page-feature-copy p {
  color: #4f6477;
}
.review-page-feature-copy .review-home-inline-link {
  justify-self: start;
}
.review-home-search-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 20px 22px;
}
.review-home-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.review-home-search-row input {
  min-height: 58px;
  font-size: 0.98rem;
}
.review-home-search-row button {
  border: 0;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6b141, #f08d1d);
  color: #1d2430;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 30px rgba(240, 141, 29, 0.24);
}
.review-home-chip-block {
  justify-items: center;
}
.review-home-chip-strip {
  justify-content: center;
}
.review-home-buyer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 20px;
  align-items: start;
}
.review-home-primary-column,
.review-home-sidebar-stack {
  display: grid;
  gap: 18px;
}
.review-home-category-panel,
.review-home-guide-list,
.review-home-proof-panel,
.review-home-trust-panel,
.review-home-spotlight {
  padding: 26px;
  border-radius: 30px;
}
.review-home-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review-home-category-tile {
  min-height: 156px;
  justify-items: center;
  text-align: center;
  align-content: start;
}
.review-home-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}
.review-home-guide-row {
  grid-template-columns: 110px minmax(0, 1fr) auto;
  padding: 14px;
  gap: 16px;
}
.review-home-guide-index {
  display: none;
}
.review-home-guide-thumb {
  margin: 0;
  align-self: stretch;
  min-height: 92px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 33, 51, 0.05), rgba(9, 33, 51, 0.01));
}
.review-home-guide-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.review-home-guide-copy strong {
  font-size: 1.02rem;
  line-height: 1.32;
}
.review-home-guide-copy span {
  line-height: 1.45;
}
.review-home-proof-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.review-home-proof-bullet {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(13, 64, 104, 0.12);
  background: rgba(13, 64, 104, 0.05);
  color: #183a56;
  font-size: 0.92rem;
  font-weight: 700;
}
.review-home-trust-panel .review-home-proof-grid {
  margin-top: 2px;
}
.review-home-featured-picks {
  gap: 16px;
}
.review-hero-copy h1,
.review-page-hero-copy h1,
.review-main .article h1,
.review-main .product-hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.1rem, 6vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 11ch;
}
.review-page-hero-copy h1,
.review-main .product-hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.3rem);
  max-width: 13ch;
}
.review-main .lede,
.review-main .muted {
  color: #556777;
}
.review-main .stats {
  gap: 14px;
}
.review-main .stat {
  min-width: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.95));
}
.review-hero-actions {
  margin-top: 4px;
}
.review-hero-side {
  display: grid;
  gap: 14px;
}
.review-main .article-media,
.review-main .article-hero-media,
.review-main .product-media,
.review-main .author-portrait,
.review-main .card-media {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 33, 51, 0.03), rgba(9, 33, 51, 0.01));
}
.review-main .article-media img,
.review-main .article-hero-media img,
.review-main .product-media img,
.review-main .author-portrait img,
.review-main .card-media img {
  display: block;
  width: 100%;
}
.review-highlight-stack {
  display: grid;
  gap: 12px;
}
.review-highlight-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(10, 39, 62, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 249, 0.9));
  box-shadow: 0 16px 28px rgba(7, 24, 37, 0.06);
}
.review-highlight-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0d2d46;
}
.review-highlight-card p {
  margin: 0;
  color: #576979;
  line-height: 1.55;
}
.review-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 12px;
}
.review-section-head > div {
  display: grid;
  gap: 4px;
}
.review-section-head p {
  max-width: 42rem;
  margin: 0;
}
.review-main .section h2,
.review-main .article h2,
.review-main .route-note h2,
.review-main .rail-card h2,
.review-main .guide-card h2,
.review-main .answer-box h2,
.review-main .article-toc h2,
.review-main .article-table-block h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.03em;
}
.review-main .section h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}
.review-shell .card,
.review-shell .post-card,
.review-shell .product-card,
.review-shell .route-note,
.review-shell .stat,
.review-shell .guide-card,
.review-shell .rail-card,
.review-shell .answer-box,
.review-shell .article-toc,
.review-shell .guided-links-block,
.review-shell .author-card,
.review-shell .article-table-block,
.review-shell .faq-item,
.review-shell .article-meta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.95));
}
.review-shell .card,
.review-shell .post-card,
.review-shell .product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-shell .card:hover,
.review-shell .post-card:hover,
.review-shell .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(8, 31, 48, 0.12);
  text-decoration: none;
}
.review-shell .micro-copy {
  color: #4b7090;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.review-shell .pill {
  border-color: rgba(13, 64, 104, 0.12);
  background: rgba(13, 64, 104, 0.06);
  color: #234866;
}
.review-shell .archive-grid,
.review-shell .card-grid {
  gap: 18px;
}
.review-shell .product-card h3,
.review-shell .post-card h3,
.review-shell .card strong {
  color: #102133;
}
.review-shell .post-card h3,
.review-shell .product-card h3 {
  font-size: 1.12rem;
  line-height: 1.28;
}
.review-shell .article-shell {
  max-width: 1450px;
  margin: 0 auto;
}
.review-shell .article-guide-rail,
.review-shell .article-rail {
  top: 118px;
}
.review-shell .guide-card,
.review-shell .rail-card {
  border-radius: 24px;
}
.review-shell .guide-card-header,
.review-shell .rail-card-header {
  background: linear-gradient(135deg, #0d2f4c, #0b3f67 68%, #1d6a8d);
}
.review-shell .article-result-strip {
  max-width: 1450px;
  margin: 24px auto 0;
  box-shadow: 0 22px 42px rgba(7, 24, 37, 0.16);
}
.review-shell .article-page-hero,
.review-shell .author-page-hero {
  margin-bottom: 18px;
}
.review-shell .article-page-hero .article-breadcrumbs,
.review-shell .article-page-hero .article-byline,
.review-shell .author-page-hero .pill-row {
  margin-top: 0;
}
.review-shell .author-page-hero .review-highlight-card p,
.review-shell .article-page-hero .review-highlight-card p {
  margin: 0;
}
.author-profile-page {
  max-width: 1200px;
}
.author-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}
.author-profile-copy {
  display: grid;
  gap: 12px;
}
.author-profile-copy h1 {
  max-width: 12ch;
}
.author-profile-media {
  display: grid;
}
.review-footer {
  padding-bottom: 34px;
}
.review-footer-shell {
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, #081521, #10293d 68%);
  box-shadow: 0 32px 54px rgba(6, 18, 29, 0.22);
  padding: 32px 28px 36px;
  color: #eef4f8;
}
.review-footer-lead {
  display: grid;
  gap: 10px;
  max-width: 52rem;
  margin-bottom: 24px;
}
.review-footer-kicker {
  color: #8fc3e2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-footer-lead h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.review-footer-lead p {
  margin: 0;
  color: #cedae3;
  line-height: 1.65;
}
.review-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 1fr;
  gap: 18px;
}
.review-footer-grid h3 {
  margin: 0 0 12px;
  font-family: "Avenir Next", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-footer-grid p {
  margin: 0;
  color: #cdd8e2;
  line-height: 1.6;
}
.review-footer-links {
  display: grid;
  gap: 9px;
}
.review-footer-links a {
  color: #ecf4f8;
  text-decoration: none;
}
.review-footer-links a:hover {
  text-decoration: underline;
}
.review-body {
  background:
    radial-gradient(circle at top left, rgba(205, 179, 123, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f3eb 0%, #fbf9f4 28%, #f6f0e6 100%);
}
.review-shell {
  color: #163a59;
}
.review-topbar,
.review-main,
.review-footer {
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.review-topbar {
  position: static;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 16px;
  background: rgba(252, 249, 243, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 58, 89, 0.08);
}
.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #173b5a;
  text-decoration: none;
}
.review-brand:hover,
.review-nav a:hover,
.review-home-scene-card:hover,
.review-home-story-card:hover,
.review-home-utility-card:hover,
.review-home-shortcut-card:hover,
.review-home-gear-card:hover {
  text-decoration: none;
}
.review-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #173b5a;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ffd24c 0%, #ffb01f 100%);
  border: 1px solid rgba(195, 141, 49, 0.24);
  box-shadow: 0 12px 24px rgba(120, 94, 44, 0.10);
}
.review-brand-text {
  display: grid;
  gap: 2px;
}
.review-brand-text strong {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.review-brand-text span {
  color: #6a7a89;
  font-size: 0.84rem;
}
.review-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.review-nav a {
  position: relative;
  padding: 12px 10px;
  color: #1c4566;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.review-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.18s ease;
}
.review-nav a.active::after,
.review-nav a:hover::after {
  background: #c98f2c;
}
.review-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 58, 89, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #173b5a;
  box-shadow: 0 10px 20px rgba(17, 45, 67, 0.08);
}
.review-icon-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.review-main {
  padding-top: 22px;
  padding-bottom: 48px;
}
.review-home-split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.review-home-hero-copy-panel,
.review-home-hero-panel,
.review-home-hero-inset,
.review-home-showcase-card,
.review-home-lane-card {
  border-radius: 28px;
  border: 1px solid rgba(22, 58, 89, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(17, 45, 67, 0.08);
}
.review-home-hero-copy-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 42px 38px;
  min-height: 560px;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 76, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 231, 0.95));
}
.review-home-hero-copy-panel h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #123c61;
}
.review-home-hero-copy-panel .lede {
  margin: 0;
  max-width: 32rem;
  color: #4d6374;
  font-size: 1.16rem;
  line-height: 1.7;
}
.review-home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.review-home-hero-metric {
  display: grid;
  gap: 4px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(22, 58, 89, 0.10);
  background: rgba(255, 255, 255, 0.84);
}
.review-home-hero-metric strong {
  color: #123c61;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.review-home-hero-metric span {
  color: #5a7184;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-home-hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}
.review-home-hero-panel,
.review-home-hero-inset {
  display: grid;
  overflow: hidden;
  text-decoration: none;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.96));
}
.review-home-hero-panel-media,
.review-home-hero-inset-media,
.review-home-showcase-media,
.review-home-lane-media {
  margin: 0;
}
.review-home-hero-panel-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
}
.review-home-hero-inset {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
}
.review-home-hero-inset-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}
.review-home-hero-inset span {
  display: grid;
  gap: 4px;
  color: #173b5a;
}
.review-home-hero-inset strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-home-hero-inset em {
  color: #194f79;
  font-style: normal;
  font-weight: 700;
}
.review-home-coastal-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  padding: 74px 54px 150px;
  border-radius: 34px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 52px rgba(15, 35, 52, 0.12);
}
.review-home-coastal-copy {
  max-width: 38rem;
  display: grid;
  gap: 18px;
}
.review-home-coastal-copy h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #123c61;
}
.review-home-coastal-copy .lede {
  max-width: 33rem;
  margin: 0;
  color: #35556f;
  font-size: 1.28rem;
  line-height: 1.55;
}
.review-home-coastal-actions {
  margin-top: 4px;
}
.review-home-shortcut-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto 34px;
  padding: 0 12px;
}
.review-home-shortcut-card,
.review-home-utility-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(22, 58, 89, 0.10);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 45, 67, 0.10);
  color: #173b5a;
}
.review-home-shortcut-icon,
.review-home-utility-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e5078;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(236, 245, 251, 0.96), rgba(245, 238, 226, 0.92));
  border: 1px solid rgba(30, 80, 120, 0.12);
}
.review-home-shortcut-card strong,
.review-home-utility-card strong,
.review-home-story-body h3,
.review-home-gear-body h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color: #173b5a;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}
.review-home-shortcut-card span,
.review-home-utility-card p,
.review-home-story-body p,
.review-home-gear-body p,
.review-home-trust-band-copy p,
.review-home-trust-pill span {
  color: #5b6f80;
  line-height: 1.6;
}
.review-home-shortcut-card em {
  color: #174b74;
  font-style: normal;
  font-weight: 700;
}
.review-home-editorial-section {
  padding-top: 8px;
}
.review-home-showcase-grid,
.review-home-lane-grid,
.review-home-story-grid,
.review-home-gear-grid,
.review-home-utility-grid {
  display: grid;
  gap: 18px;
}
.review-home-showcase-grid,
.review-home-lane-grid,
.review-home-story-grid,
.review-home-gear-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.review-home-showcase-card,
.review-home-lane-card {
  overflow: hidden;
}
.review-home-showcase-media img,
.review-home-lane-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  object-position: top;
}
.review-home-showcase-body,
.review-home-lane-body,
.review-home-story-body,
.review-home-gear-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}
.review-home-showcase-body h3,
.review-home-lane-body h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  color: #173b5a;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}
.review-home-showcase-body h3 a,
.review-home-lane-body h3 a,
.review-home-story-body h3 a,
.review-home-gear-body h3 a {
  color: inherit;
}
.review-home-showcase-body p,
.review-home-lane-body p {
  margin: 0;
  color: #5b6f80;
  line-height: 1.6;
}
.review-home-lane-meta {
  color: #194f79;
  font-size: 0.88rem;
  font-weight: 700;
}
.review-home-section-link,
.review-home-inline-link {
  color: #194f79;
  font-weight: 700;
  text-decoration: none;
}
.review-home-section-link:hover,
.review-home-inline-link:hover {
  text-decoration: underline;
}
.review-home-scene-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.review-home-scene-card {
  min-height: 312px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 34px rgba(14, 34, 50, 0.14);
  color: #fff;
}
.review-home-scene-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-home-scene-card strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.review-home-scene-card span:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.review-home-story-card,
.review-home-gear-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 58, 89, 0.10);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 45, 67, 0.08);
}
.review-home-story-body,
.review-home-gear-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}
.article-shell-single .review-page-hero {
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.86fr);
  align-items: stretch;
}
.article-shell-single .review-hero-side {
  align-self: stretch;
}
.article-shell-single .article-source-body {
  margin-top: 0;
}
.article-shell-single .article-source-body .article-body {
  display: grid;
  gap: 16px;
}
.article-shell-single .article-source-body .article-body p,
.article-shell-single .article-source-body .article-body ul,
.article-shell-single .article-source-body .article-body ol {
  margin: 0;
}
.review-home-story-media,
.review-home-gear-media {
  margin: 0;
}
.review-home-story-media img,
.review-home-gear-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}
.review-home-utility-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.review-home-utility-card p {
  margin: 0;
}
.review-home-trust-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
  padding: 34px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 0.96), rgba(239, 234, 223, 0.92));
  border: 1px solid rgba(22, 58, 89, 0.10);
  box-shadow: 0 20px 40px rgba(17, 45, 67, 0.08);
}
.review-home-trust-band-copy {
  display: grid;
  gap: 10px;
}
.review-home-trust-band-copy h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #173b5a;
}
.review-home-trust-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-home-trust-pill {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 58, 89, 0.08);
}
.review-home-trust-pill strong {
  color: #173b5a;
  font-size: 1rem;
}
.review-footer {
  padding-top: 26px;
  padding-bottom: 34px;
}
.review-footer-shell {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 58, 89, 0.08);
  box-shadow: 0 20px 40px rgba(17, 45, 67, 0.08);
  padding: 30px 28px 34px;
  color: #173b5a;
}
.review-footer-lead {
  display: grid;
  gap: 10px;
  max-width: 48rem;
  margin-bottom: 24px;
}
.review-footer-kicker {
  color: #b07b28;
}
.review-footer-lead h2 {
  color: #173b5a;
}
.review-footer-lead p,
.review-footer-grid p {
  color: #5b6f80;
}
.review-footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.review-footer-grid h3 {
  color: #173b5a;
}
.review-footer-links a {
  color: #173b5a;
}
.review-directory-body {
  background: #ffffff;
  color: #1f1f1f;
  font-family: Arial, Helvetica, sans-serif;
}
.review-directory-body .review-main,
.review-directory-body .review-topbar,
.review-directory-body .review-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.review-directory-body .review-main {
  padding-top: 18px;
  padding-bottom: 40px;
}
.review-directory-utility {
  border-top: 1px solid #d7dfea;
  border-bottom: 1px solid #d7dfea;
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
}
.review-directory-utility-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  font-size: 12px;
  color: #555;
}
.review-directory-utility-links a,
.review-directory-footer-links a {
  color: #0b4fab;
  text-decoration: none;
}
.review-directory-utility-search {
  display: flex;
  gap: 6px;
  align-items: center;
}
.review-directory-utility-search input,
.directory-newsletter-form input,
.directory-submit-form input,
.directory-submit-form textarea,
.directory-category-form select {
  border: 1px solid #bfc8d7;
  padding: 6px 8px;
  font: inherit;
  background: #fff;
}
.review-directory-utility-search button,
.directory-newsletter-form button,
.directory-category-form button,
.directory-submit-form button,
.directory-primary-button,
.directory-secondary-button {
  border: 1px solid #234f96;
  background: linear-gradient(180deg, #3f6fba, #184b9a);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 6px 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-directory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 8px;
  background: #fff;
  border: 0;
  box-shadow: none;
}
.review-directory-brand {
  text-decoration: none;
  display: grid;
  gap: 4px;
}
.review-directory-brand strong {
  font-size: 3.2rem;
  line-height: 0.95;
  color: #2757af;
  letter-spacing: -0.05em;
}
.review-directory-brand span {
  color: #6e6e6e;
  font-size: 1.05rem;
}
.review-directory-header-ad,
.directory-ad,
.directory-ad-wide {
  border: 1px solid #d6dde8;
  background: #f7f8fb;
  color: #888;
  text-align: center;
}
.review-directory-header-ad {
  width: 470px;
  max-width: 100%;
  padding: 20px 12px;
}
.review-directory-nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 0 6px;
  background: linear-gradient(180deg, #3a66b5, #1b4795);
  border-top: 1px solid #5b83c7;
  border-bottom: 1px solid #123976;
}
.review-directory-nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
}
.review-directory-nav a.active,
.review-directory-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.review-directory-rss {
  margin-left: auto;
  color: #ffd97b !important;
}
.directory-home-grid,
.directory-page-grid,
.ab-home-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 270px;
  gap: 16px;
  align-items: start;
}
.directory-page-grid {
  grid-template-columns: minmax(0, 1fr) 285px;
}
.ab-home-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.directory-main-column,
.directory-sidebar-column {
  display: grid;
  gap: 16px;
}
.directory-panel,
.directory-publish-callout,
.ab-box,
.review-directory-body .product-card,
.review-directory-body .post-card,
.review-directory-body .route-note,
.review-directory-body .answer-box,
.review-directory-body .article-toc,
.review-directory-body .author-card,
.review-directory-body .faq-item {
  background: #fff;
  border: 1px solid #d7dfea;
  border-radius: 0;
  box-shadow: none;
}
.directory-panel,
.directory-publish-callout,
.ab-box {
  padding: 14px 16px;
}
.directory-publish-callout {
  text-align: center;
}
.directory-publish-callout h3,
.directory-panel h2,
.directory-panel h3,
.ab-box h2,
.ab-box h3 {
  margin: 0 0 10px;
  color: #214c96;
  font-size: 1.05rem;
}
.directory-panel h1,
.ab-intro-box h1,
.ab-article-shell h1 {
  margin: 0 0 12px;
  color: #214c96;
  font-size: 2.2rem;
  line-height: 1.05;
}
.directory-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.directory-panel-head a,
.directory-view-all,
.directory-read-more {
  color: #0b4fab;
  text-decoration: none;
  font-size: 0.92rem;
}
.directory-breadcrumbs,
.ab-breadcrumbs,
.directory-inline-meta,
.ab-byline,
.ab-item-meta,
.directory-link-detail,
.directory-intro,
.ab-note {
  color: #5f5f5f;
  font-size: 0.92rem;
  line-height: 1.5;
}
.directory-breadcrumbs,
.ab-breadcrumbs {
  margin-bottom: 12px;
}
.directory-breadcrumbs a,
.ab-breadcrumbs a {
  color: #0b4fab;
  text-decoration: none;
}
.directory-intro,
.ab-intro-box p,
.directory-panel p,
.ab-box p {
  margin: 0 0 10px;
}
.directory-link-list,
.ab-link-list,
.ab-plain-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}
.directory-link-list li,
.ab-link-list li,
.ab-plain-list li {
  line-height: 1.45;
}
.directory-link-list a,
.ab-link-list a,
.ab-article-shell a,
.directory-panel a {
  color: #0b4fab;
}
.directory-count {
  color: #6d6d6d;
}
.directory-featured-article + .directory-featured-article,
.directory-author-row + .directory-author-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dotted #cbd4e2;
}
.directory-featured-article h3,
.directory-author-row h3,
.ab-article-shell h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  color: #214c96;
}
.directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.directory-table th,
.directory-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #dde4ef;
  text-align: left;
  vertical-align: top;
}
.directory-table th {
  color: #214c96;
  font-weight: 700;
}
.directory-table a {
  color: #0b4fab;
  text-decoration: none;
}
.directory-category-form,
.directory-newsletter-form,
.directory-submit-form,
.ab-assistant-form {
  display: grid;
  gap: 10px;
}
.directory-category-form,
.ab-assistant-form {
  grid-template-columns: minmax(0, 1fr) auto;
}
.ab-assistant-form input {
  border: 1px solid #b7c4d3;
  padding: 9px 10px;
  font: inherit;
}
.ab-assistant-form button {
  border: 1px solid #1f5dbb;
  background: #1f5dbb;
  color: #fff;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
}
.ab-payments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.ab-payment-option {
  border: 1px solid #d7dfea;
  background: #f8fafc;
  padding: 12px;
}
.ab-payment-option h3 {
  margin: 0 0 6px;
}
.ab-payment-price {
  color: #222;
  font-weight: 700;
  margin: 8px 0;
}
.ab-paypal-form {
  margin: 10px 0 0;
}
.ab-paypal-form button {
  border: 1px solid #1f5dbb;
  background: #1f5dbb;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
.ab-small-note {
  color: #5f5f5f;
  font-size: 0.9rem;
}
.directory-submit-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: #333;
}
.directory-submit-form textarea {
  resize: vertical;
}
.directory-submit-actions {
  display: flex;
  justify-content: flex-start;
}
.directory-secondary-button {
  background: #fff;
  color: #214c96;
}
.directory-author-hero {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.directory-author-portrait img,
.ab-author-image img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid #d7dfea;
}
.directory-author-copy h1 {
  margin-bottom: 8px;
}
.directory-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.directory-stats {
  display: grid;
  gap: 8px;
}
.directory-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}
.directory-empty {
  color: #666;
  font-size: 0.92rem;
}
.directory-ad-wide {
  padding: 18px 12px;
}
.directory-ad {
  padding: 48px 12px;
}
.review-directory-footer {
  border-top: 1px solid #d7dfea;
  padding: 18px 0 28px;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}
.review-directory-footer-links {
  margin-bottom: 8px;
}
.review-directory-footer-meta a {
  color: #0b4fab;
}
.ab-kicker {
  margin-bottom: 10px;
  color: #4d4d4d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.ab-article-shell .article-body,
.ab-article-body {
  display: grid;
  gap: 12px;
  color: #222;
}
.ab-article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.ab-article-body th,
.ab-article-body td {
  border: 1px solid #d7dfea;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.ab-article-body th {
  background: #f3f6fb;
  color: #214c96;
}
.ab-related-product-list {
  display: grid;
  gap: 12px;
}
.ab-related-product {
  border-top: 1px solid #dce4ef;
  padding-top: 10px;
}
.ab-related-product h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.ab-related-product .ab-item-meta {
  display: block;
  margin-bottom: 8px;
}
.ab-related-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ab-related-product-actions a {
  color: #0b4fab;
  font-weight: 700;
}
.ab-article-shell figure,
.ab-article-shell img {
  max-width: 100%;
}
.ab-hero-image img,
.product-media img,
.directory-panel .card-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d7dfea;
}
@media (max-width: 1180px) {
  .review-directory-header,
  .review-directory-utility-row {
    padding-left: 12px;
    padding-right: 12px;
  }
  .review-directory-nav,
  .review-directory-body .review-main,
  .review-directory-body .review-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .directory-home-grid,
  .directory-page-grid {
    grid-template-columns: 1fr;
  }
  .ab-home-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .review-directory-utility-row,
  .review-directory-header {
    flex-direction: column;
    align-items: stretch;
  }
  .review-directory-nav {
    flex-wrap: wrap;
  }
  .review-directory-rss {
    margin-left: 0;
  }
  .review-directory-brand strong {
    font-size: 2.35rem;
  }
  .directory-author-hero {
    grid-template-columns: 1fr;
  }
  .directory-category-form,
  .ab-assistant-form {
    grid-template-columns: 1fr;
  }
  .ab-payments-grid {
    grid-template-columns: 1fr;
  }
  .directory-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (max-width: 1180px) {
  .article-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }
  .article-guide-rail {
    display: none;
  }
  .review-home-split-hero {
    grid-template-columns: 1fr;
  }
  .review-home-showcase-grid,
  .review-home-lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-home-scene-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .review-home-utility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .review-home-story-grid,
  .review-home-gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-topbar,
  .review-home-hero,
  .review-home-search-hero,
  .review-page-search-hero,
  .review-page-hero,
  .author-profile-hero,
  .review-home-buyer-layout,
  .review-home-discovery-grid,
  .review-home-guide-band,
  .review-page-feature-card,
  .review-footer-grid {
    grid-template-columns: 1fr;
  }
  .review-home-shortcut-strip,
  .review-home-trust-band {
    grid-template-columns: 1fr 1fr;
  }
  .review-home-hero-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 880px) {
  .topbar {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .search input { width: 100%; }
  main { padding: 18px 18px 42px; }
  .hero { padding: 22px; }
  .tdg-home-hero {
    padding: 24px;
  }
  .tdg-home-hero-grid,
  .tdg-home-proof-grid,
  .tdg-home-process-grid {
    grid-template-columns: 1fr;
  }
  .tdg-home-hero-copy h1 {
    max-width: none;
  }
  .split,
  .article-shell,
  .author-card { grid-template-columns: 1fr; }
  .article-meta-grid { grid-template-columns: 1fr; }
  .article-guide-rail,
  .article-rail { position: static; }
  .article-toc ol { columns: 1; }
  .guided-link-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .article-table {
    min-width: 100%;
    display: block;
  }
  .tdg-route-hero,
  .tdg-signal-grid,
  .tdg-hub-grid,
  .tdg-fact-grid,
  .tdg-search-panel,
  .tdg-generated-result {
    grid-template-columns: 1fr;
  }
  .review-utility-row,
  .review-topbar,
  .review-main,
  .review-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .review-topbar {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .review-search-row,
  .review-home-search-row,
  .review-section-head {
    display: grid;
  }
  .review-home-hero,
  .review-home-search-hero,
  .review-page-search-hero,
  .review-page-hero,
  .author-profile-hero,
  .review-home-buyer-layout,
  .review-home-discovery-grid,
  .review-home-guide-band {
    grid-template-columns: 1fr;
  }
  .review-home-search-shell {
    width: 100%;
  }
  .review-page-search-shell {
    width: 100%;
  }
  .review-page-highlight-grid {
    grid-template-columns: 1fr;
  }
  .review-home-search-row button {
    width: 100%;
  }
  .review-home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-home-showcase-grid,
  .review-home-lane-grid,
  .review-home-proof-grid,
  .review-page-feature-card {
    grid-template-columns: 1fr 1fr;
  }
  .review-home-guide-row {
    grid-template-columns: 1fr;
  }
  .review-home-guide-cta {
    grid-column: auto;
  }
  .review-home-guide-thumb img {
    aspect-ratio: 1.8 / 1;
  }
  .review-main .hero,
  .review-main .page-hero,
  .review-main .product-hero,
  .review-main .article {
    padding: 22px;
  }
  .review-topbar,
  .review-home-split-hero,
  .review-home-shortcut-strip,
  .review-home-showcase-grid,
  .review-page-feature-card,
  .review-home-lane-grid,
  .review-home-scene-grid,
  .review-home-story-grid,
  .review-home-gear-grid,
  .review-home-utility-grid,
  .review-home-trust-band,
  .review-home-trust-band-grid {
    grid-template-columns: 1fr;
  }
  .review-topbar {
    justify-items: start;
  }
  .review-home-hero-copy-panel {
    min-height: 0;
    padding: 28px 22px;
  }
  .review-home-hero-metrics {
    grid-template-columns: 1fr;
  }
  .review-home-hero-inset {
    grid-template-columns: 1fr;
  }
  .review-nav {
    justify-content: flex-start;
  }
  .review-home-coastal-hero {
    min-height: 0;
    padding: 36px 22px 112px;
  }
  .review-home-shortcut-strip {
    margin-top: 0;
    padding: 0 2px;
  }
  .review-hero-copy h1,
  .review-page-hero-copy h1,
  .review-main .article h1,
  .review-main .product-hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
    max-width: none;
  }
}
@media (max-width: 1180px) {
  .tdg-site-header,
  .tdg-home-hero,
  .tdg-home-detail-grid,
  .tdg-site-footer-bar {
    grid-template-columns: 1fr;
  }
  .tdg-site-nav {
    justify-content: flex-start;
  }
  .tdg-site-actions {
    justify-content: flex-start;
  }
  .tdg-lane-grid,
  .tdg-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tdg-home-trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 880px) {
  .tdg-trust-strip-inner,
  .tdg-site-header,
  .tdg-main,
  .tdg-site-footer-bar {
    width: min(1480px, calc(100vw - 32px));
  }
  .tdg-brand-copy strong {
    font-size: 1.72rem;
  }
  .tdg-home-hero-copy {
    padding: 26px 22px 24px;
  }
  .tdg-home-search-row,
  .tdg-route-hero,
  .tdg-market-grid,
  .tdg-premium-panel,
  .tdg-research-grid,
  .tdg-utility-grid,
  .tdg-lane-grid,
  .tdg-catalog-grid,
  .tdg-home-trust-band,
  .tdg-signal-grid,
  .tdg-hub-grid,
  .tdg-fact-grid {
    grid-template-columns: 1fr;
  }
  .tdg-market-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .tdg-site-header {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .tdg-brand {
    align-items: flex-start;
  }
  .tdg-brand-mark {
    width: 62px;
    height: 62px;
  }
  .tdg-brand-copy strong {
    font-size: 1.48rem;
  }
  .tdg-site-nav a {
    font-size: 0.94rem;
  }
  .tdg-home-hero-copy h1,
  .tdg-utility-hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }
  .tdg-home-actions,
  .tdg-home-shortcuts {
    display: grid;
  }
  .tdg-home-actions .button-link,
  .tdg-home-shortcuts a,
  .tdg-sign-in {
    width: 100%;
    justify-content: center;
  }
  .tdg-home-trust-badge {
    grid-template-columns: 1fr;
  }
  .tdg-site-footer-links,
  .tdg-site-footer-icons {
    justify-content: flex-start;
  }
}


/* WordPress compatibility layer */
.screen-reader-text { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.wp-caption, .aligncenter, .alignleft, .alignright { max-width: 100%; }
.wp-caption img, .entry-content img { max-width: 100%; height: auto; }
.entry-content table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid #d8e0ea; padding: 8px 10px; text-align: left; }
.woocommerce .review-main, .woocommerce-page .review-main { display: block; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { border: 1px solid #b7c4d3; padding: 8px 10px; }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button { background: #1f5dbb; color: #fff; border-radius: 2px; }
