
:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #5d5b54;
  --paper: #fffdf8;
  --panel: #ffffff;
  --line: #ded9cd;
  --green: #164734;
  --green-2: #0d2d22;
  --leaf: #dce8c8;
  --yellow: #f4d35e;
  --coral: #b65337;
  --blue: #dce9ef;
  --shadow: 0 18px 50px rgba(17, 17, 15, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green-2);
  text-decoration: none;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer nav a {
  padding: 7px 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a[aria-current="page"],
.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--green-2);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid var(--green-2);
  border-radius: 0;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary,
.nav-cta {
  background: var(--green-2);
  color: #fff;
}

.button.secondary {
  background: var(--yellow);
  color: var(--ink);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.article-shell,
.guide-page {
  padding: 34px 0 70px;
}

.hero {
  max-width: 910px;
  padding: 26px 0 34px;
}

.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.article-meta a {
  color: var(--green-2);
}

.article-meta span::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  color: var(--ink);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 52px);
  color: var(--green-2);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
}

h4 {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lede,
.dek {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.lede {
  margin: 18px 0 0;
}

.byline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.disclosure {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 6px solid var(--yellow);
  background: #fff7d6;
  color: #3a3320;
  font-size: 15px;
}

.hero-figure {
  margin: 30px 0 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 78px;
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.toc strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green-2);
}

.article-main {
  min-width: 0;
}

.summary-card,
.intent-hub,
.commerce-block,
.reviews,
.method,
.buying-guide,
.faq,
.related-guides,
.guide-cta {
  margin-bottom: 58px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.summary-card {
  border-top: 6px solid var(--ink);
}

.summary-head,
.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.summary-head p,
.section-heading p,
.method p,
.buying-guide p,
.guide-body p,
.guide-body li,
.faq p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pick {
  display: grid;
  grid-template-columns: 42px 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.pick:hover {
  background: #fff9df;
}

.intent-grid,
.related-guides > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intent-card,
.related-guides a {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.intent-card span,
.related-guides a span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intent-card strong,
.related-guides a strong {
  color: var(--green-2);
  font-size: 20px;
  line-height: 1.12;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.pick-rank {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  font-weight: 900;
}

.pick img {
  width: 86px;
  height: 86px;
  padding: 6px;
  background: #f7f7f2;
  object-fit: contain;
}

.pick strong {
  color: var(--green-2);
  font-size: 14px;
}

.pick em {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.pick small {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--green-2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 15px;
}

td strong {
  display: block;
  color: var(--ink);
}

td span {
  display: block;
  margin-top: 2px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td a {
  color: var(--green-2);
  font-weight: 900;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 3px solid var(--ink);
}

.review-media {
  position: relative;
  align-self: start;
  border: 1px solid var(--line);
  background: #f7f7f2;
}

.review-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 18px;
  object-fit: contain;
}

.award {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-title {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.score {
  flex: 0 0 auto;
  display: grid;
  align-content: center;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  line-height: 1;
}

.score span {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.score small {
  color: var(--leaf);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score em {
  color: var(--leaf);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.specs {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.specs div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
}

.criteria {
  display: grid;
  gap: 11px;
  margin: 10px 0 20px;
}

.criterion {
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.criterion-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.criterion-head strong {
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.criterion-head span {
  color: #000;
  font-size: 14px;
  font-weight: 900;
}

.criterion p {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.criterion-meter {
  overflow: hidden;
  height: 11px;
  background: #f0eee7;
}

.criterion-meter i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--leaf);
}

.review-copy p {
  color: var(--muted);
  font-size: 17px;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
}

.method-grid,
.guide-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-grid article,
.guide-columns article {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.method-grid strong {
  color: var(--green-2);
  font-size: 18px;
}

.guide-columns {
  margin-top: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--green-2);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.guide-page {
  max-width: 860px;
}

.guide-body {
  margin-top: 34px;
}

.guide-body section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.guide-body h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.guide-body ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.related-guides {
  margin-top: 28px;
}

.guide-cta {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  background: #fff;
}

.guide-cta div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 34px max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .article-layout,
  .review-card,
  .method,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 12px 0;
  }

  .toc strong {
    white-space: nowrap;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .guide-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 26px, 1180px);
  }

  .brand {
    font-size: 20px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
  }

  .site-header nav a {
    padding: 5px 8px;
    font-size: 13px;
  }

  .hero {
    padding-top: 14px;
  }

  .pick {
    grid-template-columns: 36px 76px minmax(0, 1fr);
  }

  .pick img {
    width: 76px;
    height: 76px;
  }

  .review-title {
    display: grid;
  }

  .score {
    width: 72px;
    height: 72px;
  }

  .specs div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .button {
    width: 100%;
  }
}

/* Reference-led commerce refresh. Visual rhythm from publisher listicles, conversion mechanics from data-driven affiliate reviews. */
:root {
  --ink: #050505;
  --muted: #5b5b5b;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #d9d9d9;
  --teal: #59c6c1;
  --deep-teal: #075d64;
  --shop: #0b6f75;
  --cream: #f8f6ef;
  --yellow: #f1d04b;
  --coral: #b65337;
  --green-2: #0b3327;
}

body {
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

.site-header {
  position: static;
  display: block;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  padding: 0 29px;
  background: var(--teal);
}

.utility-bar a {
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.masthead {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 10px 24px;
}

.brand {
  justify-self: center;
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(27px, 7.4vw, 38px);
  font-weight: 900;
  line-height: 0.78;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-disclosure {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 6px;
  width: 31px;
}

.menu-icon i {
  display: block;
  height: 2px;
  background: #000;
}

.search-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
}

.search-icon::before {
  content: "";
  position: absolute;
  inset: 3px 7px 9px 3px;
  border: 3px solid #000;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 4px;
  width: 14px;
  height: 3px;
  background: #000;
  transform: rotate(45deg);
  transform-origin: center;
}

.site-header nav {
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  overflow-x: auto;
  padding: 14px 16px 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: nowrap;
}

.site-header nav a {
  flex: 0 0 auto;
  padding: 0;
  color: #000;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.site-header nav a[aria-current="page"] {
  color: #000;
}

.trend-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trend-bar strong {
  flex: 0 0 auto;
  color: #000;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.trend-bar strong::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-radius: 50%;
  background: #000;
  vertical-align: middle;
}

.trend-bar a {
  flex: 0 0 auto;
  max-width: 520px;
  overflow: hidden;
  padding: 8px 18px;
  border: 1px solid #555;
  border-radius: 999px;
  color: #000;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

main {
  width: 100%;
  margin: 0;
}

.article-shell {
  padding: 0 0 64px;
}

.hero,
.article-main,
.guide-page {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
}

.hero {
  padding: 13px 15px 0;
}

.article-meta {
  margin: 0 0 18px;
  color: #5f5f5f;
  font-size: 15px;
  font-weight: 500;
}

.article-meta a {
  color: #5f5f5f;
  text-underline-offset: 4px;
}

.article-meta span::before {
  color: #999;
}

.follow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 17px;
}

.follow-row a {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
}

.follow-pill {
  padding: 9px 22px;
  border-radius: 999px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
}

.article-shell h1 {
  max-width: none;
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 8.7vw, 52px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.article-shell h2,
.article-shell h3 {
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.lede {
  margin: 20px 0 0;
  color: #111;
  font-size: 20px;
  line-height: 1.28;
}

.byline {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 24px;
  color: #616161;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  flex-wrap: nowrap;
}

.byline span:first-child {
  color: #1f1f1f;
  text-decoration: underline;
  text-decoration-color: var(--deep-teal);
  text-underline-offset: 5px;
}

.proof-line {
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.quick-winners {
  margin: 18px 0 22px;
  border: 1px solid #1f1f1f;
  background: #fff;
}

.quick-winners-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #1f1f1f;
  background: #f8f6ef;
}

.quick-winners-head strong,
.quick-winners-head a {
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-winners-head a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.quick-winner-list {
  display: grid;
}

.quick-winner {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #d2d2d2;
}

.quick-winner:last-child {
  border-bottom: 0;
}

.quick-winner-media {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  margin: 0;
  border: 1px solid #e4ded3;
  background: #f7f7f2;
}

.quick-winner-media img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.quick-winner p {
  margin: 0 0 4px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-winner h2 {
  margin: 0;
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.quick-winner span {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 13px;
  font-weight: 800;
}

.quick-winner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 9px;
  padding: 7px 11px;
  background: var(--shop);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.save-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 34px;
  margin: 24px 0 30px;
  border: 1px solid #7f7f7f;
  border-radius: 999px;
  text-decoration: none;
}

.save-button span {
  position: relative;
  width: 12px;
  height: 17px;
  border: 0;
}

.save-button span::before,
.save-button span::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}

.save-button span::before {
  inset: 0;
  background: #000;
}

.save-button span::after {
  inset: 2px 2px 3px;
  background: #fff;
}

.hero-figure {
  margin: 0 -15px;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 176px;
  gap: 2px;
  border-top: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  background: var(--deep-teal);
}

.hero-collage img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 12px;
  background: #f7f7f2;
  object-fit: contain;
}

.hero-collage img:nth-child(2) {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.trust-strip {
  margin: 16px -15px 0;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #111;
  font-size: 16px;
  line-height: 1.28;
  text-align: center;
}

.trust-strip a {
  color: var(--deep-teal);
  font-weight: 900;
  text-underline-offset: 3px;
}

.intro-copy {
  max-width: 720px;
  padding: 18px 0 0;
}

.intro-copy p {
  margin: 0 0 16px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 4.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.intro-copy a {
  color: var(--deep-teal);
  font-weight: 900;
}

.article-layout {
  display: block;
}

.toc {
  display: none;
}

.summary-card,
.intent-hub,
.commerce-block,
.reviews,
.method,
.buying-guide,
.faq,
.related-guides {
  width: min(100%, 760px);
  margin: 0 auto 46px;
  padding: 0 15px;
  border-top: 0;
}

.summary-card {
  margin-top: 0;
}

.summary-head {
  display: block;
  margin-bottom: 14px;
}

.summary-head h2 {
  max-width: 680px;
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(29px, 7.2vw, 42px);
  line-height: 1.04;
}

.intent-hub .section-heading {
  display: block;
  margin-bottom: 12px;
}

.intent-hub h2,
.related-guides h2 {
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 6.2vw, 34px);
  line-height: 1.06;
}

.intent-hub h2 {
  font-size: clamp(22px, 5.6vw, 30px);
}

.intent-grid,
.related-guides > div {
  grid-template-columns: 1fr;
  gap: 10px;
}

.intent-card,
.related-guides a {
  padding: 13px 14px;
  border-color: #cfcfcf;
}

.intent-card strong,
.related-guides a strong {
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.08;
}

.intent-card p {
  font-size: 13px;
  line-height: 1.35;
}

.intent-hub .intent-grid {
  gap: 0;
  border-top: 1px solid #cfcfcf;
}

.intent-hub .intent-card {
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
}

.intent-hub .intent-card span {
  grid-row: span 2;
  padding-top: 2px;
  font-size: 11px;
  line-height: 1.15;
}

.intent-hub .intent-card strong {
  font-size: 16px;
}

.intent-hub .intent-card p {
  font-size: 13px;
}

.pick-list {
  display: grid;
  border-top: 1px solid #9c9c9c;
}

.pick {
  display: grid;
  grid-template-columns: 31px 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 116px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #9c9c9c;
  background: #fff;
  text-decoration: none;
}

.pick-rank {
  width: 28px;
  height: 28px;
  font-size: 13px;
  align-self: start;
  margin-top: 4px;
}

.pick img {
  width: 88px;
  height: 88px;
  padding: 6px;
  background: #f7f7f2;
  object-fit: contain;
}

.pick-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.pick strong {
  color: #000;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.pick em {
  color: #000;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(19px, 5vw, 24px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
}

.pick-meta {
  color: #555;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.pick small {
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading .eyebrow,
.eyebrow {
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
}

.commerce-block h2,
.reviews h2,
.method h2,
.buying-guide h2,
.faq h2 {
  color: #000;
  font-size: clamp(32px, 8.4vw, 48px);
  line-height: 1;
}

.table-wrap {
  border: 1px solid #bdbdbd;
}

th {
  background: #000;
}

td a {
  color: var(--deep-teal);
}

@media (max-width: 700px) {
  .utility-bar {
    display: none;
  }

  .masthead {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    min-height: 52px;
    padding: 7px 14px;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    font-size: 21px;
  }

  .menu-icon {
    gap: 5px;
    width: 26px;
  }

  .search-icon {
    width: 29px;
    height: 29px;
  }

  .mobile-disclosure {
    display: block;
    padding: 8px 16px;
    border-bottom: 1px solid var(--line);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }

  .mobile-disclosure a {
    color: var(--deep-teal);
    font-weight: 900;
    text-underline-offset: 3px;
  }

  .site-header nav {
    display: none;
  }

  .trend-bar {
    display: none;
  }

  .hero {
    padding: 12px 15px 0;
  }

  .article-meta {
    display: none;
  }

  .follow-row {
    display: none;
  }

  .article-shell h1 {
    font-size: clamp(29px, 7.8vw, 35px);
    line-height: 1.04;
  }

  .lede {
    margin-top: 9px;
    font-size: 16px;
  }

  .byline {
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    flex-wrap: wrap;
  }

  .proof-line {
    margin-top: 8px;
    font-size: 12px;
  }

  .quick-winners {
    margin: 12px 0 15px;
  }

  .quick-winner {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .quick-winner-media {
    width: 96px;
    height: 96px;
  }

  .quick-winner-media img {
    padding: 5px;
  }

  .quick-winner h2 {
    font-size: 18px;
  }

  .quick-winner span {
    font-size: 12px;
  }

  .quick-winner a {
    min-height: 31px;
    margin-top: 7px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .save-button {
    display: none;
  }

  .hero-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 118px;
  }

  .hero-collage img:nth-child(2) {
    grid-row: auto;
  }

  .hero-collage img {
    padding: 7px;
  }

  .trust-strip {
    margin-top: 12px;
    padding: 16px 22px;
    font-size: 14px;
  }

  .intro-copy {
    padding-top: 14px;
  }

  .intro-copy p {
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 1.34;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
  }

  .table-wrap table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tbody {
    display: grid;
    gap: 14px;
  }

  .table-wrap tr {
    padding: 17px 16px;
    border: 1px solid #bdbdbd;
    background: #fff;
  }

  .table-wrap td {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    align-items: baseline;
    padding: 0;
    border: 0;
    color: #5b5b5b;
    font-size: 15px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .table-wrap td + td {
    margin-top: 10px;
  }

  .table-wrap td::before {
    color: #000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .table-wrap td:nth-child(1) {
    display: block;
    padding-bottom: 11px;
    border-bottom: 1px solid #d9d9d9;
  }

  .table-wrap td:nth-child(1) strong {
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: 23px;
    line-height: 1.05;
  }

  .table-wrap td:nth-child(1) span {
    margin-top: 7px;
    font-size: 12px;
  }

  .table-wrap td:nth-child(2)::before {
    content: "Best for";
  }

  .table-wrap td:nth-child(3)::before {
    content: "Score";
  }

  .table-wrap td:nth-child(4)::before {
    content: "Price";
  }

  .table-wrap td:nth-child(5)::before {
    content: "Availability";
  }

  .table-wrap td:nth-child(6)::before {
    content: "Shop";
  }

  .table-wrap td a {
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
}

.review-card {
  display: block;
  padding: 30px 0;
  border-top: 1px solid #9c9c9c;
}

.review-media {
  border: 0;
  background: transparent;
}

.review-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  padding: 0;
  border: 1px solid #e4ded3;
  background: #f7f7f2;
}

.award {
  position: static;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  background: var(--yellow);
  color: #000;
}

.review-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
}

.review-title h3 {
  color: #000;
  font-size: clamp(29px, 8vw, 44px);
}

.score {
  width: 72px;
  height: 72px;
  background: #000;
}

.button.primary,
.nav-cta {
  background: var(--shop);
  border-color: var(--shop);
}

.site-footer {
  display: block;
  padding: 28px 16px;
  border-top: 1px solid var(--line);
}

@media (min-width: 900px) {
  .site-header nav {
    justify-content: center;
  }

  .hero,
  .article-main,
  .guide-page {
    max-width: 820px;
  }

  .article-shell h1 {
    font-size: 60px;
  }

  .pick {
    grid-template-columns: 42px 140px minmax(0, 1fr);
  }

  .pick img {
    width: 140px;
    height: 140px;
  }
}
