:root {
  --paper: #f7f6f1;
  --surface: #ffffff;
  --surface-soft: #f1f3ee;
  --ink: #17211e;
  --muted: #65706b;
  --forest: #063e32;
  --forest-2: #0b5948;
  --forest-3: #dcebe5;
  --gold: #c99235;
  --gold-soft: #f5e8ce;
  --line: #dde2dc;
  --danger: #b7483f;
  --shadow-sm: 0 8px 24px rgb(13 45 36 / 7%);
  --shadow-lg: 0 24px 60px rgb(13 45 36 / 12%);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-color: color-mix(in srgb, var(--forest) 45%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--forest-2); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  translate: 0 -160%;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.skip-link:focus { translate: 0; }
.container { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--forest-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { width: 18px; height: 1px; background: currentColor; content: ""; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-heading h2, .section-heading h1 { margin: 0; font: 700 clamp(1.75rem, 3vw, 2.45rem)/1.1 var(--serif); letter-spacing: -.025em; }
.section-link { display: inline-flex; align-items: center; gap: 7px; color: var(--forest); font-size: .84rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.section-link::after { content: "→"; transition: transform .2s ease; }
.section-link:hover::after { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(221 226 220 / 85%);
  background: rgb(247 246 241 / 92%);
  backdrop-filter: blur(16px);
}
.header-row { min-height: 74px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 160px; text-decoration: none; }
.brand img { width: 160px; max-height: 48px; object-fit: contain; object-position: left center; }
.main-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: clamp(18px, 2.7vw, 34px); margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; font-size: .82rem; font-weight: 650; text-decoration: none; }
.nav-list a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; scale: 0 1; background: var(--gold); content: ""; transition: scale .2s ease; }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { scale: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.icon-button svg, .menu-button svg { width: 18px; height: 18px; }
.menu-button { display: none; }
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--forest);
  border-radius: 7px;
  background: var(--forest);
  color: white;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: translate .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { translate: 0 -1px; background: var(--forest-2); color: white; box-shadow: var(--shadow-sm); }
.button--light { border-color: var(--line); background: var(--surface); color: var(--forest); }
.button--light:hover { background: var(--surface-soft); color: var(--forest); }
.button--gold { border-color: var(--gold); background: var(--gold); color: #17211e; }

.mobile-nav { display: none; }
.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
  background: rgb(3 25 20 / 64%);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(8px);
  transition: opacity .2s ease, visibility .2s ease;
}
.search-drawer.is-open { opacity: 1; visibility: visible; }
.search-panel { position: relative; width: min(680px, calc(100% - 32px)); padding: 34px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.search-panel h2 { margin: 0 0 16px; font: 700 2rem/1.15 var(--serif); }
.search-panel form { display: flex; gap: 10px; }
.search-panel input, .newsletter-form input, .search-page-form input {
  min-width: 0;
  flex: 1;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}
.search-panel input:focus, .newsletter-form input:focus, .search-page-form input:focus { border-color: var(--forest-2); box-shadow: 0 0 0 3px rgb(11 89 72 / 12%); }
.search-close { position: absolute; top: 16px; right: 16px; }

.hero { position: relative; overflow: hidden; padding: clamp(54px, 8vw, 98px) 0 42px; }
.hero::before {
  position: absolute;
  width: 660px;
  height: 660px;
  top: -280px;
  right: -170px;
  border: 1px solid rgb(11 89 72 / 10%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(11 89 72 / 3%), 0 0 0 140px rgb(11 89 72 / 2.5%);
  content: "";
}
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.hero-copy h1 { max-width: 640px; margin: 0 0 22px; font: 700 clamp(3rem, 6vw, 5.6rem)/.94 var(--serif); letter-spacing: -.055em; text-wrap: balance; }
.hero-copy > p { max-width: 600px; margin: 0 0 26px; color: var(--muted); font-size: 1.02rem; }
.hero-search { display: flex; max-width: 520px; margin-bottom: 18px; padding: 5px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); box-shadow: var(--shadow-sm); }
.hero-search svg { width: 18px; margin-left: 10px; color: var(--muted); }
.hero-search input { min-width: 0; flex: 1; padding: 10px 12px; border: 0; background: transparent; outline: none; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }

.featured-review {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgb(6 62 50 / 12%);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  text-decoration: none;
}
.featured-review::after { position: absolute; right: -90px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%; background: var(--forest); content: ""; }
.featured-media { position: absolute; inset: 0; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.5); }
.featured-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; height: 100%; padding: 30px; }
.featured-copy { align-self: start; max-width: 310px; }
.featured-copy h2 { margin: 4px 0 10px; font: 700 2rem/1.05 var(--serif); letter-spacing: -.03em; }
.featured-copy p { color: var(--muted); font-size: .88rem; }
.feature-metrics { align-self: end; padding: 18px; border: 1px solid rgb(221 226 220 / 75%); border-radius: var(--radius); background: rgb(255 255 255 / 88%); backdrop-filter: blur(10px); }
.feature-metrics h3 { margin: 0 0 13px; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 19px 1fr; gap: 8px; align-items: start; font-size: .82rem; }
.check-list svg { width: 18px; color: var(--forest-2); }

.trust-strip { border-block: 1px solid var(--line); background: rgb(255 255 255 / 48%); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 20px; }
.trust-item { display: flex; gap: 10px; align-items: center; }
.trust-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--forest-3); color: var(--forest); }
.trust-icon svg { width: 17px; }
.trust-item strong { display: block; font-size: .78rem; }
.trust-item span { display: block; color: var(--muted); font-size: .7rem; }

.home-section { padding: 54px 0; }
.feature-grid { display: grid; grid-template-columns: 1.45fr .92fr .92fr; gap: 16px; }
.editorial-card { position: relative; min-height: 280px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); text-decoration: none; }
.editorial-card img { width: 100%; height: 154px; object-fit: cover; transition: scale .35s ease; }
.editorial-card:hover img { scale: 1.025; }
.editorial-card__body { padding: 20px; }
.editorial-card__body h3 { margin: 4px 0 8px; font: 700 1.3rem/1.15 var(--serif); letter-spacing: -.02em; }
.editorial-card__body p { margin: 0; color: var(--muted); font-size: .8rem; }
.editorial-card--lead { min-height: 360px; color: white; background: var(--forest); }
.editorial-card--lead img { position: absolute; inset: 0; height: 100%; opacity: .52; }
.editorial-card--lead::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(3 44 35 / 95%) 0%, rgb(3 44 35 / 70%) 52%, rgb(3 44 35 / 15%) 100%); content: ""; }
.editorial-card--lead .editorial-card__body { position: relative; z-index: 2; display: flex; max-width: 58%; min-height: 360px; flex-direction: column; align-items: start; justify-content: end; padding: 28px; }
.editorial-card--lead .eyebrow { color: #cfecdf; }
.editorial-card--lead h3 { font-size: 1.8rem; }
.editorial-card--lead p { color: rgb(255 255 255 / 78%); }
.editorial-card--lead .mini-link { margin-top: 18px; color: white; }
.mini-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--forest); font-size: .76rem; font-weight: 800; text-decoration: none; }
.mini-link::after { content: "→"; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; min-height: 110px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-decoration: none; transition: translate .2s ease, box-shadow .2s ease; }
.category-card:hover { translate: 0 -2px; box-shadow: var(--shadow-sm); }
.category-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--forest-3); color: var(--forest); }
.category-icon svg { width: 23px; }
.category-card strong { display: block; margin-bottom: 3px; font-size: .88rem; }
.category-card small { display: block; color: var(--muted); font-size: .72rem; }

.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: picks; }
.pick-card { position: relative; min-height: 280px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); counter-increment: picks; }
.pick-card::before { position: absolute; top: 0; left: 20px; min-width: 32px; padding: 5px 8px; border-radius: 0 0 7px 7px; background: var(--forest); color: white; content: "0" counter(picks); font-size: .68rem; font-weight: 800; text-align: center; }
.pick-card__top { display: flex; gap: 13px; align-items: center; margin: 20px 0 16px; }
.pick-logo { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: 11px; background: var(--surface-soft); }
.pick-logo img { width: 100%; height: 100%; object-fit: cover; }
.pick-logo span { color: var(--forest); font: 700 1.1rem var(--serif); }
.pick-card h3 { margin: 0; font: 700 1.25rem/1.15 var(--serif); }
.pick-card__category { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.pick-card .check-list { min-height: 94px; }
.pick-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.pick-card__footer span { color: var(--muted); font-size: .7rem; }

.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.latest-card { display: grid; grid-template-columns: 104px 1fr; min-height: 124px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); text-decoration: none; }
.latest-card img { width: 104px; height: 100%; min-height: 124px; object-fit: cover; }
.latest-card__body { padding: 15px; }
.latest-card__meta { color: var(--forest-2); font-size: .63rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.latest-card h3 { margin: 5px 0 8px; font: 700 .98rem/1.18 var(--serif); }
.latest-card time { color: var(--muted); font-size: .68rem; }

.method-section { padding: 58px 0; background: var(--surface-soft); }
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.method-card { position: relative; padding: 22px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.method-number { display: grid; width: 31px; height: 31px; place-items: center; margin-bottom: 22px; border-radius: 50%; background: var(--forest); color: white; font-size: .67rem; font-weight: 800; }
.method-card h3 { margin: 0 0 6px; font-size: .82rem; }
.method-card p { margin: 0; color: var(--muted); font-size: .7rem; }

.editor-section { background: var(--surface); }
.editor-grid { display: grid; grid-template-columns: .76fr 1.24fr; align-items: stretch; }
.editor-visual { min-height: 320px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft), var(--forest-3)); }
.editor-monogram { display: grid; width: 154px; height: 154px; place-items: center; border: 1px solid rgb(6 62 50 / 18%); border-radius: 50%; background: rgb(255 255 255 / 70%); color: var(--forest); font: 700 3.2rem var(--serif); box-shadow: var(--shadow-lg); }
.editor-copy { padding: clamp(34px, 6vw, 74px); }
.editor-copy h2 { margin: 0 0 12px; font: 700 2.2rem/1.05 var(--serif); }
.editor-copy p { max-width: 620px; color: var(--muted); }
.editor-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; margin-top: 22px; }
.editor-points span { display: flex; gap: 8px; align-items: center; font-size: .78rem; font-weight: 700; }
.editor-points svg { width: 17px; color: var(--forest-2); }

.newsletter { color: white; background: var(--forest); }
.newsletter-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; padding-block: 30px; }
.newsletter-copy { display: flex; gap: 16px; align-items: center; }
.newsletter-icon { display: grid; width: 54px; height: 54px; flex: 0 0 auto; place-items: center; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; }
.newsletter-icon svg { width: 25px; }
.newsletter h2 { margin: 0 0 3px; font: 700 1.45rem/1.1 var(--serif); }
.newsletter p { margin: 0; color: rgb(255 255 255 / 70%); font-size: .74rem; }
.newsletter-form { display: flex; padding: 4px; border-radius: 8px; background: white; }
.newsletter-form input { border: 0; }
.form-note { min-height: 20px; margin-top: 7px !important; text-align: right; }

.site-footer { padding: 48px 0 22px; color: rgb(255 255 255 / 76%); background: #132c2c; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 34px; }
.footer-brand { color: white; font: 700 1.2rem var(--serif); }
.footer-about p { max-width: 270px; font-size: .75rem; }
.footer-column h3 { margin: 0 0 14px; color: white; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.footer-column a { font-size: .73rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .68rem; }

.breadcrumb { padding: 22px 0 8px; color: var(--muted); font-size: .72rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 7px; content: "/"; }
.breadcrumb a { text-decoration: none; }
.article-hero { padding: 30px 0 36px; }
.article-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.category-pill { display: inline-flex; padding: 5px 10px; border: 1px solid rgb(11 89 72 / 24%); border-radius: 999px; color: var(--forest-2); background: var(--forest-3); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.article-title { max-width: 760px; margin: 14px 0 16px; font: 700 clamp(2.8rem, 5.4vw, 5rem)/.96 var(--serif); letter-spacing: -.05em; }
.article-dek { max-width: 700px; margin: 0 0 24px; color: var(--muted); font-size: 1.02rem; }
.byline { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; color: var(--muted); font-size: .72rem; }
.article-date-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 15px; }
.article-date-meta span { display: grid; gap: 2px; }
.article-date-meta small { color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.article-date-meta time { color: var(--ink); font-size: .72rem; font-weight: 700; }
.author-chip { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; }
.author-avatar { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--forest); color: white; font: 700 .8rem var(--serif); }
.article-hero-media { position: relative; min-height: 390px; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-soft); box-shadow: var(--shadow-lg); }
.article-hero-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.article-hero-media::after { position: absolute; inset: 0; border: 1px solid rgb(255 255 255 / 40%); border-radius: inherit; content: ""; pointer-events: none; }

.review-facts { padding-bottom: 36px; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.fact { padding: 22px 24px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact-label { display: block; margin-bottom: 5px; color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.fact strong { font: 700 1rem var(--serif); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 286px; gap: 54px; align-items: start; padding: 10px 0 70px; }
.article-main { min-width: 0; }
.article-summary { margin-bottom: 34px; padding: 24px 26px; border: 1px solid #cfe0d9; border-radius: var(--radius); background: #edf6f2; }
.article-summary h2 { display: flex; gap: 10px; align-items: center; margin: 0 0 8px; font: 700 1.25rem var(--serif); }
.article-summary h2 svg { width: 23px; height: 23px; flex: 0 0 auto; color: var(--forest); }
.article-summary p { margin: 0; color: #42544e; }
.article-content { font-family: var(--sans); font-size: 1.02rem; line-height: 1.78; }
.article-content > * { max-width: 760px; }
.article-content h2, .article-content h3, .article-content h4 { scroll-margin-top: 100px; color: var(--ink); font-family: var(--serif); letter-spacing: -.025em; }
.article-content h2 { margin: 2.5em 0 .7em; font-size: clamp(1.65rem, 3vw, 2.2rem); line-height: 1.12; }
.article-content h3 { margin: 2em 0 .65em; font-size: 1.45rem; line-height: 1.2; }
.article-content h4 { margin: 1.7em 0 .55em; font-size: 1.15rem; }
.article-content p { margin: 0 0 1.35em; }
.article-content ul, .article-content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article-content li { margin-bottom: .45em; padding-left: .2em; }
.article-content a { color: var(--forest-2); font-weight: 650; }
.article-content figure { max-width: 880px; margin: 32px 0; }
.article-content figure img, .article-content > img { width: auto; max-height: 720px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.article-content figcaption { margin-top: 8px; color: var(--muted); font-size: .75rem; text-align: center; }
.article-content blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--gold); color: #3e4a46; font-family: var(--serif); font-size: 1.2rem; }
.article-content table { display: block; width: 100%; max-width: 100%; margin: 28px 0; overflow-x: auto; border-collapse: collapse; border: 1px solid var(--line); background: var(--surface); font-size: .82rem; -webkit-overflow-scrolling: touch; }
.article-content th, .article-content td { padding: 11px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content th { background: var(--surface-soft); }
.article-content iframe { width: 100%; max-width: 820px; aspect-ratio: 16/9; height: auto; border: 0; border-radius: var(--radius-sm); }
.article-content .wp-block-button__link { display: inline-flex; padding: 11px 18px; border-radius: 7px; background: var(--forest); color: white; text-decoration: none; }
.article-content .wp-block-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.article-content .wp-block-column { min-width: 0; }
.article-content .wp-block-separator { margin: 38px 0; border: 0; border-top: 1px solid var(--line); }
.article-content [style*="font-size"] { max-width: 100%; }
.article-sidebar { position: sticky; top: 96px; display: grid; gap: 14px; }
.sidebar-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.sidebar-card h2 { margin: 0 0 14px; font: 700 1.05rem var(--serif); }
.toc { max-height: 420px; overflow: auto; }
.toc ol { display: grid; gap: 8px; margin: 0; padding: 0 0 0 12px; border-left: 1px solid var(--line); list-style: none; }
.toc a { display: block; padding-left: 9px; color: var(--muted); font-size: .71rem; line-height: 1.35; text-decoration: none; }
.toc a:hover, .toc a.is-active { color: var(--forest); font-weight: 750; }
.sidebar-trust { display: grid; gap: 13px; }
.sidebar-trust li { display: grid; grid-template-columns: 24px 1fr; gap: 9px; list-style: none; }
.sidebar-trust svg { width: 20px; color: var(--forest-2); }
.sidebar-trust strong { display: block; font-size: .76rem; }
.sidebar-trust span { display: block; color: var(--muted); font-size: .66rem; }

.article-footer { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.author-box { display: grid; grid-template-columns: 74px 1fr; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.author-box .author-avatar { width: 74px; height: 74px; font-size: 1.4rem; }
.author-box h2 { margin: 0 0 5px; font: 700 1.2rem var(--serif); }
.author-box p { margin: 0; color: var(--muted); font-size: .78rem; }
.related { padding: 58px 0 72px; border-top: 1px solid var(--line); }

.archive-hero { padding: 62px 0 42px; }
.archive-hero h1 { max-width: 760px; margin: 0 0 14px; font: 700 clamp(2.8rem, 6vw, 5.2rem)/.98 var(--serif); letter-spacing: -.05em; }
.archive-hero p { max-width: 650px; margin: 0; color: var(--muted); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 78px; }
.archive-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.archive-card > a { display: block; text-decoration: none; }
.archive-card img { width: 100%; height: 210px; object-fit: cover; }
.archive-card__body { padding: 22px; }
.archive-card h2 { margin: 8px 0 10px; font: 700 1.35rem/1.15 var(--serif); }
.archive-card p { margin: 0; color: var(--muted); font-size: .78rem; }
.archive-count { display: inline-block; margin-top: 14px; color: var(--forest); font-size: .78rem; }
.archive-filters { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 24px; padding-bottom: 24px; }
.archive-filters a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); font-size: .76rem; font-weight: 700; text-decoration: none; }
.archive-filters a:hover, .archive-filters a:focus-visible { border-color: var(--forest-2); color: var(--forest-2); }
.category-directory { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 28px; padding-bottom: 78px; }
.category-directory-card { display: flex; gap: 18px; align-items: flex-start; min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); text-decoration: none; }
.category-directory-card > span:last-child { display: grid; gap: 7px; }
.category-directory-card strong { font: 700 1.22rem/1.2 var(--serif); }
.category-directory-card small { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.category-directory-card b { margin-top: 5px; color: var(--forest-2); font-size: .74rem; }
.archive-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }
.pagination { display: flex; justify-content: center; gap: 8px; margin: -36px 0 72px; }
.pagination a, .pagination span { display: grid; min-width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); font-size: .78rem; text-decoration: none; }
.pagination .current { border-color: var(--forest); background: var(--forest); color: white; }

.standard-page { padding: 58px 0 78px; }
.standard-page__header { max-width: 780px; margin-bottom: 40px; }
.standard-page__header h1 { margin: 0 0 16px; font: 700 clamp(2.8rem, 6vw, 5rem)/.98 var(--serif); letter-spacing: -.05em; }
.standard-page__header p { color: var(--muted); font-size: 1.05rem; }
.standard-content { max-width: 800px; }
.standard-content h2 { margin-top: 2em; font: 700 2rem/1.15 var(--serif); }
.standard-content h3 { font: 700 1.35rem/1.2 var(--serif); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0; }
.principle-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.principle-card span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--forest-3); color: var(--forest); font-weight: 800; }
.principle-card h2 { margin: 0 0 8px; font: 700 1.1rem var(--serif); }
.principle-card p { margin: 0; color: var(--muted); font-size: .76rem; }

.search-page-form { display: flex; max-width: 760px; gap: 9px; margin-bottom: 34px; }
.search-status { color: var(--muted); }
.search-results { display: grid; gap: 12px; max-width: 850px; }
.search-result { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.search-result h2 { margin: 0 0 7px; font: 700 1.25rem/1.18 var(--serif); }
.search-result h2 a { text-decoration: none; }
.search-result p { margin: 0; color: var(--muted); font-size: .78rem; }
.search-result small { display: block; margin-top: 10px; color: var(--forest-2); font-weight: 700; }

.reading-progress { position: fixed; top: 73px; left: 0; z-index: 101; width: 0; height: 2px; background: var(--gold); }

@media (max-width: 1020px) {
  .header-row { grid-template-columns: 1fr auto; }
  .main-nav, .header-actions > .button { display: none; }
  .menu-button { display: inline-grid; }
  .mobile-nav { position: fixed; inset: 74px 0 auto; z-index: 99; display: grid; max-height: 0; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-lg); transition: max-height .3s ease; }
  .mobile-nav.is-open { max-height: calc(100vh - 74px); }
  .mobile-nav ul { display: grid; margin: 0; padding: 20px; list-style: none; }
  .mobile-nav a { display: block; padding: 13px 8px; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
  .hero-grid, .article-hero-grid { grid-template-columns: 1fr; }
  .hero-grid > *, .article-hero-grid > *, .header-row > * { min-width: 0; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p, .hero-search { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .featured-review { min-height: 390px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1.2fr 1fr; }
  .feature-grid > :last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 190px 1fr; min-height: 180px; }
  .feature-grid > :last-child img { height: 100%; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .toc { max-height: none; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > :nth-child(n+4) { margin-top: 12px; }
}

@media (max-width: 720px) {
  .category-directory { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, var(--wrap)); }
  .header-row { min-height: 66px; }
  .brand, .brand img { width: 138px; }
  .mobile-nav { inset-block-start: 66px; }
  .reading-progress { top: 65px; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(2.75rem, 13vw, 3.55rem); overflow-wrap: anywhere; }
  .hero-search { width: 100%; }
  .featured-inner { grid-template-columns: 1fr; gap: 20px; padding: 22px; }
  .featured-review::after { right: -170px; }
  .feature-metrics { align-self: end; width: 84%; }
  .trust-grid { gap: 16px; }
  .trust-item:nth-child(n+3) { display: none; }
  .feature-grid, .pick-grid, .latest-grid, .archive-grid { grid-template-columns: 1fr; }
  .feature-grid > :last-child { grid-column: auto; display: block; min-height: 280px; }
  .feature-grid > :last-child img { height: 154px; }
  .editorial-card--lead .editorial-card__body { max-width: 88%; }
  .category-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:last-child { grid-column: 1 / -1; }
  .editor-grid { grid-template-columns: 1fr; }
  .editor-visual { min-height: 240px; }
  .newsletter-row { grid-template-columns: 1fr; gap: 18px; }
  .newsletter-form { flex-wrap: wrap; }
  .newsletter-form .button { width: 100%; }
  .form-note { text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .article-title { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .article-hero-media, .article-hero-media img { min-height: 260px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact + .fact { border-top: 1px solid var(--line); border-left: 0; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-content .wp-block-columns { grid-template-columns: 1fr; }
  .article-content table { display: block; overflow-x: auto; }
  .principle-grid { grid-template-columns: 1fr; }
  .search-panel form, .search-page-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Reference-led compact review design, July 2026 */
:root { --wrap: 1200px; --radius: 10px; --radius-lg: 18px; }
body { background: #fbfbf9; font-size: 14px; line-height: 1.55; }
.container { width: min(var(--wrap), calc(100% - 32px)); }
.site-header { border-color: #e7e9e5; background: rgb(255 255 255 / 96%); }
.header-row { min-height: 64px; grid-template-columns: 200px 1fr auto; gap: 18px; }
.brand { width: auto; color: #17211e; font: 700 1.45rem/1 var(--serif); letter-spacing: -.025em; }
.brand span { display: block; }
.brand img { display: none; }
.nav-list { gap: clamp(18px, 2.5vw, 32px); }
.nav-list a { font-size: .75rem; }
.header-actions { gap: 8px; }
.icon-button, .menu-button { width: 36px; height: 36px; border-radius: 7px; }
.button { min-height: 36px; padding: 8px 16px; border-radius: 6px; font-size: .72rem; }
.eyebrow { margin-bottom: 8px; font-size: .62rem; letter-spacing: .08em; }
.section-heading { margin-bottom: 12px; }
.section-heading h2, .section-heading h1 { font-size: 1.45rem; }
.section-heading h2 small { color: var(--muted); font: 500 .72rem/1 var(--sans); letter-spacing: 0; }
.section-link { font-size: .68rem; }

.home .hero { padding: 32px 0 26px; background: #fff; }
.home .hero-grid { min-height: 356px; grid-template-columns: .95fr 1.25fr; align-items: center; gap: 38px; }
.home .hero-copy { padding-block: 8px; }
.home .hero-copy h1 { max-width: 560px; margin: 4px 0 16px; font-size: clamp(2.7rem, 3.8vw, 3.3rem); line-height: .98; letter-spacing: -.048em; text-wrap: balance; }
.home .hero-copy > p { max-width: 520px; margin: 0 0 18px; font-size: .88rem; line-height: 1.65; }
.hero-search { max-width: 470px; min-height: 43px; padding: 4px 5px 4px 13px; border-radius: 6px; box-shadow: none; }
.hero-search input { font-size: .75rem; }
.hero-search svg { width: 16px; }
.hero-buttons { margin-top: 12px; gap: 10px; }
.featured-review { min-height: 350px; overflow: hidden; border: 1px solid #dfe4df; border-radius: 14px 58px 14px 14px; background: #fff; box-shadow: 0 16px 44px rgb(8 56 45 / 11%); text-decoration: none; }
.featured-review::after { position: absolute; z-index: 0; right: -110px; bottom: -180px; width: 340px; height: 430px; border-radius: 50%; background: var(--forest); content: ""; }
.featured-media { inset: 0; }
.featured-media::after { background: linear-gradient(90deg, #fff 16%, rgb(255 255 255 / 82%) 58%, rgb(255 255 255 / 92%)); }
.featured-media img { width: 100%; height: 100%; opacity: .055; object-fit: cover; }
.featured-inner { position: relative; z-index: 2; height: 100%; grid-template-columns: 1.25fr .75fr; align-items: stretch; gap: 20px; padding: 24px; }
.featured-copy { display: flex; min-width: 0; flex-direction: column; }
.featured-copy h2 { margin: 0; font: 700 1.72rem/1.05 var(--serif); letter-spacing: -.03em; }
.featured-title-row { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.featured-title-row small { display: block; margin-top: 5px; color: var(--muted); font-size: .66rem; }
.featured-stars { margin: 10px 0 8px; color: var(--gold); font-size: .78rem; letter-spacing: .08em; }
.featured-stars span { margin-left: 7px; color: var(--muted); font-size: .62rem; letter-spacing: 0; }
.score-badge { display: grid; width: 68px; min-width: 68px; height: 68px; place-content: center; border: 3px solid var(--forest); border-radius: 50%; background: #fff; color: var(--forest); text-align: center; box-shadow: inset 0 0 0 3px #e4efe9; }
.score-badge span { font-size: .55rem; line-height: 1.1; }
.score-badge strong { font: 700 .82rem/1.05 var(--serif); }
.score-badge strong small { font: 700 .52rem/1 var(--sans); }
.score-badge--compact { width: 48px; min-width: 48px; height: 48px; border-width: 2px; }
.score-badge--compact strong { font-size: 1rem; }
.coverage-chart { margin: auto 0 6px; }
.coverage-chart__head { display: flex; align-items: end; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .55rem; }
.coverage-chart__head strong { color: var(--ink); font-size: .66rem; }
.coverage-chart svg { width: 100%; height: 74px; margin-top: 4px; overflow: visible; }
.chart-grid { fill: none; stroke: #e5e9e5; stroke-width: 1; }
.chart-line { fill: none; stroke: var(--forest-2); stroke-width: 2; }
.chart-dots { fill: none; stroke: var(--forest-2); stroke-width: 7; stroke-linecap: round; }
.feature-metrics { align-self: center; padding: 18px; border: 1px solid #e0e4df; border-radius: 9px; background: rgb(255 255 255 / 92%); box-shadow: 0 8px 25px rgb(10 50 39 / 7%); }
.feature-metrics h3 { margin: 0 0 12px; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.feature-metrics .check-list { gap: 9px; }
.feature-metrics .check-list li { font-size: .66rem; }
.feature-metrics .check-list svg { width: 15px; height: 15px; }
.featured-note { margin: 14px -8px -8px; padding: 10px; border-radius: 6px; background: var(--gold-soft); }
.featured-note span, .featured-note strong { display: block; }
.featured-note span { color: var(--muted); font-size: .55rem; }
.featured-note strong { margin-top: 2px; font-size: .65rem; }

.trust-strip { padding: 13px 0; background: #fff; }
.trust-grid { gap: 24px; }
.trust-icon { width: 30px; height: 30px; }
.trust-icon svg { width: 15px; height: 15px; }
.trust-item strong { font-size: .65rem; }
.trust-item span { font-size: .55rem; }
.home-section { padding: 20px 0; }
.feature-grid { grid-template-columns: 1.25fr .72fr .72fr; gap: 14px; }
.editorial-card { min-height: 230px; border-radius: 8px; }
.editorial-card--lead { min-height: 230px; }
.editorial-card img { height: 112px; }
.editorial-card--lead img { height: 100%; }
.editorial-card__body { padding: 15px; }
.editorial-card__body h3 { margin: 2px 0 6px; font-size: 1.15rem; line-height: 1.08; }
.editorial-card__body p { margin: 0 0 8px; font-size: .62rem; line-height: 1.5; }
.editorial-card--lead .editorial-card__body { max-width: 74%; padding: 22px; }
.editorial-card--lead .editorial-card__body h3 { font-size: 1.55rem; }
.mini-link { font-size: .64rem; }
.category-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-card { min-height: 76px; gap: 10px; padding: 12px; border-radius: 8px; }
.category-icon { width: 38px; height: 38px; }
.category-card strong { font-size: .68rem; }
.category-card small { font-size: .55rem; line-height: 1.4; }
.pick-grid { gap: 12px; }
.pick-card { position: relative; min-height: 216px; padding: 16px; border-radius: 8px; }
.rank-badge { position: absolute; top: 0; left: 0; padding: 3px 8px; border-radius: 7px 0 6px; background: #0b1412; color: #fff; font-size: .58rem; font-weight: 800; }
.pick-card::before { display: none; }
.pick-card__top { grid-template-columns: 44px 1fr auto; gap: 10px; padding-top: 9px; }
.pick-logo { width: 44px; height: 44px; border-radius: 8px; }
.pick-card h3 { font-size: .86rem; }
.pick-card__category { font-size: .52rem; }
.pick-card .check-list { gap: 5px; margin: 13px 0; }
.pick-card .check-list li { font-size: .6rem; }
.pick-card .check-list svg { width: 13px; height: 13px; }
.pick-card__footer { font-size: .56rem; }
.latest-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.latest-card { min-height: 76px; grid-template-columns: 58px 1fr; border-radius: 7px; }
.latest-card img { width: 58px; height: 100%; }
.latest-card__body { padding: 9px 10px; }
.latest-card__meta { font-size: .48rem; }
.latest-card h3 { margin: 2px 0; font-size: .72rem; line-height: 1.2; }
.latest-card time { font-size: .5rem; }
.method-section { padding: 20px 0 24px; }
.method-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
.method-card { min-height: 132px; padding: 13px; border-radius: 7px; text-align: center; }
.method-number { width: 26px; height: 26px; margin-inline: auto; font-size: .55rem; }
.method-card h3 { margin: 9px 0 4px; font-size: .7rem; }
.method-card p { font-size: .54rem; line-height: 1.45; }
.editor-section { padding: 24px 0; }
.editor-grid { min-height: 192px; grid-template-columns: .62fr 1.38fr; gap: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.editor-visual { min-height: 192px; border-radius: 0; }
.editor-monogram { width: 94px; height: 94px; font-size: 1.35rem; }
.editor-copy { padding: 22px 28px; }
.editor-copy h2 { margin: 0 0 7px; font-size: 1.45rem; }
.editor-copy p { margin: 0 0 10px; font-size: .7rem; }
.editor-points { gap: 6px 18px; }
.editor-points span { font-size: .62rem; }

.newsletter { padding: 15px 0; }
.newsletter-row { grid-template-columns: 1fr .85fr; }
.newsletter-copy h2 { font-size: 1.05rem; }
.newsletter-copy p, .form-note { font-size: .55rem; }
.newsletter-icon { width: 38px; height: 38px; }
.newsletter-form { gap: 0; }
.newsletter-form input { min-height: 36px; font-size: .68rem; }
.site-footer { padding: 22px 0 12px; }
.footer-grid { gap: 24px; }
.footer-brand { font-size: .95rem; }
.footer-about p, .footer-column a { font-size: .58rem; }
.footer-column h3 { font-size: .58rem; }
.footer-bottom { margin-top: 16px; padding-top: 12px; font-size: .52rem; }

.breadcrumb { margin-top: 14px; margin-bottom: 8px; font-size: .62rem; }
.review-page .article-hero { padding: 10px 0 18px; }
.review-page .article-hero-grid { grid-template-columns: 1fr .94fr 250px; align-items: center; gap: 22px; }
.article-title { margin: 8px 0 10px; font-size: clamp(2.3rem, 3.75vw, 3.35rem); line-height: .98; letter-spacing: -.045em; }
.article-dek { max-width: 520px; margin: 0 0 13px; font-size: .78rem; line-height: 1.55; }
.category-pill { padding: 4px 10px; font-size: .55rem; }
.byline { gap: 11px; font-size: .58rem; }
.author-avatar { width: 32px; height: 32px; font-size: .6rem; }
.article-hero-media { height: 276px; min-height: 0; border-radius: 9px; }
.article-hero-media img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.review-score-card { padding: 14px; border: 1px solid #b9d0c8; border-radius: 9px; background: #fff; text-align: center; box-shadow: var(--shadow-sm); }
.score-kicker { display: block; color: var(--muted); font-size: .52rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.review-score-card .score-badge, .sidebar-score .score-badge { margin: 8px auto 5px; }
.score-label { display: block; color: var(--forest); font: 700 .9rem/1 var(--serif); }
.review-score-card > p { margin: 7px 0 10px; color: var(--muted); font-size: .52rem; line-height: 1.4; }
.score-bars { display: grid; gap: 5px; margin: 9px 0 12px; text-align: left; }
.score-bars div { position: relative; display: grid; grid-template-columns: 1fr auto; padding-bottom: 4px; font-size: .5rem; }
.score-bars b { color: var(--forest-2); font-weight: 600; }
.score-bars i { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--forest-2) 78%, #dfe7e3 78%); }
.score-bars .is-pending b { color: var(--muted); }
.score-bars .is-pending i { background: #dfe7e3; }
.review-score-card .button { width: 100%; justify-content: center; }
.review-snapshot { padding: 0 0 16px; }
.editorial-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 0 16px; }
.editorial-facts > div { display: grid; gap: 3px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface-soft); }
.editorial-facts strong { color: var(--forest-2); font-size: .72rem; letter-spacing: .025em; text-transform: uppercase; }
.editorial-facts span { font-size: .82rem; line-height: 1.5; }
.pros-cons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.pros-cons > div { padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: #f4faf7; }
.pros-cons > div + div { background: #fff8f4; }
.pros-cons h3 { margin-top: 0; }
.table-scroll-hint { display: none; }
.snapshot-grid { display: grid; grid-template-columns: 1fr 1fr .78fr; border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.snapshot-column { min-width: 0; padding: 14px 18px; }
.snapshot-column + .snapshot-column { border-left: 1px solid var(--line); }
.snapshot-column h2 { margin: 0 0 8px; color: var(--muted); font-size: .55rem; letter-spacing: .06em; text-transform: uppercase; }
.snapshot-column ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.snapshot-column li { display: flex; gap: 7px; font-size: .6rem; }
.snapshot-column li svg { width: 13px; min-width: 13px; height: 13px; color: var(--forest-2); }
.snapshot-column--cons li svg { color: #b7483f; }
.snapshot-column--best > div { display: flex; align-items: start; gap: 10px; }
.snapshot-column--best svg { width: 28px; min-width: 28px; color: var(--forest-2); }
.snapshot-column--best p { margin: 0; font-size: .6rem; line-height: 1.45; }
.review-page .article-layout { grid-template-columns: minmax(0, 1fr) 250px; align-items: start; gap: 16px; margin-top: 0; margin-bottom: 24px; }
.article-main { display: grid; gap: 12px; }
.article-summary, .key-features, .review-module, .final-verdict, .article-footer { border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: none; }
.article-summary { margin: 0; padding: 14px 18px; background: #f2faf7; }
.article-summary h2 { margin: 0 0 4px; font-size: .95rem; }
.article-summary h2 svg { width: 20px; height: 20px; }
.article-summary p { margin: 0; font-size: .65rem; line-height: 1.55; }
.key-features { padding: 12px 14px; }
.module-heading { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.module-heading svg { width: 20px; height: 20px; color: var(--forest-2); }
.module-heading h2 { margin: 0; font: 700 .86rem/1.2 var(--serif); }
.feature-chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.feature-chip-grid > span { display: flex; min-height: 48px; align-items: center; gap: 7px; padding: 8px; border: 1px solid #e6e9e5; border-radius: 6px; font-size: .55rem; }
.feature-chip-grid svg { width: 18px; min-width: 18px; color: var(--forest-2); }
.article-content { display: grid; gap: 12px; }
.review-module { min-width: 0; padding: 16px 18px; overflow: hidden; }
.review-module--intro { background: #fff; }
.article-content .review-module > :first-child { margin-top: 0; }
.article-content .review-module > :last-child { margin-bottom: 0; }
.article-content h2 { margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid #ebeeeb; font-size: 1.15rem; line-height: 1.15; }
.article-content h3 { margin: 16px 0 6px; font-size: .96rem; }
.article-content p, .article-content li { font-size: .7rem; line-height: 1.62; }
.article-content p { margin: 0 0 10px; }
.article-content ul, .article-content ol { margin: 8px 0 12px; padding-left: 18px; }
.article-content figure { margin: 12px 0; }
.article-content img { border-radius: 6px; }
.article-content table { font-size: .6rem; }
.article-content th, .article-content td { padding: 7px 8px; }
.final-verdict { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; }
.final-verdict > div { display: flex; align-items: center; gap: 12px; }
.final-verdict svg { width: 28px; min-width: 28px; color: var(--forest-2); }
.final-verdict small, .final-verdict strong { display: block; }
.final-verdict small { color: var(--muted); font-size: .52rem; text-transform: uppercase; }
.final-verdict strong { font: 700 .95rem/1.2 var(--serif); }
.final-verdict p { margin: 2px 0 0; color: var(--muted); font-size: .58rem; }
.article-footer { padding: 12px 16px; }
.author-box { padding: 0; border: 0; background: transparent; }
.author-box h2 { font-size: .8rem; }
.author-box p { font-size: .58rem; }
.article-sidebar { top: 80px; gap: 10px; }
.sidebar-card { padding: 14px; border-radius: 8px; }
.sidebar-card h2 { margin-bottom: 9px; font-size: .8rem; }
.sidebar-score { text-align: center; }
.sidebar-score > span:first-child { color: var(--muted); font-size: .52rem; font-weight: 800; text-transform: uppercase; }
.sidebar-score > strong { display: block; margin: 4px 0 9px; font: 700 .83rem/1.2 var(--serif); }
.sidebar-score .button { width: 100%; justify-content: center; }
.toc { max-height: 360px; overflow: auto; }
.toc ol { gap: 6px; }
.toc a { font-size: .55rem; line-height: 1.35; }
.sidebar-trust { gap: 10px; }
.sidebar-trust li { font-size: .56rem; }
.sidebar-trust svg { width: 18px; height: 18px; }
.related { padding: 24px 0; }
.archive-card__body h2 { font-size: 1rem; }

@media (max-width: 1020px) {
  .header-row { grid-template-columns: 1fr auto; }
  .home .hero-grid, .review-page .article-hero-grid { grid-template-columns: 1fr; }
  .home .hero-copy { text-align: center; }
  .home .hero-copy h1, .home .hero-copy > p, .hero-search { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .featured-review { width: min(680px, 100%); margin-inline: auto; }
  .review-page .article-hero-grid { grid-template-columns: 1fr 1fr; }
  .review-score-card { grid-column: 1 / -1; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 12px; text-align: left; }
  .review-score-card .score-badge { margin: 0; }
  .review-score-card > p, .score-bars { display: none; }
  .feature-grid { grid-template-columns: 1.15fr 1fr; }
  .feature-grid > :last-child { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .review-page .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--wrap)); }
  .header-row { min-height: 58px; }
  .brand { font-size: 1.15rem; }
  .mobile-nav { inset-block-start: 58px; }
  .reading-progress { top: 57px; }
  .home .hero { padding: 30px 0 18px; }
  .home .hero-grid { min-height: 0; gap: 24px; }
  .home .hero-copy h1 { max-width: 360px; font-size: clamp(2.55rem, 12vw, 3.2rem); }
  .home .hero-copy > p { font-size: .78rem; }
  .featured-review { min-height: 480px; border-radius: 12px 36px 12px 12px; }
  .featured-inner { grid-template-columns: 1fr; padding: 18px; }
  .feature-metrics { align-self: end; width: 100%; }
  .coverage-chart svg { height: 58px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(n+3) { display: flex; }
  .feature-grid, .category-grid, .pick-grid, .latest-grid { grid-template-columns: 1fr; }
  .feature-grid > :last-child { grid-column: auto; display: block; }
  .editorial-card, .editorial-card--lead { min-height: 220px; }
  .editorial-card--lead .editorial-card__body { max-width: 86%; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:last-child { grid-column: 1 / -1; }
  .editor-grid { grid-template-columns: 1fr; }
  .editor-visual { min-height: 150px; }
  .newsletter-row { grid-template-columns: 1fr; }
  .breadcrumb { margin-top: 12px; }
  .review-page .article-hero { padding-top: 4px; }
  .review-page .article-hero-grid { grid-template-columns: 1fr; gap: 14px; }
  .article-title { font-size: clamp(2.45rem, 12vw, 3.15rem); }
  .article-hero-media { height: 230px; min-height: 0; }
  .review-score-card { grid-column: auto; grid-template-columns: auto 1fr; }
  .review-score-card .score-kicker, .review-score-card .button { grid-column: 1 / -1; }
  .snapshot-grid { grid-template-columns: 1fr; }
  .snapshot-column + .snapshot-column { border-top: 1px solid var(--line); border-left: 0; }
  .feature-chip-grid { grid-template-columns: repeat(2, 1fr); }
  .article-sidebar { grid-template-columns: 1fr; }
  .final-verdict { align-items: start; flex-direction: column; }
  .article-content p, .article-content li { font-size: .78rem; }
}

/* Readable type scale: keep the compact dashboard, remove screenshot-sized text */
body { font-size: 16px; }
.nav-list a { font-size: .86rem; }
.button { font-size: .82rem; }
.eyebrow { font-size: .72rem; }
.section-heading h2, .section-heading h1 { font-size: 1.72rem; }
.section-heading h2 small { font-size: .82rem; }
.section-link, .mini-link { font-size: .78rem; }
.home .hero-copy > p { font-size: 1rem; }
.hero-search input { font-size: .88rem; }
.featured-copy h2 { font-size: 2rem; }
.featured-title-row small { font-size: .76rem; }
.featured-stars { font-size: .9rem; }
.featured-stars span { font-size: .72rem; }
.score-badge span { font-size: .64rem; }
.score-badge strong { font-size: .94rem; }
.coverage-chart__head { font-size: .65rem; }
.coverage-chart__head strong { font-size: .78rem; }
.feature-metrics h3 { font-size: .82rem; }
.feature-metrics .check-list li { font-size: .76rem; }
.featured-note span { font-size: .65rem; }
.featured-note strong { font-size: .76rem; }
.trust-item strong { font-size: .78rem; }
.trust-item span { font-size: .67rem; }
.editorial-card__body h3 { font-size: 1.3rem; }
.editorial-card__body p { font-size: .76rem; }
.editorial-card--lead .editorial-card__body h3 { font-size: 1.7rem; }
.category-card strong { font-size: .82rem; }
.category-card small { font-size: .68rem; }
.rank-badge { font-size: .68rem; }
.pick-card h3 { font-size: 1rem; }
.pick-card__category { font-size: .62rem; }
.pick-card .check-list li { font-size: .73rem; }
.pick-card__footer { font-size: .68rem; }
.latest-card__meta { font-size: .58rem; }
.latest-card h3 { font-size: .86rem; }
.latest-card time { font-size: .62rem; }
.method-number { font-size: .65rem; }
.method-card h3 { font-size: .84rem; }
.method-card p { font-size: .68rem; }
.editor-copy p { font-size: .84rem; }
.editor-points span { font-size: .74rem; }
.newsletter-copy p, .form-note { font-size: .68rem; }
.newsletter-form input { font-size: .8rem; }
.footer-about p, .footer-column a { font-size: .7rem; }
.footer-column h3 { font-size: .68rem; }
.footer-bottom { font-size: .64rem; }

.breadcrumb { font-size: .72rem; }
.article-dek { font-size: .92rem; }
.byline { font-size: .7rem; }
.score-kicker { font-size: .62rem; }
.review-score-card > p { font-size: .64rem; }
.score-bars div { font-size: .62rem; }
.snapshot-column h2 { font-size: .66rem; }
.snapshot-column li { font-size: .74rem; }
.snapshot-column--best p { font-size: .72rem; }
.article-summary h2 { font-size: 1.08rem; }
.article-summary p { font-size: .8rem; }
.module-heading h2 { font-size: 1rem; }
.feature-chip-grid > span { font-size: .68rem; }
.article-content h2 { font-size: 1.4rem; }
.article-content h3 { font-size: 1.12rem; }
.article-content p, .article-content li { font-size: .88rem; line-height: 1.68; }
.article-content table { font-size: .74rem; }
.final-verdict small { font-size: .62rem; }
.final-verdict strong { font-size: 1.08rem; }
.final-verdict p { font-size: .7rem; }
.author-box h2 { font-size: .94rem; }
.author-box p { font-size: .72rem; }
.sidebar-card h2 { font-size: .94rem; }
.sidebar-score > span:first-child { font-size: .62rem; }
.sidebar-score > strong { font-size: .96rem; }
.toc a { font-size: .68rem; }
.sidebar-trust li { font-size: .68rem; }

@media (max-width: 720px) {
  .nav-list a { font-size: .86rem; }
  .home .hero-copy > p { font-size: .9rem; }
  .trust-item strong { font-size: .72rem; }
  .trust-item span { font-size: .62rem; }
  .article-dek { font-size: .9rem; }
  .byline { font-size: .67rem; }
  .snapshot-column li, .snapshot-column--best p { font-size: .78rem; }
  .feature-chip-grid > span { font-size: .7rem; }
  .article-content p, .article-content li { font-size: .94rem; }
  .toc a, .sidebar-trust li { font-size: .76rem; }
}

/* Unified, soft and readable typography */
:root {
  --sans: "Segoe UI Variable Text", "Segoe UI", Aptos, Arial, sans-serif;
  --serif: "Segoe UI Variable Display", "Segoe UI", Aptos, Arial, sans-serif;
}
body { font-family: var(--sans); font-size: 16px; line-height: 1.65; }
h1, h2, h3, h4, h5, h6,
.article-title, .section-heading h1, .section-heading h2,
.featured-copy h2, .editorial-card__body h3,
.footer-brand, .brand, .final-verdict strong {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.025em;
}
.home .hero-copy h1, .article-title { font-weight: 720; letter-spacing: -.04em; }
.brand { font-weight: 700; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .065em; }
.nav-list a { font-size: .9rem; font-weight: 600; }
.button { font-size: .86rem; font-weight: 700; }
.section-link, .mini-link { font-size: .82rem; }
.featured-title-row small { font-size: .8rem; }
.featured-stars span { font-size: .78rem; }
.coverage-chart__head { font-size: .72rem; }
.coverage-chart__head strong { font-size: .82rem; }
.feature-metrics h3 { font-size: .86rem; }
.feature-metrics .check-list li { font-size: .82rem; }
.featured-note span { font-size: .72rem; }
.featured-note strong { font-size: .82rem; }
.trust-item strong { font-size: .82rem; }
.trust-item span { font-size: .72rem; }
.editorial-card__body p { font-size: .82rem; }
.category-card strong { font-size: .88rem; }
.category-card small { font-size: .76rem; }
.pick-card__category { font-size: .7rem; }
.pick-card .check-list li { font-size: .82rem; }
.pick-card__footer { font-size: .76rem; }
.latest-card__meta { font-size: .68rem; }
.latest-card h3 { font-size: .94rem; }
.latest-card time { font-size: .72rem; }
.method-card h3 { font-size: .9rem; }
.method-card p { font-size: .78rem; }
.editor-copy p { font-size: .9rem; }
.editor-points span { font-size: .8rem; }
.newsletter-copy p, .form-note { font-size: .76rem; }
.newsletter-form input { font-size: .86rem; }
.footer-about p, .footer-column a { font-size: .78rem; }
.footer-column h3 { font-size: .76rem; }
.footer-bottom { font-size: .72rem; }
.breadcrumb { font-size: .78rem; }
.byline { font-size: .76rem; }
.score-kicker, .snapshot-column h2 { font-size: .72rem; }
.review-score-card > p { font-size: .72rem; }
.score-bars div { font-size: .7rem; }
.snapshot-column li, .snapshot-column--best p { font-size: .82rem; }
.article-summary p { font-size: .88rem; }
.feature-chip-grid > span { font-size: .76rem; }
.article-content p, .article-content li { font-size: 1rem; }
.article-content table { font-size: .82rem; }
.final-verdict small { font-size: .7rem; }
.final-verdict p, .author-box p { font-size: .78rem; }
.toc a, .sidebar-trust li { font-size: .76rem; }

@media (max-width: 720px) {
  body { font-size: 16px; }
  .home .hero-copy h1, .article-title { letter-spacing: -.035em; }
  .article-content p, .article-content li { font-size: 1rem; }
  .feature-chip-grid > span, .toc a, .sidebar-trust li { font-size: .8rem; }
  .editorial-facts, .pros-cons { grid-template-columns: 1fr; }
  .editorial-facts span { font-size: .88rem; }
  .table-scroll-hint { display: block; margin: -2px 0 8px; color: var(--muted); font-size: .82rem !important; }
  .article-content .pricing-table thead,
  .article-content .pricing-table tbody { display: table; width: 680px; table-layout: fixed; }
}

/* Evidence-led review template */
.review-v2 {
  --v2-accent: #b94125;
  --v2-accent-soft: #fff0eb;
  --v2-blue: #287a72;
  --v2-soft: #f3f7f4;
  --v2-border: #d8e2dc;
  background: #fbfcfa;
}
.review-v2 .breadcrumb { margin-bottom: 14px; }
.v2-main { color: var(--ink); }
.v2-hero { padding: 24px 0 28px; }
.v2-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .94fr) 284px; align-items: center; gap: 28px; }
.v2-label-row { display: flex; align-items: center; gap: 10px; }
.v2-test-label { padding: 5px 9px; border: 1px dashed var(--v2-accent); border-radius: 999px; color: #a5422c; font-size: .78rem; font-weight: 700; }
.v2-hero-copy h1 { max-width: 590px; margin: 13px 0 12px; font-size: clamp(2.8rem, 4vw, 4.2rem); line-height: .98; letter-spacing: -.05em; text-wrap: balance; }
.v2-lead { max-width: 620px; margin: 0 0 18px; color: #4c5d56; font-size: 1.05rem; line-height: 1.65; }
.v2-actions { display: flex; gap: 10px; margin-top: 18px; }
.v2-button--accent { border-color: var(--v2-accent); background: var(--v2-accent); color: #fff; }
.v2-button--accent:hover { border-color: #9f321b; background: #9f321b; color: #fff; }
.v2-independence { display: flex; align-items: center; gap: 7px; margin: 11px 0 0; color: var(--muted); font-size: .78rem; }
.v2-independence::before { width: 7px; height: 7px; border-radius: 50%; background: var(--forest-2); content: ""; }
.v2-product-visual { position: relative; min-width: 0; margin: 0; padding: 14px; border: 1px solid var(--v2-border); border-radius: 20px; background: linear-gradient(145deg, #fff, #eef4ef); box-shadow: 0 22px 48px rgb(14 58 46 / 12%); }
.v2-browser-bar { display: flex; align-items: center; gap: 5px; height: 28px; padding: 0 9px; border: 1px solid #e0e5e1; border-bottom: 0; border-radius: 11px 11px 0 0; background: #f6f8f6; }
.v2-browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #cdd7d1; }
.v2-browser-bar i:first-child { background: #ec6846; }
.v2-browser-bar span { margin-left: 5px; color: #718078; font-size: .58rem; }
.v2-product-visual img { width: 100%; height: 250px; border: 1px solid #e0e5e1; border-radius: 0 0 11px 11px; object-fit: cover; object-position: left top; }
.v2-product-visual figcaption { position: absolute; right: 25px; bottom: 24px; min-width: 165px; padding: 11px 13px; border: 1px solid rgb(255 255 255 / 76%); border-radius: 10px; background: rgb(255 255 255 / 93%); box-shadow: var(--shadow-sm); }
.v2-product-visual figcaption span, .v2-product-visual figcaption strong, .v2-product-visual figcaption small { display: block; }
.v2-product-visual figcaption span { color: var(--muted); font-size: .76rem; }
.v2-product-visual figcaption strong { margin: 1px 0; font-size: 1rem; }
.v2-product-visual figcaption small { max-width: 165px; color: var(--muted); font-size: .72rem; }
.v2-score-panel { padding: 18px; border: 1px solid #a9c9be; border-radius: 14px; background: #fff; text-align: center; box-shadow: var(--shadow-sm); }
.v2-score-kicker { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.v2-score-ring { position: relative; display: grid; width: 92px; height: 92px; margin: 12px auto 9px; place-content: center; border-radius: 50%; background: conic-gradient(var(--forest-2) calc(var(--score) * 1%), #e2ebe6 0); }
.v2-score-ring::before { position: absolute; inset: 7px; border-radius: 50%; background: #fff; content: ""; }
.v2-score-ring strong, .v2-score-ring span { position: relative; z-index: 1; }
.v2-score-ring strong { font-size: 2rem; line-height: .9; }
.v2-score-ring span { color: var(--muted); font-size: .72rem; }
.v2-score-panel h2 { margin: 0; font-size: 1.12rem; }
.v2-score-panel > p { margin: 6px 0 13px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.v2-score-rows { display: grid; gap: 8px; text-align: left; }
.v2-score-rows > div { position: relative; display: grid; grid-template-columns: 1fr auto; padding-bottom: 5px; font-size: .78rem; }
.v2-score-rows b { color: var(--forest-2); }
.v2-score-rows i { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--forest-2) var(--bar), #e4ebe7 var(--bar)); }
.v2-decision-strip { padding: 0 0 24px; }
.v2-decision-strip > .container { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--v2-border); border-radius: 12px; background: #fff; overflow: hidden; }
.v2-decision-strip article { display: flex; align-items: center; gap: 12px; min-height: 82px; padding: 15px 18px; }
.v2-decision-strip article + article { border-left: 1px solid var(--v2-border); }
.v2-decision-strip svg { width: 26px; min-width: 26px; color: var(--forest-2); }
.v2-decision-strip span, .v2-decision-strip strong { display: block; }
.v2-decision-strip span { margin-bottom: 2px; color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.v2-decision-strip strong { font-size: .88rem; line-height: 1.4; }
.v2-decision-strip .v2-warning svg { color: var(--v2-accent); }
.v2-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 284px; align-items: start; gap: 20px; padding-bottom: 32px; }
.v2-primary { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.v2-verdict-card, .v2-section, .v2-full-review, .v2-final { border: 1px solid var(--v2-border); border-radius: 13px; background: #fff; box-shadow: 0 8px 24px rgb(14 58 46 / 5%); }
.v2-verdict-card { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 22px; background: linear-gradient(135deg, #f0faf6, #fff 72%); }
.v2-verdict-mark { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 12px; background: var(--forest); color: #fff; }
.v2-verdict-mark svg { width: 25px; }
.v2-verdict-card h2 { max-width: 790px; margin: 0 0 8px; font-size: 1.55rem; line-height: 1.2; }
.v2-verdict-card > div > p { margin: 0; color: #40524b; font-size: .94rem; }
.v2-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.v2-choice-grid > div { padding: 13px; border: 1px solid var(--v2-border); border-radius: 9px; background: #fff; }
.v2-choice-grid strong { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; font-size: .84rem; }
.v2-choice-grid strong svg { width: 18px; color: var(--forest-2); }
.v2-choice-grid > div:last-child strong svg { color: var(--v2-accent); }
.v2-choice-grid span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.v2-section, .v2-full-review { padding: 22px; }
.v2-section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.v2-section-heading > span { display: grid; width: 34px; min-width: 34px; height: 34px; place-items: center; border-radius: 9px; background: var(--forest); color: #fff; font-size: .72rem; font-weight: 800; }
.v2-section-heading small { display: block; color: var(--v2-accent); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.v2-section-heading h2 { margin: 1px 0 0; font-size: 1.5rem; line-height: 1.15; }
.v2-procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v2-procon-grid article { padding: 17px; border-radius: 10px; }
.v2-pros { border: 1px solid #bdd9cc; background: #f2faf6; }
.v2-cons { border: 1px solid #f0c9be; background: #fff7f4; }
.v2-procon-grid h3 { margin: 0 0 11px; font-size: 1rem; }
.v2-procon-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.v2-procon-grid li { display: flex; align-items: start; gap: 8px; font-size: .85rem; }
.v2-procon-grid li svg { width: 18px; min-width: 18px; color: var(--forest-2); }
.v2-cons li svg { color: var(--v2-accent); }
.v2-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.v2-feature-grid article { display: flex; gap: 11px; min-height: 108px; padding: 14px; border: 1px solid var(--v2-border); border-radius: 10px; background: #fcfdfc; }
.v2-feature-grid svg { width: 24px; min-width: 24px; color: var(--forest-2); }
.v2-feature-grid h3 { margin: 0 0 4px; font-size: .9rem; }
.v2-feature-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.v2-section-intro { max-width: 760px; margin: -4px 0 16px; color: var(--muted); font-size: .92rem; }
.v2-scroll-hint { display: none; }
.v2-table-wrap { overflow-x: auto; border: 1px solid var(--v2-border); border-radius: 10px; }
.v2-comparison-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.v2-comparison-table th, .v2-comparison-table td { padding: 11px 12px; border-bottom: 1px solid #e7ece8; text-align: center; }
.v2-comparison-table th:first-child { position: sticky; left: 0; z-index: 2; background: #fff; box-shadow: 5px 0 8px rgb(6 62 50 / 5%); text-align: left; }
.v2-comparison-table thead th { background: #f5f7f5; font-size: .72rem; text-transform: uppercase; }
.v2-comparison-table .is-highlighted { background: #eaf6f0; color: #074c3d; font-weight: 800; }
.v2-comparison-table a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.v2-comparison-table tbody tr:last-child > * { border-bottom: 0; }
.v2-comparison-table--features th, .v2-comparison-table--features td { min-width: 185px; text-align: left; vertical-align: top; }
.v2-comparison-table--features tbody th { min-width: 180px; }
.v2-comparison-table--features td strong, .v2-comparison-table--features td small, .v2-comparison-table--features td a { display: block; }
.v2-comparison-table--features td small { margin-top: 3px; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.v2-compare-status { display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; margin-bottom: 5px; border-radius: 50%; font-size: .75rem; font-weight: 900; }
.v2-compare-status.is-yes { color: #fff; background: var(--forest-2); }
.v2-compare-status.is-no { color: #fff; background: #b64a3a; }
.v2-compare-status.is-limited { color: #5d3b00; background: #f3c96a; }
.v2-comparison-verdict { margin-top: 14px; padding: 17px 18px; border: 1px solid #c9d9d0; border-radius: 10px; background: #f4f8f5; }
.v2-comparison-verdict h3 { margin: 0 0 8px; font-size: 1rem; }
.v2-comparison-verdict p { margin: 6px 0; color: #31453e; font-size: .88rem; line-height: 1.6; }
.v2-source-note { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }
.v2-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.v2-pricing-grid article { padding: 17px; border: 1px solid var(--v2-border); border-radius: 11px; background: #fff; }
.v2-pricing-grid article.is-featured { border-color: #82ad9d; background: #f0f8f4; box-shadow: inset 0 3px var(--forest-2); }
.v2-pricing-grid article > span { color: var(--v2-accent); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.v2-pricing-grid h3 { margin: 5px 0 13px; font-size: 1rem; }
.v2-pricing-grid article > div { display: flex; align-items: baseline; gap: 3px; }
.v2-pricing-grid article > div strong { font-size: 1.8rem; }
.v2-pricing-grid article > div small { color: var(--muted); }
.v2-pricing-grid p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.v2-pricing-grid ul { display: grid; gap: 6px; margin: 13px 0 12px; padding: 12px 0; border-block: 1px solid #e1e8e3; list-style: none; }
.v2-pricing-grid li { display: flex; align-items: center; gap: 7px; color: #41544c; font-size: .8rem; }
.v2-pricing-grid li::before { color: var(--forest-2); content: "✓"; font-weight: 900; }
.v2-pricing-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 15px; padding: 13px 14px; border-radius: 9px; background: var(--v2-soft); }
.v2-pricing-foot p { max-width: 650px; margin: 0; color: #53635d; font-size: .8rem; line-height: 1.55; }
.v2-pricing-foot .button { flex: 0 0 auto; }
.v2-editor-note { display: flex; align-items: start; gap: 10px; margin-bottom: 14px; padding: 12px 14px; border-radius: 9px; background: var(--v2-soft); }
.v2-editor-note svg { width: 21px; min-width: 21px; color: var(--forest-2); }
.v2-editor-note p { margin: 0; color: #4e6159; font-size: .84rem; }
.v2-article-content { display: grid; gap: 14px; }
.v2-content-section { padding: 20px; border: 1px solid var(--v2-border); border-radius: 11px; background: #fff; }
.v2-content-section > :first-child { margin-top: 0; }
.v2-content-section > :last-child { margin-bottom: 0; }
.v2-content-section h2 { margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid #e6ece8; font-size: 1.45rem; line-height: 1.2; }
.v2-content-section h3 { margin: 19px 0 7px; font-size: 1.08rem; }
.v2-content-section p, .v2-content-section li { font-size: 1rem; line-height: 1.72; }
.v2-content-section .v2-table-wrap { margin: 16px 0; }
.v2-content-section .v2-table-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .86rem; }
.v2-content-section .v2-table-wrap th, .v2-content-section .v2-table-wrap td { padding: 11px 12px; border-bottom: 1px solid #e5ebe7; text-align: left; vertical-align: top; }
.v2-content-section .v2-table-wrap thead th { background: #f2f6f3; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.v2-content-section .v2-table-wrap tbody tr:last-child > * { border-bottom: 0; }
.v2-content-section figure { margin: 16px 0; }
.v2-content-section img { border: 1px solid #e3e8e4; border-radius: 9px; }
.v2-full-review summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; }
.v2-full-review summary::-webkit-details-marker { display: none; }
.v2-full-review summary .v2-section-heading { margin: 0; }
.v2-full-review summary .v2-section-heading > span:last-child { display: block; }
.v2-full-review summary small { display: block; color: var(--v2-accent); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.v2-full-review summary strong { display: block; margin-top: 1px; font-size: 1.5rem; line-height: 1.15; }
.v2-summary-action { display: flex; align-items: center; gap: 9px; white-space: nowrap; color: var(--forest-2); font-size: .78rem; font-weight: 800; }
.v2-summary-action b { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #b8cdc4; border-radius: 50%; font-size: 1.1rem; transition: rotate .2s ease; }
.v2-full-review[open] .v2-summary-action b { rotate: 45deg; }
.v2-full-review-body { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--v2-border); }
.v2-final { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px; background: var(--forest); color: #fff; }
.v2-final > div { display: flex; align-items: center; gap: 18px; }
.v2-final > div > span { font-size: 2.2rem; font-weight: 800; }
.v2-final > div > span small { font-size: .75rem; }
.v2-final small { color: #c9ded6; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.v2-final h2 { margin: 1px 0 3px; font-size: 1.15rem; }
.v2-final p { margin: 0; color: #d9e8e3; font-size: .78rem; }
.v2-final .button { background: #fff; color: var(--forest); }
.v2-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.v2-related-grid a { display: block; padding: 16px; border: 1px solid var(--v2-border); border-radius: 10px; background: #fcfdfc; text-decoration: none; }
.v2-related-grid a:hover { border-color: #93b8aa; background: #f2f8f5; }
.v2-related-grid span { display: block; margin-bottom: 5px; color: var(--v2-accent); font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.v2-related-grid strong { display: block; font-size: .94rem; line-height: 1.35; }
.v2-related-grid p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.v2-sidebar { position: sticky; top: 82px; display: grid; gap: 12px; }
.v2-sidebar > * { padding: 17px; border: 1px solid var(--v2-border); border-radius: 12px; background: #fff; }
.v2-sidebar-score { text-align: center; }
.v2-sidebar-score > span { color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.v2-sidebar-score > strong { display: block; margin: 3px 0; color: var(--forest); font-size: 2.35rem; line-height: 1; }
.v2-sidebar-score > strong small { font-size: .8rem; }
.v2-sidebar-score p { margin: 7px 0 12px; color: var(--muted); font-size: .8rem; }
.v2-sidebar-score .button { width: 100%; justify-content: center; }
.v2-text-link { display: inline-block; margin-top: 10px; color: var(--forest-2); font-size: .8rem; font-weight: 700; text-decoration: none; }
.v2-text-link:hover { text-decoration: underline; }
.v2-sidebar nav h2 { margin: 0 0 11px; font-size: 1rem; }
.v2-sidebar nav ol { display: grid; gap: 8px; margin: 0; padding: 0 0 0 18px; }
.v2-sidebar nav a { color: #40534c; font-size: .82rem; text-decoration: none; }
.v2-sidebar nav a:hover { color: var(--forest-2); text-decoration: underline; }

@media (max-width: 1080px) {
  .v2-hero-grid { grid-template-columns: 1fr 1fr; }
  .v2-score-panel { grid-column: 1 / -1; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 16px; text-align: left; }
  .v2-score-panel .v2-score-ring { margin: 0; }
  .v2-score-panel > p { margin: 0; }
  .v2-score-rows { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
  .v2-page-grid { grid-template-columns: 1fr; }
  .v2-sidebar { position: static; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .v2-hero { padding-top: 8px; }
  .v2-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .v2-label-row { align-items: start; flex-direction: column; }
  .v2-hero-copy h1 { font-size: clamp(2.55rem, 12vw, 3.35rem); }
  .v2-lead { font-size: .95rem; }
  .v2-actions { flex-direction: column; }
  .v2-actions .button { justify-content: center; }
  .v2-product-visual img { height: 220px; }
  .v2-score-panel { grid-column: auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .v2-score-panel .v2-score-ring { margin: 12px auto 9px; }
  .v2-score-panel > p { max-width: 300px; margin: 6px auto 15px; }
  .v2-score-rows { width: 100%; grid-template-columns: 1fr; text-align: left; }
  .v2-decision-strip > .container { grid-template-columns: 1fr; }
  .v2-decision-strip article + article { border-top: 1px solid var(--v2-border); border-left: 0; }
  .v2-verdict-card { grid-template-columns: 1fr; }
  .v2-choice-grid, .v2-procon-grid, .v2-feature-grid, .v2-pricing-grid, .v2-related-grid { grid-template-columns: 1fr; }
  .v2-section, .v2-full-review { padding: 16px; }
  .v2-section-heading { align-items: start; }
  .v2-section-heading h2 { font-size: 1.3rem; }
  .v2-comparison-table { min-width: 670px; }
  .v2-scroll-hint { display: flex; justify-content: flex-end; gap: 6px; margin: -5px 0 8px; color: var(--forest-2); font-size: .72rem; font-weight: 800; }
  .v2-table-wrap { scrollbar-color: var(--forest-2) #e7ede9; scrollbar-width: thin; }
  .v2-pricing-foot { align-items: stretch; flex-direction: column; }
  .v2-pricing-foot .button { justify-content: center; }
  .v2-full-review summary { align-items: flex-start; flex-direction: column; }
  .v2-full-review summary strong { font-size: 1.3rem; }
  .v2-summary-action { width: 100%; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--v2-border); }
  .v2-content-section { padding: 16px; }
  .v2-content-section p, .v2-content-section li { font-size: 1rem; }
  .v2-final, .v2-final > div { align-items: start; flex-direction: column; }
  .v2-sidebar { grid-template-columns: 1fr; }
}
