/* build-marker: 2026-08-09b */
/* ============================================================
   OzPetInsurance
   Palette: deep eucalypt green, warm gold, paper off-white
   Type: serif body for editorial weight, sans for UI
   ============================================================ */

:root {
  --green-900: #16261a;
  --green-800: #1c2b1e;
  --green-600: #2a7a4b;
  --green-400: #4a9e6c;
  --green-100: #e8f5ed;
  --green-050: #f2f9f5;

  --gold-600: #b8791a;
  --gold-500: #e8a020;
  --gold-100: #fdf3d8;

  --ink-900: #14181a;
  --ink-700: #2d3438;
  --ink-500: #5a6469;
  --ink-400: #7d878c;
  --ink-300: #a8b0b4;

  --paper: #faf9f6;
  --paper-2: #f4f2ed;
  --white: #ffffff;
  --line: #e4e1d9;
  --line-2: #d6d2c8;

  --red-600: #b3402f;
  --red-050: #fdf3f1;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 26, 0.05);
  --shadow-md: 0 4px 16px rgba(20, 24, 26, 0.07);
  --shadow-lg: 0 12px 40px rgba(20, 24, 26, 0.10);

  --wrap: 1140px;
  --read: 720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-600); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-800);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  font-family: var(--sans);
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------- nav */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: var(--green-700, #1f5f39);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold-500); }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover {
  color: var(--green-600);
  border-bottom-color: var(--green-600);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
  background: var(--green-600);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: var(--green-800); }
.nav-cta:active { transform: translateY(1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 6px 28px 14px;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 550;
  color: var(--ink-900);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child {
  border-bottom: none;
  color: var(--green-600);
  font-weight: 650;
}

/* ------------------------------------------------------- hero */

.hero {
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(74, 158, 108, 0.35), transparent 60%),
    linear-gradient(150deg, var(--green-900) 0%, var(--green-600) 130%);
  color: #fff;
  padding: 92px 28px 78px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-500); }

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
  padding: 15px 32px;
  border-radius: var(--r-md);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 4px 18px rgba(232, 160, 32, 0.3);
}
.btn-gold:hover { background: #f0ad33; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn-green {
  background: var(--green-600);
  color: #fff;
}
.btn-green:hover { background: var(--green-800); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 750;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.hero-stat span {
  font-family: var(--sans);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.68);
}

/* ------------------------------------------------------- trust bar */

.trust {
  background: var(--green-100);
  border-bottom: 1px solid #d5e8dd;
  padding: 16px 28px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 550;
  color: #1f5f39;
}
.trust span::before { content: "\2713"; margin-right: 8px; font-weight: 700; }

/* ------------------------------------------------------- sections */

.section { padding: 78px 28px; }
.section.alt { background: var(--paper-2); }
.section-inner { max-width: var(--wrap); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--green-400); }

h2 {
  font-family: var(--sans);
  font-size: clamp(25px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 600px;
  margin-bottom: 44px;
}

/* ------------------------------------------------------- tables */

.table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14.5px;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 560px;
}

table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-400);
  padding-bottom: 10px;
}

thead { background: var(--green-800); }
thead th {
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-700);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: #fbfaf7; }
tbody tr:hover td { background: var(--green-050); }

.cost-hi { color: var(--red-600); font-weight: 650; white-space: nowrap; }
.cost-lo { color: var(--green-600); font-weight: 650; white-space: nowrap; }

.provider-name { font-weight: 700; color: var(--ink-900); display: block; }
.provider-sub { font-size: 12px; color: var(--ink-400); display: block; }

.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 650;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-green { background: var(--green-100); color: #1f5f39; }
.badge-gold { background: var(--gold-100); color: var(--gold-600); }

.rating { color: var(--gold-500); font-size: 15px; letter-spacing: 1px; }

.btn-sm {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  background: var(--green-600);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-sm:hover { background: var(--green-800); }

.table-cta { text-align: center; margin-top: 30px; }

/* ------------------------------------------------------- steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-family: var(--sans);
  font-weight: 750;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 9px;
}
.step p { font-size: 15px; color: var(--ink-500); line-height: 1.6; }

/* ------------------------------------------------------- feature cards */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
}
.feature-icon { font-size: 30px; margin-bottom: 14px; line-height: 1; }
.feature h3 {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 9px;
}
.feature p { font-size: 15px; color: var(--ink-500); line-height: 1.62; }

/* ------------------------------------------------------- article */

.article {
  max-width: var(--read);
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.article-narrow { max-width: 680px; }

.article-head { margin-bottom: 40px; }

.article h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: 20px;
}

.standfirst {
  font-size: 19.5px;
  line-height: 1.58;
  color: var(--ink-500);
  border-left: 3px solid var(--green-600);
  padding-left: 20px;
  margin-bottom: 26px;
}

.article-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-400);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.article-body p { margin-bottom: 22px; }

.article-body h2 {
  font-size: 25px;
  margin: 48px 0 16px;
  scroll-margin-top: 88px;
}
.article-body h3 {
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 32px 0 10px;
}

.article-body ul,
.article-body ol { padding-left: 26px; margin-bottom: 22px; }
.article-body li { margin-bottom: 10px; }

.article-body strong { color: var(--ink-900); font-weight: 650; }

/* ------------------------------------------------------- toc */

.toc {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-family: var(--sans);
}
.toc h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 13px;
}
.toc ol { padding-left: 20px; margin-bottom: 0; }
.toc li { margin-bottom: 6px; font-size: 14.5px; }
.toc a { color: var(--green-600); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ------------------------------------------------------- callouts */

.callout {
  border-left: 4px solid var(--green-600);
  background: var(--green-050);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 16.5px;
  line-height: 1.65;
}
.callout.warn {
  border-left-color: var(--gold-500);
  background: #fdfaf0;
  font-family: var(--sans);
  font-size: 15px;
}
.callout strong { color: var(--green-600); }
.callout.warn strong { color: var(--gold-600); }

.quote {
  border-left: 4px solid var(--green-600);
  background: var(--green-050);
  padding: 22px 26px;
  margin: 32px 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-700);
}
.quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  color: var(--ink-400);
  margin-top: 10px;
}

/* ------------------------------------------------------- provider cards */

.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 24px;
}
.pcard.top { border: 2px solid var(--green-600); }

.pcard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pcard-name {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.pcard p { font-size: 16px; }

.pstats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.pstat {
  background: var(--paper-2);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--sans);
}
.pstat-l {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  margin-bottom: 3px;
}
.pstat-v { font-size: 15px; font-weight: 700; color: var(--ink-900); }

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  font-family: var(--sans);
}
.proscons h4 {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.proscons .pros h4 { color: var(--green-600); }
.proscons .cons h4 { color: var(--red-600); }
.proscons ul { padding-left: 18px; margin-bottom: 0; }
.proscons li { font-size: 13.5px; margin-bottom: 6px; line-height: 1.5; }

.pverdict {
  background: var(--paper-2);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
}
.pverdict strong { color: var(--green-600); }

/* ------------------------------------------------------- split yes/no */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
  font-family: var(--sans);
}
.split > div { padding: 22px; border-radius: var(--r-md); }
.split .yes { background: var(--green-050); border: 1px solid #bfdfcd; }
.split .no { background: var(--red-050); border: 1px solid #eecfc9; }
.split h4 { font-size: 14px; font-weight: 700; margin-bottom: 11px; }
.split .yes h4 { color: #1a5c35; }
.split .no h4 { color: var(--red-600); }
.split ul { padding-left: 19px; margin-bottom: 0; }
.split li { font-size: 14px; margin-bottom: 7px; line-height: 1.5; }

/* ------------------------------------------------------- verdict */

.verdict {
  background: var(--green-800);
  color: #eaf4ee;
  border-radius: var(--r-lg);
  padding: 30px 34px;
  margin: 40px 0;
}
.verdict h3 {
  font-family: var(--sans);
  font-size: 11.5px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fcfa8 !important;
  margin: 0 0 13px !important;
}
.verdict p {
  font-size: 17.5px;
  color: #eaf4ee;
  margin-bottom: 0 !important;
  line-height: 1.65;
}

/* ------------------------------------------------------- faq */

.faq { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq:last-of-type { border-bottom: none; }
.faq-q {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 9px;
}
.faq-a { font-size: 16.5px; color: var(--ink-500); line-height: 1.65; }

/* ------------------------------------------------------- related + disclosure */

.related {
  background: var(--green-050);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 40px;
  font-family: var(--sans);
}
.related h4 {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 13px;
}
.related ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.related li { margin-bottom: 9px; font-size: 15.5px; }
.related a { color: var(--ink-900); text-decoration: none; font-weight: 600; }
.related a:hover { color: var(--green-600); text-decoration: underline; }

.disclosure {
  background: var(--paper-2);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 44px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-400);
  line-height: 1.65;
}
.disclosure strong { color: var(--ink-500); }

/* ------------------------------------------------------- page hero (guides) */

.page-hero {
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-600) 140%);
  color: #fff;
  padding: 68px 28px 62px;
}
.page-hero-inner { max-width: var(--wrap); margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

/* ------------------------------------------------------- guide cards */

.guides-wrap { max-width: var(--wrap); margin: 0 auto; padding: 60px 28px 90px; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.guide-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-400);
}
.guide-card-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 11px;
}
.guide-card h2 {
  font-size: 21px;
  line-height: 1.24;
  margin-bottom: 11px;
  letter-spacing: -0.02em;
}
.guide-card p {
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.guide-card-meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-300);
  margin-bottom: 14px;
}
.guide-card-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
  color: var(--green-600);
}

/* ------------------------------------------------------- footer */

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.62);
  padding: 56px 28px 26px;
  margin-top: 0;
}
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold-500); }
.footer-desc { font-size: 14.5px; line-height: 1.7; max-width: 380px; }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer ul a {
  font-family: var(--sans);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ------------------------------------------------------- responsive */

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 20px; height: 62px; }

  .hero { padding: 62px 20px 56px; }
  .hero-stats { gap: 30px; margin-top: 40px; }
  .hero-stat strong { font-size: 25px; }

  .trust { gap: 18px; font-size: 13px; padding: 14px 20px; }

  .section { padding: 54px 20px; }
  .article { padding: 40px 20px 64px; }
  .article-body h2 { font-size: 22px; margin-top: 38px; }

  .proscons, .split { grid-template-columns: 1fr; }
  .pstats { grid-template-columns: 1fr 1fr; }

  .guides-wrap { padding: 44px 20px 70px; }
  .guides-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 52px 20px 46px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer { padding: 44px 20px 24px; }

  .verdict { padding: 24px 22px; }
  .toc { padding: 20px 22px; }
}

/* ------------------------------------------------------- sortable tables */

td.cell-na {
  color: var(--ink-300);
  font-size: 13.5px;
}

table.sortable th[data-sort] {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 22px;
  white-space: nowrap;
}
table.sortable th[data-sort]:hover,
table.sortable th[data-sort]:focus-visible {
  color: var(--green-600);
}
table.sortable th[data-sort]::after {
  content: "\2195";
  position: absolute;
  right: 8px;
  opacity: 0.35;
  font-size: 11px;
}
table.sortable th[data-dir="asc"]::after { content: "\2191"; opacity: 1; }
table.sortable th[data-dir="desc"]::after { content: "\2193"; opacity: 1; }

/* ---------------------------------------------------------------- imagery */

.hero-image {
  max-width: var(--wrap);
  margin: -34px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.hero-image img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.article-figure {
  margin: 0 0 40px;
}
.article-figure img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.article-figure figcaption {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-400);
  padding-top: 10px;
}

/* In-body images sit inside .article-body and get a little more breathing room */
.article-body .article-figure {
  margin: 40px 0;
}

@media (max-width: 760px) {
  .hero-image { margin-top: -20px; padding: 0 20px; }
  .article-figure { margin-bottom: 30px; }
}

@media print {
  .nav-wrap, .site-footer, .related, .hero-btns { display: none; }
  body { background: #fff; font-size: 12pt; }
  .article { max-width: none; padding: 0; }
  .article-figure, .hero-image { break-inside: avoid; }
}
