:root {
  --ink: #201c18;
  --muted: #6f6860;
  --paper: #f5efe4;
  --paper-strong: #fffaf1;
  --panel: #fffdf8;
  --evergreen: #123f36;
  --evergreen-2: #1f5a4d;
  --copper: #b3693c;
  --copper-dark: #81503a;
  --line: rgba(32, 28, 24, 0.14);
  --shadow: 0 24px 60px rgba(24, 18, 12, 0.12);
  --radius: 8px;
  --container: 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);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.narrow {
  max-width: 860px;
}

.site-header {
  background: rgba(245, 239, 228, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.header-shell {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--evergreen);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--paper-strong);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 0.95rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-copy {
  display: grid;
  gap: 0.06rem;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.2vw, 1.7rem);
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--evergreen);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-left: 0.4rem;
}

.icon-button {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle {
  display: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: var(--ink);
  content: "";
  display: block;
  height: 2px;
  width: 18px;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(18, 63, 54, 0.1), rgba(245, 239, 228, 0)),
    var(--paper);
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.eyebrow,
.label {
  color: var(--copper-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.hero-lede,
.article-dek,
.legal-hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  max-width: 620px;
}

.hero-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
}

.button.primary {
  background: var(--evergreen);
  color: var(--paper-strong);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--evergreen);
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media img,
.article-image img,
.feature-article img,
.compact-article img,
.review-card > img,
.sidebar-card img {
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
  width: 100%;
}

.signal-strip {
  background: var(--evergreen);
  color: var(--paper-strong);
}

.signal-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 1px;
}

.signal-grid div {
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.92rem;
  margin-top: 0.25rem;
}

.section-block {
  padding: clamp(2.4rem, 6vw, 5.5rem) 0;
}

.section-block.muted {
  background: #eadfce;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.section-heading a {
  color: var(--evergreen);
  font-weight: 850;
}

.featured-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
}

.feature-article,
.compact-article,
.review-card,
.verdict-panel,
.author-box,
.legal-panel,
.sticky-sidebar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  overflow: hidden;
}

.feature-article img {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.article-copy {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.article-copy p,
.compact-article p,
.review-copy p,
.content-prose p,
.author-box p,
.legal-panel p,
.site-footer p {
  color: var(--muted);
}

.meta-row,
.byline {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}

.stacked-list {
  display: grid;
  gap: 1rem;
}

.compact-article {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 118px minmax(0, 1fr);
  padding: 0.75rem;
}

.compact-article img {
  aspect-ratio: 1;
}

.category-panel {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.82fr 1.18fr;
}

.category-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.category-grid a {
  background: var(--panel);
  border: 1px solid rgba(32, 28, 24, 0.16);
  border-radius: var(--radius);
  color: var(--evergreen);
  font-weight: 850;
  padding: 1rem;
}

.article-page {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 6rem);
}

.article-shell {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
}

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

.breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 0.5rem;
}

.article-hero h1 {
  max-width: 12ch;
}

.article-image {
  margin: 1.4rem 0 0;
}

.article-image img {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.disclosure {
  align-items: start;
  background: #efe2d0;
  border-left: 4px solid var(--copper);
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
  margin: 1.2rem 0;
  padding: 1rem;
}

.disclosure strong {
  color: var(--ink);
}

.verdict-panel {
  align-items: center;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) 128px;
  margin: 1.2rem 0;
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.score-card,
.mini-score {
  align-items: center;
  background: var(--evergreen);
  color: var(--paper-strong);
  display: grid;
  justify-items: center;
  min-height: 118px;
  padding: 1rem;
}

.score-card strong {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.score-card span,
.score-card small,
.mini-score span {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.jump-links {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.6rem;
  margin: 1.6rem 0 2rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  position: sticky;
  top: 75px;
  z-index: 5;
}

.jump-links a {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--evergreen);
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0.58rem 0.78rem;
}

.article-section {
  margin-top: clamp(2.4rem, 5vw, 4rem);
}

.article-heading {
  align-items: start;
  display: block;
}

.review-list {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: 42px 170px minmax(0, 1fr) 82px;
  padding: 1rem;
}

.rank {
  align-items: center;
  background: var(--copper);
  color: white;
  display: flex;
  font-family: var(--serif);
  font-size: 1.4rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.review-card > img {
  aspect-ratio: 1;
}

.pros-cons {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

.pros-cons ul,
.criteria-list {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.mini-score {
  min-height: 82px;
}

.mini-score strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 100%;
  overflow-x: auto;
}

table {
  background: var(--panel);
  border-collapse: collapse;
  min-width: 660px;
  width: 100%;
}

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

th {
  background: var(--evergreen);
  color: var(--paper-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.content-prose {
  font-size: 1.05rem;
}

.content-prose h3 {
  margin-top: 1.5rem;
}

.author-box {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 74px minmax(0, 1fr);
  margin-top: 2rem;
  padding: 1rem;
}

.author-initials {
  align-items: center;
  background: var(--evergreen);
  color: var(--paper-strong);
  display: flex;
  font-family: var(--serif);
  font-size: 1.2rem;
  height: 74px;
  justify-content: center;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 0.7rem;
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.pp-faq-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
}

.pp-faq-list details {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 8px;
  overflow: hidden;
}

.pp-faq-list summary {
  align-items: center;
  color: var(--pp-green-deep);
  cursor: pointer;
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 700;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 28px;
  line-height: 1.18;
  list-style: none;
  padding: 18px;
}

.pp-faq-list summary::-webkit-details-marker {
  display: none;
}

.pp-faq-list summary::after {
  align-items: center;
  background: var(--pp-green);
  border-radius: 50%;
  color: #fffdf8;
  content: "+";
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.pp-faq-list details[open] summary {
  border-bottom: 1px solid var(--pp-line);
}

.pp-faq-list details[open] summary::after {
  content: "-";
}

.pp-faq-list p {
  color: #343c38;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  margin: 0;
  padding: 16px 18px 18px;
}

.article-sidebar {
  display: block;
}

.sticky-sidebar {
  padding: 1rem;
  position: sticky;
  top: 100px;
}

.criteria-list {
  color: var(--muted);
  list-style: none;
  padding: 0;
}

.criteria-list li {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.criteria-list span {
  color: var(--copper-dark);
  font-weight: 900;
}

.sidebar-card {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.sidebar-card img {
  aspect-ratio: 4 / 3;
}

.sidebar-card span {
  color: var(--evergreen);
  font-weight: 850;
}

.legal-hero {
  padding: clamp(2.4rem, 6vw, 5rem) 0 1.4rem;
}

.legal-hero h1 {
  max-width: 12ch;
}

.legal-layout {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.tab-list {
  background: #e9dccb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem;
  padding: 0.25rem;
}

.tab-button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
  min-height: 44px;
}

.tab-button.active {
  background: var(--panel);
  color: var(--evergreen);
}

.legal-panel {
  display: none;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.legal-panel.active {
  display: block;
}

.legal-panel h3 {
  font-family: var(--sans);
  font-size: 1rem;
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 0.75rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper-strong);
  padding: 2rem 0;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
}

.footer-brand .brand-mark {
  background: var(--paper-strong);
  color: var(--evergreen);
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
  color: var(--paper-strong);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--paper-strong);
}

@media (max-width: 900px) {
  .site-nav {
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 1rem;
    margin: 0;
    padding: 0.85rem;
    position: absolute;
    right: 1rem;
    top: 78px;
  }

  .site-nav.open {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .featured-layout,
  .category-panel,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-shell {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.65rem);
  }

  .home-hero {
    padding-top: 1.4rem;
  }

  .hero-actions,
  .review-actions {
    display: grid;
  }

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

  .section-heading {
    align-items: start;
    display: grid;
  }

  .feature-article,
  .compact-article,
  .review-card,
  .verdict-panel,
  .author-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-article img,
  .hero-media img,
  .article-image img {
    aspect-ratio: 4 / 3;
  }

  .compact-article {
    align-items: start;
  }

  .compact-article img {
    width: 100%;
  }

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

  .review-card {
    position: relative;
  }

  .mini-score {
    align-items: start;
    justify-items: start;
    min-height: auto;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .jump-links {
    top: 69px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 0.9rem;
  }

  .brand-mark,
  .icon-button {
    height: 38px;
    width: 38px;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .category-grid,
  .tab-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

/* Pixel-pass homepage rebuilt from references/mockups/home-mobile-original.png */
.pp-home {
  --pp-green: #0e4235;
  --pp-green-dark: #073427;
  --pp-copper: #b77342;
  --pp-ink: #081612;
  --pp-soft: #fffdf8;
  --pp-line: #d6d1c9;
  --pp-muted: #174d40;
  background: var(--pp-soft);
  color: var(--pp-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
  min-width: 320px;
}

.pp-home .skip-link {
  background: var(--pp-green);
}

.pp-home svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-header {
  background: #fffefa;
  border-bottom: 1px solid #dedbd6;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.pp-header__inner {
  height: 56px;
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
}

.pp-logo {
  display: block;
  left: 14px;
  position: absolute;
  top: 10px;
  width: 159px;
}

.pp-logo img {
  height: auto;
  width: 159px;
}

.pp-icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #071512;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  position: absolute;
}

.pp-icon-button svg {
  stroke-width: 4;
}

.pp-menu {
  height: 34px;
  right: 15px;
  top: 13px;
  width: 34px;
}

.pp-nav {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  box-shadow: 0 18px 40px rgba(10, 16, 14, 0.14);
  display: none;
  gap: 0;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 62px;
}

.pp-nav.open {
  display: grid;
}

.pp-nav a {
  border-bottom: 1px solid var(--pp-line);
  color: var(--pp-green);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px;
}

.pp-main {
  margin-inline: auto;
  max-width: 1180px;
}

.pp-hero {
  height: 265px;
  margin: 0 auto;
  max-width: 864px;
  overflow: hidden;
  position: relative;
}

.pp-hero img {
  height: 265px;
  object-fit: cover;
  width: 100%;
}

.pp-hero__hotspot {
  bottom: 49px;
  height: 38px;
  left: 16px;
  position: absolute;
  width: 106px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pp-categories {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 75px;
  margin: 4px auto 0;
  max-width: 864px;
}

.pp-categories a {
  align-items: center;
  border-left: 1px solid var(--pp-line);
  color: var(--pp-green);
  display: grid;
  font-size: 12px;
  gap: 4px;
  justify-items: center;
  padding-top: 12px;
  text-align: center;
}

.pp-categories a:first-child {
  border-left: 0;
}

.pp-categories svg {
  height: 24px;
  stroke-width: 2.4;
  width: 24px;
}

.pp-categories span {
  color: #111916;
  font-size: clamp(11px, 3.2vw, 13px);
  line-height: 1.1;
}

.pp-latest {
  margin: 0 auto;
  max-width: 864px;
  padding: 25px 16px 18px;
}

.pp-latest h2 {
  color: #08120f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 4px;
}

.pp-feature-card {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  min-height: 171px;
  overflow: hidden;
}

.pp-feature-card__image img {
  height: 171px;
  object-fit: cover;
  width: 216px;
}

.pp-feature-card__copy {
  padding: 14px 11px 12px 13px;
}

.pp-feature-card__copy span {
  background: var(--pp-green);
  border-radius: 3px;
  color: #fffefa;
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding: 8px 9px 7px;
  text-transform: uppercase;
}

.pp-feature-card__copy h3 {
  color: #08120f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.05;
  margin: 18px 0 10px;
}

.pp-feature-card__copy p {
  color: #4c524f;
  font-size: 11px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.pp-feature-card__copy i {
  background: var(--pp-copper);
  display: block;
  height: 1px;
  margin-bottom: 16px;
  width: 44px;
}

.pp-review-link {
  align-items: center;
  color: var(--pp-muted);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  line-height: 1;
  min-height: 28px;
}

.pp-review-link svg {
  height: 19px;
  stroke-width: 2.5;
  width: 19px;
}

.pp-review-list {
  display: grid;
  margin-top: 14px;
}

.pp-review-list article {
  display: grid;
  gap: 17px;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 91px;
  padding: 0 0 10px;
}

.pp-review-list article + article {
  border-top: 1px solid var(--pp-line);
  padding-top: 10px;
}

.pp-review-list article span {
  color: var(--pp-copper);
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 7px 0 6px;
  text-transform: uppercase;
}

.pp-review-list img {
  border-radius: 2px;
  height: 83px;
  object-fit: cover;
  width: 132px;
}

.pp-review-list h3 {
  color: #08120f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.14;
  margin: 0 0 7px;
}

.pp-review-list p {
  color: #565b58;
  font-size: 10.5px;
  line-height: 1.35;
  margin: 0 0 11px;
}

.pp-review-list .pp-review-link {
  font-size: 13px;
}

.pp-footer {
  background: var(--pp-green-dark);
  color: #fffefa;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-inline: auto;
  max-width: 1180px;
  padding: 16px;
  text-align: center;
}

.pp-footer p {
  flex-basis: 100%;
  margin: 0;
}

.pp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pp-footer a {
  align-items: center;
  display: inline-flex;
  min-height: 28px;
}

@media (min-width: 760px) {
  .pp-header {
    height: 84px;
  }

  .pp-header__inner {
    height: 84px;
    padding-inline: 32px;
  }

  .pp-logo {
    left: 32px;
    top: 19px;
    width: 210px;
  }

  .pp-logo img {
    width: 210px;
  }

  .pp-menu {
    right: 42px;
    top: 24px;
  }

  .pp-hero {
    height: min(62vw, 560px);
    max-width: 1180px;
  }

  .pp-hero img {
    height: 100%;
  }

  .pp-hero__hotspot {
    bottom: 11%;
    height: 52px;
    left: 4%;
    width: 150px;
  }

  .pp-categories,
  .pp-latest {
    max-width: 1180px;
  }

  .pp-categories {
    height: 116px;
  }

  .pp-categories a {
    font-size: 20px;
    gap: 8px;
    padding-top: 22px;
  }

  .pp-categories svg {
    height: 38px;
    width: 38px;
  }

  .pp-categories span {
    font-size: 20px;
  }

  .pp-latest {
    padding: 48px 32px;
  }

  .pp-latest h2 {
    font-size: 48px;
    margin-bottom: 28px;
  }

  .pp-feature-card {
    grid-template-columns: minmax(360px, 1.2fr) minmax(280px, 0.8fr);
  }

  .pp-feature-card,
  .pp-feature-card__image img {
    min-height: 340px;
  }

  .pp-feature-card__image img {
    height: 100%;
    width: 100%;
  }

  .pp-feature-card__copy {
    padding: 48px 42px;
  }

  .pp-feature-card__copy span {
    font-size: 14px;
    padding: 13px 16px 12px;
  }

  .pp-feature-card__copy h3 {
    font-size: 42px;
    margin: 42px 0 14px;
  }

  .pp-feature-card__copy p {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .pp-feature-card__copy i {
    margin-bottom: 24px;
    width: 86px;
  }

  .pp-review-link {
    font-size: 24px;
  }

  .pp-review-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
  }

  .pp-review-list article,
  .pp-review-list article + article {
    border: 1px solid var(--pp-line);
    border-radius: 4px;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    padding: 0;
  }

  .pp-review-list img {
    border-radius: 0;
    height: 190px;
    width: 100%;
  }

  .pp-review-list article div {
    padding: 22px;
  }

  .pp-review-list article span {
    font-size: 12px;
    margin: 0 0 12px;
  }

  .pp-review-list h3 {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .pp-review-list p {
    font-size: 15px;
    line-height: 1.42;
    margin-bottom: 22px;
  }
}

/* Pixel-pass legal/contact template from references/mockups/legal-mobile-original.png */
.pp-legal {
  --pp-green: #0c4434;
  --pp-green-deep: #062f22;
  --pp-copper: #bd7848;
  --pp-ink: #1f2522;
  --pp-paper: #fffdf8;
  --pp-line: #d4d0ca;
  background: var(--pp-paper);
  color: var(--pp-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

.pp-legal svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-legal-header {
  background: radial-gradient(circle at 38% 0%, #164f3d, var(--pp-green-deep) 62%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.pp-legal-header__inner {
  height: 56px;
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
}

.pp-legal-logo {
  display: block;
  left: 14px;
  position: absolute;
  top: 12px;
  width: 165px;
}

.pp-legal-logo img {
  width: 165px;
}

.pp-legal-menu {
  color: #fffdf8;
}

.pp-legal-menu {
  height: 34px;
  right: 15px;
  top: 13px;
  width: 34px;
}

.pp-legal-main {
  margin-inline: auto;
  max-width: 1180px;
  padding: 22px 19px 0;
}

.pp-legal-title h1 {
  color: var(--pp-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  margin: 0 0 3px;
}

.pp-legal-title p {
  color: #686766;
  font-size: 13px;
  margin: 0 0 5px;
}

.pp-legal-tabs {
  border: 1px solid #bfc0bd;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 34px;
  overflow: hidden;
}

.pp-legal-tabs a {
  align-items: center;
  border-left: 1px solid #bfc0bd;
  color: #171b19;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
}

.pp-legal-tabs a:first-child {
  border-left: 0;
}

.pp-legal-tabs a.active {
  background: var(--pp-green);
  color: #fffdf8;
}

.pp-legal-tabs svg {
  height: 15px;
  stroke-width: 2.2;
  width: 15px;
}

.pp-toc {
  padding: 18px 6px 4px;
}

.pp-toc h2 {
  color: var(--pp-green-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
  margin: 0 0 7px;
}

.pp-toc a {
  align-items: center;
  border-bottom: 1px solid var(--pp-line);
  color: #2d302f;
  display: grid;
  font-size: 11px;
  grid-template-columns: 26px minmax(0, 1fr) 16px;
  height: 29px;
}

.pp-toc svg {
  color: #202826;
  height: 15px;
  stroke-width: 2;
  width: 15px;
}

.pp-toc span {
  color: #6e6e6c;
  font-size: 28px;
  line-height: 1;
}

.pp-policy-list {
  padding: 9px 0 0;
}

.pp-policy-list article {
  align-items: start;
  border-bottom: 1px solid var(--pp-line);
  display: grid;
  gap: 9px;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  min-height: 47px;
  padding: 8px 0 7px;
}

.pp-policy-list article > svg {
  color: var(--pp-green);
  height: 28px;
  margin-left: 3px;
  stroke-width: 2.2;
  width: 28px;
}

.pp-policy-list h2 {
  color: var(--pp-green-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.pp-policy-list p {
  color: #666;
  font-size: 9.5px;
  line-height: 1.35;
  margin: 0;
  max-width: 320px;
}

.pp-policy-list button {
  background: transparent;
  border: 0;
  color: #1b211f;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.pp-contact-card {
  border: 1px solid var(--pp-line);
  border-radius: 4px;
  margin-top: 17px;
  padding: 11px 13px 9px;
}

.pp-contact-card h2 {
  color: var(--pp-green-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 6px;
}

.pp-contact-card > p {
  color: #454846;
  font-size: 10px;
  margin: 0 0 11px;
}

.pp-contact-card form {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}

.pp-contact-card label {
  display: grid;
  gap: 3px;
}

.pp-contact-card label.wide,
.pp-contact-card button.wide {
  grid-column: 1 / -1;
}

.pp-contact-card label span {
  color: #111;
  font-size: 10px;
  font-weight: 700;
}

.pp-contact-card input,
.pp-contact-card select,
.pp-contact-card textarea {
  background: #fffefa;
  border: 1px solid #c8c8c6;
  border-radius: 4px;
  color: #222;
  font-size: 10px;
  height: 24px;
  min-height: 0;
  padding: 4px 8px;
}

.pp-contact-card textarea {
  height: 32px;
  min-height: 0;
  resize: vertical;
}

.pp-contact-card form button {
  align-items: center;
  background: var(--pp-green);
  border: 0;
  border-radius: 3px;
  color: #fffdf8;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 11px;
  height: 27px;
  justify-content: center;
  margin-top: 0;
}

.pp-contact-card button svg {
  height: 16px;
  stroke-width: 2;
  width: 16px;
}

.pp-publisher {
  color: #2f3532;
  display: grid;
  font-size: 10px;
  font-style: normal;
  gap: 3px;
  grid-template-columns: 58px minmax(0, 1fr);
  margin: 7px 0 0 8px;
}

.pp-publisher-mark {
  background: var(--pp-green);
  border-radius: 50%;
  grid-row: span 3;
  height: 36px;
  position: relative;
  width: 36px;
}

.pp-publisher-mark::after {
  color: var(--pp-copper);
  content: "☕";
  font-size: 21px;
  left: 10px;
  position: absolute;
  top: 7px;
}

.pp-publisher strong {
  color: var(--pp-green-deep);
  font-size: 11px;
}

.pp-legal-footer {
  align-items: center;
  background: var(--pp-green-deep);
  color: #fffdf8;
  display: flex;
  font-size: 10px;
  gap: 12px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1180px;
  min-height: 40px;
  padding: 10px 15px;
}

.pp-legal-footer p {
  margin: 0;
}

.pp-legal-footer nav {
  display: flex;
  gap: 10px;
}

@media (min-width: 760px) {
  .pp-legal-header {
    height: 86px;
  }

  .pp-legal-header__inner {
    height: 86px;
  }

  .pp-legal-logo {
    left: 34px;
    top: 20px;
    width: 250px;
  }

  .pp-legal-logo img {
    width: 250px;
  }

  .pp-legal-menu {
    right: 42px;
    top: 25px;
  }

  .pp-legal-main {
    padding: 70px 38px 38px;
  }

  .pp-legal-title h1 {
    font-size: 58px;
  }

  .pp-legal-title p {
    font-size: 28px;
  }

  .pp-legal-tabs {
    height: 66px;
  }

  .pp-legal-tabs a {
    font-size: 22px;
  }

  .pp-legal-tabs svg {
    height: 28px;
    width: 28px;
  }

  .pp-toc h2,
  .pp-contact-card h2,
  .pp-policy-list h2 {
    font-size: 28px;
  }

  .pp-toc a {
    font-size: 22px;
    height: 58px;
  }

  .pp-policy-list article {
    grid-template-columns: 70px minmax(0, 1fr) 40px;
    min-height: 132px;
    padding: 32px 0 26px;
  }

  .pp-policy-list article > svg {
    height: 52px;
    width: 52px;
  }

  .pp-policy-list p,
  .pp-contact-card > p {
    font-size: 20px;
  }

  .pp-contact-card {
    padding: 28px;
  }

  .pp-contact-card label span {
    font-size: 18px;
  }

  .pp-contact-card input,
  .pp-contact-card select {
    min-height: 52px;
  }

  .pp-contact-card textarea {
    min-height: 106px;
  }

  .pp-contact-card form button {
    font-size: 22px;
    height: 58px;
  }

  .pp-publisher {
    font-size: 18px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .pp-publisher-mark {
    height: 94px;
    width: 94px;
  }

  .pp-publisher strong {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .pp-logo {
    width: 146px;
  }

  .pp-logo img {
    width: 146px;
  }

  .pp-feature-card {
    grid-template-columns: 50% 50%;
  }

  .pp-feature-card__image img {
    width: 100%;
  }

  .pp-feature-card__copy h3 {
    font-size: 18px;
  }

  .pp-feature-card__copy p {
    display: none;
  }

  .pp-review-list {
    gap: 10px;
  }

  .pp-review-list article {
    gap: 13px;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .pp-review-list img {
    width: 118px;
  }
}

@media (max-width: 420px) {
  .pp-content .pp-article-head h1 {
    font-size: clamp(28px, 9vw, 35px);
  }

  .pp-content .pp-jump div {
    gap: 8px;
  }

  .pp-content .pp-jump a {
    font-size: 9.5px;
    gap: 5px;
  }

  .pp-content .pp-product-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .pp-content .pp-product-card > img {
    height: 124px;
    width: 104px;
  }

  .pp-content .pp-product-copy {
    padding-right: 12px;
  }

  .pp-content .pp-product-copy h2 {
    font-size: 18px;
  }

  .pp-content .pp-product-score {
    gap: 5px;
  }

  .pp-content .pp-product-score strong {
    font-size: 22px;
  }

  .pp-content .pp-product-score span {
    font-size: 11px;
  }

  .pp-content .pp-product-score em {
    font-size: 9px;
  }

  .pp-content .pp-pros-cons {
    gap: 8px;
  }

  .pp-content .pp-pros-cons div + div {
    padding-left: 8px;
  }

  .pp-home .pp-feature-card__copy h3 {
    font-size: 17px;
  }
}

/* Pixel-pass content/review template from references/mockups/content-mobile-original.png */
.pp-content {
  --pp-green: #0d4435;
  --pp-green-deep: #063424;
  --pp-copper: #ba7441;
  --pp-ink: #262626;
  --pp-paper: #fffdf8;
  --pp-line: #d7d0c5;
  background: var(--pp-paper);
  color: var(--pp-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

.pp-content svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-dark-header {
  background: radial-gradient(circle at 38% 0%, #164f3d, var(--pp-green-deep) 62%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.pp-dark-header__inner {
  height: 56px;
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
}

.pp-dark-logo {
  display: block;
  left: 15px;
  position: absolute;
  top: 9px;
  width: 155px;
}

.pp-dark-logo img {
  width: 155px;
}

.pp-dark-search,
.pp-dark-menu {
  color: #fffdf8;
}

.pp-dark-search {
  height: 31px;
  right: 69px;
  top: 14px;
  width: 31px;
}

.pp-dark-menu {
  height: 34px;
  right: 15px;
  top: 13px;
  width: 34px;
}

.pp-nav--dark {
  background: var(--pp-green-deep);
  border-color: rgba(255, 255, 255, 0.22);
}

.pp-nav--dark a {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fffdf8;
}

.pp-content-main {
  margin-inline: auto;
  max-width: 1180px;
  padding: 17px 16px 28px;
}

.pp-breadcrumb {
  align-items: center;
  color: #252a28;
  display: flex;
  font-size: 10px;
  gap: 12px;
  line-height: 1;
  margin: 0 0 22px;
}

.pp-breadcrumb a {
  align-items: center;
  color: var(--pp-green);
  display: inline-flex;
  font-weight: 800;
  min-height: 24px;
}

.pp-breadcrumb span {
  position: relative;
}

.pp-breadcrumb span::before {
  color: #9a9994;
  content: "›";
  font-size: 17px;
  left: -9px;
  position: absolute;
  top: -4px;
}

.pp-article-head h1 {
  color: #252525;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.96;
  margin: 0 0 5px;
  white-space: nowrap;
}

.pp-updated {
  background: var(--pp-green);
  border-radius: 4px;
  color: #fffdf8;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  padding: 5px 7px;
}

.pp-article-hero-img {
  border-radius: 4px;
  height: 197px;
  object-fit: cover;
  width: 100%;
}

.pp-meta-row {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 42px;
  justify-items: center;
}

.pp-meta-row span {
  align-items: center;
  border-left: 1px solid var(--pp-line);
  color: #2e302e;
  display: flex;
  font-size: 10px;
  gap: 7px;
  height: 18px;
  justify-content: center;
  width: 100%;
}

.pp-meta-row span:first-child {
  border-left: 0;
}

.pp-meta-row svg {
  color: #252525;
  height: 14px;
  stroke-width: 2.2;
  width: 14px;
}

.pp-verdict {
  align-items: center;
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  height: 88px;
  margin-top: 4px;
  overflow: hidden;
}

.pp-verdict__badge {
  align-items: center;
  background: var(--pp-green);
  border-radius: 50%;
  color: var(--pp-copper);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-left: 16px;
  width: 48px;
}

.pp-verdict__badge svg {
  height: 34px;
  stroke-width: 2;
  width: 34px;
}

.pp-verdict h2 {
  color: var(--pp-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  margin: 0 0 6px;
}

.pp-verdict p {
  color: #333836;
  font-size: 10px;
  line-height: 1.36;
  margin: 0;
}

.pp-score {
  border-left: 1px solid var(--pp-line);
  display: grid;
  height: 64px;
  justify-items: center;
  place-content: center;
}

.pp-score span {
  color: #111;
  font-size: 11px;
}

.pp-score strong {
  color: var(--pp-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 0.9;
}

.pp-score small {
  color: var(--pp-copper);
  font-size: 10px;
  letter-spacing: 1px;
}

.pp-jump {
  margin-top: 20px;
}

.pp-jump h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
  margin: 0 0 12px 7px;
}

.pp-jump div {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
}

.pp-jump a {
  align-items: center;
  border: 1px solid #9fb1aa;
  border-radius: 8px;
  color: var(--pp-green);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  height: 32px;
  justify-content: center;
  white-space: nowrap;
}

.pp-jump svg {
  height: 16px;
  stroke-width: 2;
  width: 16px;
}

.pp-affiliate {
  align-items: center;
  background: #fff9ef;
  border: 1px solid #decfbb;
  border-radius: 5px;
  display: grid;
  gap: 8px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  height: 31px;
  margin-top: 13px;
  padding: 0 15px 0 12px;
}

.pp-affiliate svg {
  color: #777;
  height: 16px;
  stroke-width: 2;
  width: 16px;
}

.pp-affiliate p,
.pp-affiliate a {
  color: #2f3c37;
  font-size: 10px;
  margin: 0;
}

.pp-affiliate a {
  color: var(--pp-green);
  align-items: center;
  display: inline-flex;
  min-height: 24px;
  justify-self: end;
}

.pp-product-list {
  display: grid;
  gap: 10px;
  margin-top: 7px;
}

.pp-product-card {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 157px minmax(0, 1fr);
  min-height: 227px;
  overflow: hidden;
  position: relative;
}

.pp-ribbon {
  align-items: center;
  background: var(--pp-green);
  color: #fffefa;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 25px;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}

.pp-ribbon b {
  align-items: center;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  height: 25px;
  justify-content: center;
  width: 24px;
}

.pp-ribbon span {
  padding: 0 13px;
}

.pp-product-card > img {
  align-self: end;
  height: 139px;
  justify-self: center;
  margin-bottom: 38px;
  object-fit: contain;
  width: 130px;
}

.pp-product-copy {
  padding: 28px 23px 15px 10px;
}

.pp-product-copy h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.06;
  margin: 0 0 8px;
}

.pp-product-score {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pp-product-score strong {
  color: var(--pp-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.pp-product-score span {
  color: var(--pp-copper);
  font-size: 14px;
  letter-spacing: 1px;
}

.pp-product-score em {
  color: #2f302f;
  font-size: 10px;
  font-style: normal;
}

.pp-pros-cons {
  border-top: 1px solid var(--pp-line);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  padding-top: 13px;
}

.pp-pros-cons div + div {
  border-left: 1px solid var(--pp-line);
  padding-left: 12px;
}

.pp-pros-cons h3 {
  color: var(--pp-green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  margin: 0 0 7px;
}

.pp-pros-cons p {
  color: #26302d;
  font-size: 9px;
  line-height: 1.2;
  margin: 0 0 7px;
}

.pp-pros-cons div:first-child p {
  color: #2f684f;
}

.pp-pros-cons div:last-child p {
  color: #8f5a39;
}

.pp-specs,
.pp-product-actions {
  display: none;
}

.pp-product-card--next {
  min-height: 130px;
}

.pp-product-card--next > img {
  height: 118px;
  margin-bottom: 0;
  width: 118px;
}

.pp-product-card--next .pp-product-copy {
  padding-top: 26px;
}

.pp-longform .pp-content-main {
  padding-bottom: 52px;
}

.pp-article-head--long h1 {
  font-size: clamp(2.35rem, 10vw, 4.6rem);
  max-width: 920px;
  white-space: normal;
}

.pp-article-hero-img--product {
  background: #f4efe6;
  object-fit: contain;
  padding: 18px;
}

.pp-article-body {
  color: #2d2f2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.72;
  margin: 28px auto 0;
  max-width: 820px;
}

.pp-article-body h2,
.pp-article-body h3 {
  color: var(--pp-green);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.pp-article-body h2 {
  border-top: 1px solid var(--pp-line);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  margin: 42px 0 14px;
  padding-top: 30px;
}

.pp-article-body h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  margin: 27px 0 9px;
}

.pp-article-body p {
  margin: 0 0 17px;
}

.pp-article-body strong {
  color: #1d241f;
}

.pp-dek {
  color: #263b34;
  font-size: clamp(1.15rem, 2.3vw, 1.34rem);
  line-height: 1.58;
}

.pp-model-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 10px;
}

.pp-model-grid article {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: 148px auto 1fr;
  overflow: hidden;
}

.pp-model-grid img {
  background: #f4efe6;
  height: 148px;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.pp-model-grid h3,
.pp-model-grid p {
  padding-inline: 14px;
}

.pp-model-grid h3 {
  margin-top: 14px;
}

.pp-model-grid p {
  color: #39413d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.48;
  margin-bottom: 16px;
}

.pp-table-wrap {
  border: 1px solid var(--pp-line);
  border-radius: 8px;
  margin: 20px 0 24px;
  overflow-x: auto;
}

.pp-compare-table {
  background: #fffefa;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  min-width: 0;
  table-layout: fixed;
  width: 100%;
}

.pp-compare-table th,
.pp-compare-table td {
  border-bottom: 1px solid var(--pp-line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.pp-compare-table th:first-child,
.pp-compare-table td:first-child {
  width: 38%;
}

.pp-compare-table th {
  background: #0d4435;
  color: #fffdf8;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pp-compare-table tr:last-child td {
  border-bottom: 0;
}

.pp-pro-con-panel {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 24px;
}

.pp-pro-con-panel > div {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 8px;
  padding: 18px;
}

.pp-pro-con-panel h3 {
  margin-top: 0;
}

.pp-pro-con-panel ul {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.1rem;
}

.pp-pro-con-panel li + li {
  margin-top: 0.55rem;
}

@media (min-width: 760px) {
  .pp-dark-header {
    height: 86px;
  }

  .pp-dark-header__inner {
    height: 86px;
    padding-inline: 34px;
  }

  .pp-dark-logo {
    left: 34px;
    top: 18px;
    width: 230px;
  }

  .pp-dark-logo img {
    width: 230px;
  }

  .pp-dark-search {
    right: 104px;
    top: 26px;
  }

  .pp-dark-menu {
    right: 42px;
    top: 25px;
  }

  .pp-content-main {
    padding: 42px 34px 70px;
  }

  .pp-breadcrumb {
    font-size: 15px;
    margin-bottom: 42px;
  }

  .pp-article-head h1 {
    font-size: clamp(48px, 6vw, 76px);
  }

  .pp-updated {
    font-size: 18px;
    padding: 9px 12px;
  }

  .pp-article-hero-img {
    height: min(46vw, 520px);
  }

  .pp-meta-row {
    height: 76px;
  }

  .pp-meta-row span {
    font-size: 18px;
    height: 34px;
  }

  .pp-meta-row svg {
    height: 26px;
    width: 26px;
  }

  .pp-verdict {
    grid-template-columns: 190px minmax(0, 1fr) 180px;
    height: 170px;
  }

  .pp-verdict__badge {
    height: 108px;
    margin-left: 48px;
    width: 108px;
  }

  .pp-verdict__badge svg {
    height: 72px;
    width: 72px;
  }

  .pp-verdict h2 {
    font-size: 38px;
  }

  .pp-verdict p {
    font-size: 20px;
  }

  .pp-score strong {
    font-size: 68px;
  }

  .pp-jump h2 {
    font-size: 34px;
  }

  .pp-jump a {
    font-size: 22px;
    height: 62px;
  }

  .pp-affiliate {
    height: 58px;
  }

  .pp-affiliate p,
  .pp-affiliate a {
    font-size: 18px;
  }

  .pp-product-card {
    grid-template-columns: 42% 58%;
    min-height: 470px;
  }

  .pp-ribbon {
    font-size: 22px;
    height: 54px;
  }

  .pp-ribbon b {
    font-size: 34px;
    height: 54px;
    width: 64px;
  }

  .pp-product-card > img {
    height: 300px;
    margin-bottom: 76px;
    width: 290px;
  }

  .pp-product-copy {
    padding: 70px 70px 40px 20px;
  }

  .pp-product-copy h2 {
    font-size: 42px;
  }

  .pp-product-score strong {
    font-size: 52px;
  }

  .pp-product-score span {
    font-size: 26px;
  }

  .pp-product-score em {
    font-size: 18px;
  }

  .pp-pros-cons h3 {
    font-size: 18px;
  }

  .pp-pros-cons p {
    font-size: 16px;
  }

  .pp-specs,
  .pp-product-actions {
    display: grid;
  }
}

@media (max-width: 620px) {
  .pp-longform .pp-content-main {
    padding-inline: 16px;
  }

  .pp-article-head--long h1 {
    font-size: clamp(2.1rem, 9.8vw, 2.9rem);
  }

  .pp-model-grid,
  .pp-pro-con-panel {
    grid-template-columns: 1fr;
  }

  .pp-model-grid article {
    grid-template-rows: 160px auto 1fr;
  }

  .pp-model-grid img {
    height: 160px;
  }

  .pp-table-wrap {
    margin-left: -4px;
    margin-right: -4px;
  }
}

.pp-best-list .pp-listicle-hero {
  display: grid;
  gap: 18px;
}

.pp-best-list .pp-quick-table {
  background: #f8f4eb;
  border: 1px solid rgba(52, 42, 31, 0.16);
  margin: 28px 0;
  overflow: hidden;
}

.pp-best-list .pp-quick-row {
  align-items: center;
  border-top: 1px solid rgba(52, 42, 31, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1.2fr) minmax(0, 0.9fr) 112px;
  padding: 16px;
}

.pp-best-list .pp-quick-row--with-thumb {
  grid-template-columns: 52px 86px minmax(0, 1.2fr) minmax(0, 0.9fr) 112px;
}

.pp-best-list .pp-quick-row:first-child {
  border-top: 0;
}

.pp-best-list .pp-rank-dot {
  align-items: center;
  background: #153b35;
  color: #fffaf1;
  display: inline-flex;
  font: 800 18px/1 var(--font-sans);
  height: 42px;
  justify-content: center;
  width: 42px;
}

.pp-best-list .pp-quick-thumb {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(52, 42, 31, 0.14);
  display: block;
  height: 78px;
  object-fit: contain;
  padding: 8px;
  width: 78px;
}

.pp-best-list .pp-quick-row strong {
  color: #241c14;
  display: block;
  font: 800 18px/1.2 var(--font-serif);
}

.pp-best-list .pp-quick-row span {
  color: rgba(36, 28, 20, 0.72);
  font-size: 14px;
}

.pp-best-list .pp-quick-row .pp-rank-dot {
  background: #0b3328;
  color: #fffdf8;
  flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.pp-best-list .pp-buy-button,
.pp-best-list .pp-mini-button {
  align-items: center;
  background: #b9472f;
  color: #fffaf1;
  display: inline-flex;
  font: 800 12px/1 var(--font-sans);
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 42px;
  padding: 12px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.pp-best-list .pp-buy-button:hover,
.pp-best-list .pp-mini-button:hover {
  background: #8f321f;
}

.pp-best-list .pp-method-strip {
  border-block: 1px solid rgba(52, 42, 31, 0.16);
  color: rgba(36, 28, 20, 0.76);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0 36px;
  padding: 16px 0;
}

.pp-best-list .pp-method-strip b {
  color: #153b35;
  display: block;
  font-size: 20px;
}

.pp-best-list .pp-ranked-review {
  border-top: 3px solid #153b35;
  margin: 44px 0;
  padding-top: 18px;
}

.pp-best-list .pp-ranked-review__top {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
}

.pp-best-list .pp-ranked-review__media {
  align-items: center;
  background: #f6f0e4;
  display: flex;
  justify-content: center;
  min-height: 240px;
  padding: 20px;
}

.pp-best-list .pp-ranked-review__media img {
  display: block;
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
}

.pp-best-list .pp-pick-label {
  color: #b9472f;
  display: block;
  font: 900 13px/1 var(--font-sans);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pp-best-list .pp-ranked-review h2 {
  margin-top: 0;
}

.pp-best-list .pp-pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.pp-best-list .pp-pick-meta span {
  background: #fffaf1;
  border: 1px solid rgba(52, 42, 31, 0.16);
  color: #3d3329;
  font: 700 13px/1 var(--font-sans);
  padding: 9px 10px;
}

.pp-best-list .pp-pick-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.pp-best-list .pp-pick-grid > div {
  background: #fffaf1;
  border: 1px solid rgba(52, 42, 31, 0.14);
  padding: 16px;
}

.pp-best-list .pp-pick-grid h3 {
  color: #153b35;
  font: 900 14px/1.1 var(--font-sans);
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.pp-best-list .pp-pick-grid ul {
  margin: 0;
  padding-left: 18px;
}

.pp-best-list .pp-pick-grid li + li {
  margin-top: 7px;
}

.pp-editorial-link {
  color: #0d4435;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--pp-copper);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pp-editorial-link:hover,
.pp-editorial-link:focus {
  color: var(--pp-copper);
  text-decoration-color: #0d4435;
}

@media (max-width: 760px) {
  .pp-best-list .pp-quick-row,
  .pp-best-list .pp-ranked-review__top {
    grid-template-columns: 1fr;
  }

  .pp-best-list .pp-method-strip,
  .pp-best-list .pp-pick-grid {
    grid-template-columns: 1fr;
  }

  .pp-best-list .pp-quick-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .pp-best-list .pp-quick-row--with-thumb {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .pp-best-list .pp-quick-thumb {
    grid-column: 1;
    grid-row: 2 / span 2;
    height: 46px;
    padding: 5px;
    width: 46px;
  }

  .pp-best-list .pp-quick-row--with-thumb > div,
  .pp-best-list .pp-quick-row--with-thumb > span:not(.pp-rank-dot) {
    grid-column: 2;
  }

  .pp-best-list .pp-buy-button,
  .pp-best-list .pp-mini-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Production-wide polish */
.pp-content .pp-header,
.pp-legal .pp-header {
  background: #fffefa;
  border-bottom: 1px solid #dedbd6;
  box-shadow: none;
}

.pp-content .pp-logo img,
.pp-legal .pp-logo img {
  display: block;
}

.pp-content .pp-menu,
.pp-legal .pp-menu {
  color: #071512;
}

.pp-content .pp-nav,
.pp-legal .pp-nav {
  background: #fffefa;
  border-color: var(--pp-line);
}

.pp-content .pp-nav a,
.pp-legal .pp-nav a {
  border-color: var(--pp-line);
  color: var(--pp-green);
}

.pp-article-hero-img--product,
.pp-product-card,
.pp-product-card > img,
.pp-model-grid img,
.pp-best-list .pp-ranked-review__media,
.pp-best-list .pp-ranked-review__media img {
  background-color: #fff;
}

.pp-best-list .pp-ranked-review__media {
  border: 1px solid rgba(52, 42, 31, 0.12);
}

.pp-content .pp-footer,
.pp-legal .pp-footer {
  background: var(--pp-green-deep);
  margin-top: 0;
}

.pp-legal-production {
  --pp-green: #0e4235;
  --pp-green-deep: #073427;
  --pp-copper: #b77342;
  --pp-ink: #17201c;
  --pp-paper: #fffdf8;
  --pp-line: #d6d1c9;
}

.pp-legal-production .pp-legal-main {
  display: grid;
  gap: 22px;
  max-width: 980px;
  padding: 26px 16px 46px;
}

.pp-legal-hero {
  border-bottom: 1px solid var(--pp-line);
  padding: 12px 0 24px;
}

.pp-legal-kicker,
.pp-section-label {
  color: var(--pp-copper);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.pp-legal-hero h1 {
  color: var(--pp-green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 11vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 14px;
}

.pp-legal-hero p {
  color: #3a4440;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.pp-legal-hero .pp-legal-date {
  color: #6b6c68;
  font-size: 0.92rem;
  margin-top: 12px;
}

.pp-legal-production .pp-legal-tabs {
  background: #fffefa;
  grid-template-columns: repeat(4, 1fr);
  height: auto;
  min-height: 44px;
}

.pp-legal-production .pp-legal-tabs a {
  color: var(--pp-green);
  font-size: 12px;
  min-height: 44px;
  padding: 8px 6px;
}

.pp-legal-production .pp-legal-tabs a.active,
.pp-legal-production .pp-legal-tabs a[aria-current="page"] {
  background: var(--pp-green);
  color: #fffdf8;
  font-weight: 900;
}

.pp-legal-production .pp-legal-tabs svg {
  height: 18px;
  width: 18px;
}

.pp-legal-panel,
.pp-contact-card--production {
  background: #fffefa;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  padding: 22px 18px;
}

.pp-legal-panel h2,
.pp-contact-card--production h2 {
  color: var(--pp-green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  margin: 0 0 16px;
}

.pp-legal-panel h3 {
  color: var(--pp-green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 24px 0 8px;
}

.pp-legal-panel p,
.pp-legal-panel li,
.pp-contact-card--production > p {
  color: #333b37;
  font-size: 1rem;
  line-height: 1.62;
}

.pp-legal-panel p {
  margin: 0 0 13px;
}

.pp-legal-panel ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.pp-contact-card--production {
  margin-top: 0;
}

.pp-contact-card--production form {
  gap: 12px;
  margin-top: 18px;
}

.pp-contact-card--production label span {
  font-size: 0.9rem;
}

.pp-contact-card--production input,
.pp-contact-card--production select,
.pp-contact-card--production textarea {
  font-size: 1rem;
  min-height: 44px;
}

.pp-contact-card--production textarea {
  min-height: 140px;
}

.pp-contact-card--production form button {
  font-size: 1rem;
  min-height: 46px;
}

@media (max-width: 520px) {
  .pp-legal-production .pp-legal-tabs {
    grid-template-columns: 1fr;
  }

  .pp-legal-production .pp-legal-tabs a {
    border-left: 0;
    border-top: 1px solid #bfc0bd;
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .pp-legal-production .pp-legal-tabs a:first-child {
    border-top: 0;
  }

  .pp-contact-card--production form {
    grid-template-columns: 1fr;
  }

  .pp-contact-card--production label.wide,
  .pp-contact-card--production button.wide {
    grid-column: auto;
  }
}

@media (min-width: 760px) {
  .pp-legal-production .pp-legal-main {
    gap: 30px;
    padding: 54px 34px 76px;
  }

  .pp-legal-panel,
  .pp-contact-card--production {
    padding: 34px 40px;
  }

  .pp-legal-production .pp-legal-tabs a {
    font-size: 18px;
    min-height: 60px;
  }

  .pp-legal-production .pp-legal-tabs svg {
    height: 24px;
    width: 24px;
  }
}
