﻿:root {
  --ink: #0d1f1a;
  --ink-soft: #2f4a40;
  --muted: #6c8077;
  --line: #e7ece8;
  --bg: #fafaf7;
  --bg-soft: #f1ede4;
  --cream: #f7f3ea;
  --brand: #0f7a4f;
  /* vitality green */
  --brand-dark: #0a5a3a;
  --accent: #c87a35;
  /* warm copper/amber */
  --accent-2: #d4af6f;
  --gold: #c8a14a;
  --success: #128a4f;
  --sponsored: #f0e5cf;
  --sponsored-ink: #6b4e16;
  --shadow: 0 10px 32px rgba(13, 31, 26, 0.10);
  --radius: 10px;
  --sticky-header-offset: 72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-header-offset);
}

.body-main h2[id],
.body-main h3[id],
.body-main [id].methodology,
.body-main [id].sources,
#daily-vital {
  scroll-margin-top: var(--sticky-header-offset);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.container {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 24px;
  min-width: 0;
}

/* ====== Top utility bar ====== */
.util-bar {
  background: var(--ink);
  color: #d1ddd6;
  font-size: 12.5px;
  padding: 8px 0;
}

.util-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.util-bar a {
  color: #d1ddd6;
}

.util-bar .left {
  display: flex;
  gap: 18px;
  align-items: center;
}

.util-bar .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 12px;
}

.util-bar .badge::before {
  content: "✓";
  color: #6ad19d;
  font-weight: bold;
}

.util-bar .right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.util-bar .pill {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ====== Top utility bar (removed) ====== */
.util-bar {
  display: none !important;
}

/* ====== Header ====== */
header.site,
header.site.wp-av-site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.elementor-widget-av-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.elementor-widget-av-site-header > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

@media (min-width: 1025px) {
  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
  }

  .header-brand {
    justify-self: start;
  }

  nav.primary {
    justify-self: center;
    flex: initial;
    width: auto;
  }

  nav.primary ul {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}

.header-brand {
  flex: 0 0 auto;
  min-width: 0;
}

.header-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  color: var(--ink);
}

.header-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

header.site.is-menu-open .header-toggle-bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

header.site.is-menu-open .header-toggle-bar:nth-child(3) {
  opacity: 0;
}

header.site.is-menu-open .header-toggle-bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

nav.primary {
  flex: 1 1 auto;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1b9e6a, var(--brand) 60%, var(--brand-dark) 110%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  font-size: 20px;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--brand);
}

nav.primary ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: center;
}

nav.primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav.primary a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

.search-field {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-field:hover {
  background: #eae3d2;
}

.search-field:focus-within {
  border-color: var(--brand);
  background: #fff;
}

.search-icon {
  flex-shrink: 0;
  line-height: 1;
  font-size: 14px;
}

.header-search {
  margin: 0;
  position: relative;
}

.search-input {
  font-family: inherit;
  outline: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  flex: 1;
}

.search-input::placeholder {
  color: var(--ink-soft);
}

.search-text-highlight {
  background: #fff3a3;
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

.search-text-highlight-active {
  background: #ffd24d;
  box-shadow: 0 0 0 2px rgba(15, 122, 79, 0.25);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-inline-message {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  z-index: 120;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #a3611f;
  text-decoration: none;
}

/* ====== Hero ====== */
.hero {
  padding: 36px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
}

.hero-feature {
  background:
    radial-gradient(900px circle at 80% 10%, rgba(200, 122, 53, 0.45), transparent 55%),
    radial-gradient(700px circle at 10% 100%, rgba(15, 122, 79, 0.55), transparent 55%),
    linear-gradient(135deg, #0a1c17 0%, #14342a 100%);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: var(--shadow);
}

a.hero-feature {
  text-decoration: none;
  color: inherit;
}

.hero-feature::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(212, 175, 111, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-feature>* {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  width: max-content;
}

.hero-feature h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 620px;
  font-weight: 800;
}

.hero-feature p {
  color: #d8e2ef;
  font-size: 16.5px;
  max-width: 540px;
  margin: 0 0 22px;
}

.hero-meta {
  font-size: 13px;
  color: #a8b6cb;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta strong {
  color: #fff;
}

.hero-meta .mr-pill {
  background: rgba(106, 209, 157, 0.18);
  color: #6ad19d;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-meta .mr-pill::before {
  content: "✓";
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.2s ease;
  background: #fff;
  /* flex: 1 1 0; */
  min-height: 0;
}

a.hero-side-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-side-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.hero-side-card .cat {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hero-side-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
  line-height: 1.3;
}

.hero-side-card .meta {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-side-card .meta .reviewer {
  color: var(--ink-soft);
}

/* ====== As Seen In ====== */
.as-seen {
  background: var(--bg-soft);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.as-seen-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.as-seen .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  flex-shrink: 0;
  width: 170px;
}

.as-seen-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.as-seen-track {
  display: flex;
  width: max-content;
  animation: as-seen-marquee 48s linear infinite;
  will-change: transform;
}

.as-seen-marquee:hover .as-seen-track {
  animation-play-state: paused;
}

.as-seen-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
}

@keyframes as-seen-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .as-seen-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .as-seen-row[aria-hidden="true"] {
    display: none;
  }

  .as-seen-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.ps-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-soft);
  opacity: 0.72;
  letter-spacing: -0.02em;
}

.ps-logo.italic {
  font-style: italic;
}

/* ====== Page hero (legal / info pages) ====== */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  line-height: 1.12;
  margin: 0 auto;
  font-weight: 800;
  max-width: 920px;
  overflow-wrap: break-word;
}

.page-hero-sub {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 720px;
}

.wp-av-page-content {
  padding: 40px 0 64px;
}

/* ====== Section heading ====== */
section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 34px;
  margin: 0;
}

.section-head .sub {
  color: var(--muted);
  margin-top: 6px;
  font-size: 15px;
  max-width: 600px;
}

.section-head a.see-all {
  font-size: 14px;
  font-weight: 600;
}

/* ====== Category grid ====== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-tile,
a.cat-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #fff;
}

a.cat-tile {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cat-tile:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: var(--bg-soft);
  overflow: hidden;
}

.cat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cat-tile h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 600;
}

.cat-tile .count {
  font-size: 12px;
  color: var(--muted);
}

/* ====== Listicle cards ====== */
.listicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lcard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

a.lcard {
  text-decoration: none;
  color: inherit;
}

.lcard:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.lcard-img {
  height: 190px;
  position: relative;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  background: radial-gradient(circle at 30% 30%, #1b9e6a, var(--brand) 60%, var(--brand-dark) 110%);
}

.lcard-img.alt2 {
  background: radial-gradient(circle at 70% 30%, #e0a55e, var(--accent) 60%, #8a4f1c 110%);
}

.lcard-img.alt3 {
  background: radial-gradient(circle at 30% 70%, #4d8c7a, #1f5a4a 60%, #0a1c17 110%);
}

.lcard-img.alt4 {
  background: radial-gradient(circle at 70% 70%, #d4af6f, #b58646 60%, #6b4716 110%);
}

.lcard-img.alt5 {
  background: radial-gradient(circle at 30% 50%, #6ad19d, #128a4f 60%, #0a5a3a 110%);
}

.lcard-img.alt6 {
  background: radial-gradient(circle at 70% 50%, #c87a35, #8a4f1c 60%, #3a1f08 110%);
}

.lcard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lcard-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lcard-body h3 {
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.25;
}

.lcard-body p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 16px;
  flex: 1;
}

.lcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.lcard-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.mr-tag {
  color: var(--brand);
  font-weight: 600;
  font-size: 11.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mr-tag::before {
  content: "⚕";
}

/* ====== Comparison teaser ====== */
.compare-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
}

.compare-wrap h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.compare-wrap p {
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.compare-table {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: #faf7ef;
  font-weight: 600;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table .vendor {
  font-weight: 600;
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.compare-table .price {
  color: var(--ink-soft);
}

.compare-table .cta-mini {
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.compare-table .cta-mini:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

/* ====== Sponsored row ====== */
.sponsored-label {
  display: inline-block;
  background: var(--sponsored);
  color: var(--sponsored-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.sponsored-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spons-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, #fffdf6 0%, #fff 100%);
  display: flex;
  flex-direction: column;
}

.spons-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.spons-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  font-family: 'Fraunces', serif;
}

.spons-logo.a {
  background: linear-gradient(135deg, #0f7a4f, #0a5a3a);
}

.spons-logo.b {
  background: linear-gradient(135deg, #c87a35, #8a4f1c);
}

.spons-logo.c {
  background: linear-gradient(135deg, #2b4d7a, #14253d);
}

.spons-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  margin: 0;
  font-weight: 700;
}

.spons-card .brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.spons-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 12px 0 16px;
  flex: 1;
}

.spons-card .btn {
  align-self: flex-start;
}

/* ====== Expert reviewer widget ====== */
.expert-band {
  background:
    radial-gradient(800px circle at 90% 0%, rgba(200, 122, 53, 0.25), transparent 50%),
    linear-gradient(135deg, #0a1c17 0%, #14342a 100%);
  border-radius: var(--radius);
  padding: 44px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.expert-band h2 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 12px;
}

.expert-band p {
  color: #d1ddd6;
  margin: 0 0 18px;
  font-size: 15px;
}

.reviewers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reviewer-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
}

.reviewer-card .name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.reviewer-card .role {
  color: #b8ccc1;
  font-size: 12.5px;
  margin-top: 2px;
}

.reviewer-card .creds {
  color: #6ad19d;
  font-size: 11.5px;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

/* ====== Display ad slot ====== */
.ad-slot {
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 32px 0;
  min-height: 90px;
  display: grid;
  place-items: center;
}

.ad-slot .label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

/* ====== Editorial grid ====== */
.ed-grid {
  display: block;
}

.ed-main h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

a.ed-item,
.ed-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

a.ed-item:hover {
  text-decoration: none;
}

a.ed-item:hover .ed-text h3 {
  color: var(--brand);
}

.ed-item:last-child {
  border-bottom: 0;
}

.ed-thumb {
  height: 130px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, #1b9e6a, var(--brand) 60%, var(--brand-dark) 110%);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.ed-thumb.b {
  background: radial-gradient(circle at 70% 70%, #d4af6f, #b58646 60%, #6b4716 110%);
}

.ed-thumb.c {
  background: radial-gradient(circle at 30% 70%, #4d8c7a, #1f5a4a 60%, #0a1c17 110%);
}

.ed-thumb.d {
  background: radial-gradient(circle at 70% 30%, #e0a55e, var(--accent) 60%, #8a4f1c 110%);
}

.ed-text .cat {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ed-text h3 {
  font-size: 20px;
  margin: 6px 0 8px;
}

.ed-text p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 8px;
}

.ed-text .meta {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ed-side h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 600;
}

.trending {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  counter-reset: t;
}

.trending li {
  counter-increment: t;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.trending li::before {
  content: counter(t);
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.trending a {
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
}

.trending a:hover {
  color: var(--brand);
}

/* ====== Newsletter ====== */
.newsletter {
  background: linear-gradient(135deg, #fdfaf2 0%, #f2f7f4 100%);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
}

.newsletter h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter p {
  color: var(--ink-soft);
  margin: 0;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.nl-form-fields {
  display: flex;
  gap: 10px;
  width: 100%;
}

.nl-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.nl-form input:focus {
  border-color: var(--brand);
}

.nl-form input.is-invalid,
.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #b42318;
}

.nl-form .wp-av-field-error,
.contact-form .wp-av-field-error {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #b42318;
  line-height: 1.4;
}

.nl-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.nl-stats strong {
  color: var(--ink);
}

/* ====== Footer ====== */
footer.site {
  background: var(--ink);
  color: #d1ddd6;
  padding: 60px 0 24px;
  margin-top: 0;
}

footer.site .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

footer.site h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.site li {
  padding: 6px 0;
}

footer.site a {
  color: #d1ddd6;
  font-size: 14px;
}

footer.site a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #1d2c25;
  margin-top: 40px;
  padding-top: 24px;
  display: flex !important;
  justify-content: flex-start;
  font-size: 12.5px;
  color: #8392a8;
  flex-wrap: wrap;
  gap: 12px;
}

.wp-av-footer-tagline {
  color: #d1ddd6;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}

.wp-av-footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.wp-av-category-archive {
  padding: 40px 0 64px;
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
  .listicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsored-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .hero-feature {
    min-height: 380px;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto;
  }

  .hero-side-card {
    flex: none;
    min-height: auto;
    height: auto;
  }

  .compare-wrap,
  .expert-band,
  .ed-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-feature h1 {
    font-size: 34px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .compare-wrap {
    padding: 28px;
  }

  .expert-band,
  .newsletter {
    padding: 32px 28px;
  }

  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table table {
    min-width: 520px;
  }

  .reviewers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --sticky-header-offset: 72px;
  }

  .header-toggle {
    display: inline-flex;
  }

  .header-row {
    flex-wrap: wrap;
    position: relative;
    padding: 0 12px;
  }

  .header-brand {
    order: 1;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .header-toggle {
    order: 3;
    margin-left: 12px;
  }

  nav.primary {
    order: 4;
    display: none;
    flex: 1 1 100%;
    width: 100%;
    padding: 8px 0 12px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
  }

  header.site.is-menu-open nav.primary {
    display: block;
  }

  nav.primary ul {
    flex-direction: column;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  nav.primary li {
    border-bottom: 1px solid var(--line);
  }

  nav.primary li:last-child {
    border-bottom: 0;
  }

  nav.primary a {
    display: block;
    padding: 12px 0;
    white-space: normal;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none !important;
  }

  .header-toggle {
    order: 2;
    margin-left: auto;
  }

  .hero {
    padding: 24px 0 40px;
  }

  .hero-feature {
    min-height: 360px;
    padding: 28px 24px;
  }

  .hero-feature h1 {
    font-size: 30px;
  }

  .hero-feature p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-meta {
    gap: 10px;
  }

  .hero-side {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-side-card {
    padding: 14px 16px;
  }

  .hero-side-card h3 {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }

  .listicle-grid,
  .sponsored-row {
    grid-template-columns: 1fr;
  }

  .lcard-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .as-seen-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .as-seen .label {
    width: auto;
  }

  .as-seen-marquee {
    width: 100%;
  }

  .as-seen-row {
    gap: 32px;
    padding-right: 32px;
  }

  .ps-logo {
    font-size: 18px;
  }

  .section-head {
    align-items: flex-start;
  }

  .ed-thumb {
    height: 160px;
  }

  .compare-wrap h2,
  .newsletter h2,
  .expert-band h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 10px 16px;
  }

  .header-row {
    gap: 12px;
  }

  .logo img,
  .logo .custom-logo,
  .custom-logo-link img {
    height: 28px !important;
    max-width: 140px !important;
  }

  .logo {
    max-width: 140px;
    min-width: 0;
    flex-shrink: 1;
  }

  .header-cta {
    flex-shrink: 0;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cat-tile {
    padding: 18px 12px;
  }

  .cat-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .cat-tile h4 {
    font-size: 14px;
  }

  .ed-item {
    grid-template-columns: 1fr;
  }

  .ed-thumb {
    height: 140px;
  }

  .nl-form-fields {
    flex-direction: column;
  }

  .nl-stats {
    flex-direction: column;
    gap: 8px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .hero-feature {
    min-height: 300px;
    padding: 24px 20px;
  }

  .hero-feature h1 {
    font-size: 26px;
  }

  .hero-side-card h3 {
    font-size: 17px;
  }

  .lcard-img {
    height: 160px;
    font-size: 48px;
  }

  .lcard-body {
    padding: 18px;
  }

  .lcard-body h3 {
    font-size: 18px;
  }

  .compare-wrap,
  .expert-band,
  .newsletter {
    padding: 24px 20px;
  }

  .compare-wrap h2,
  .newsletter h2,
  .expert-band h2 {
    font-size: 22px;
  }

  .spons-card {
    padding: 18px;
  }

  .ad-slot {
    margin: 24px 0;
    min-height: 72px;
    padding: 14px;
  }

  .search-field {
    padding: 8px 12px;
    min-width: 0;
    width: 100%;
    max-width: 180px;
  }

  .search-input {
    min-width: 0;
    width: 100%;
  }

  .header-cta .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-feature h1 {
    font-size: 24px;
  }
}

/* Article page styles */
.single-article {
  background: var(--bg);
}

.article-hero-band {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 8px 0 36px;
}

.article-body-wrap {
  padding: 20px;
}

.article-foot {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-back {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.article-back a {
  color: var(--brand);
  text-decoration: none;
}

.article-back a:hover {
  text-decoration: underline;
}

.byline-sep {
  color: var(--line);
}

.crumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--brand);
}

.article-head .cat {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.article-head h1 {
  font-size: 44px;
  line-height: 1.12;
  max-width: 100%;
  margin: 0 0 16px;
  font-weight: 800;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-head .standfirst {
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.byline-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  min-width: 0;
  margin-bottom: 15px;
  display: none;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.byline .author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.byline strong {
  color: var(--ink);
}

.review-stamp {
  background: rgba(15, 122, 79, 0.08);
  border: 1px solid rgba(15, 122, 79, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
}

.review-stamp strong {
  color: var(--brand);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.review-stamp .who {
  color: var(--ink);
  font-weight: 600;
}

.review-stamp .when {
  color: var(--muted);
  font-size: 12px;
}

.disclosure {
  background: #fffaee;
  border: 1px solid #f0e2bf;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--sponsored-ink);
  margin: 24px 0;
}

.disclosure strong {
  color: #6b4e16;
}

/* Affiliate disclosure box — blog detail */
.affiliate-disclosure-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(15, 122, 79, 0.08);
  border: 1px solid rgba(15, 122, 79, 0.08);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 32px;
}

.affiliate-disclosure-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dbeafe;
  display: grid;
  place-items: center;
}

.affiliate-disclosure-i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #435c2c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  display: grid;
  place-items: center;
}

.affiliate-disclosure-body {
  min-width: 0;
}

.affiliate-disclosure-title {
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.affiliate-disclosure-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding: 32px 0;
  width: 100%;
  min-width: 0;
}

.body-main {
  font-size: 16.5px;
  color: var(--ink-soft);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* ====== Global prose (posts + page content) ====== */
.wp-av-prose,
.body-main {
  line-height: 1.65;
}

.wp-av-prose > :first-child,
.body-main > :first-child {
  margin-top: 0;
}

.wp-av-prose > :last-child,
.body-main > :last-child {
  margin-bottom: 0;
}

.wp-av-prose p,
.body-main p {
  margin: 0 0 18px;
}

.wp-av-prose h2,
.body-main h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 40px 0 14px;
  color: var(--ink);
}

.wp-av-prose h3,
.body-main h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 28px 0 10px;
  color: var(--ink);
}

.wp-av-prose h4,
.body-main h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 22px 0 8px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.wp-av-prose strong,
.wp-av-prose b,
.body-main strong,
.body-main b {
  color: var(--ink);
  font-weight: 700;
}

.wp-av-prose em,
.wp-av-prose i,
.body-main em,
.body-main i {
  font-style: italic;
}

.wp-av-prose u,
.body-main u {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wp-av-prose a:not(.btn),
.body-main a:not(.btn) {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wp-av-prose a:not(.btn):hover,
.body-main a:not(.btn):hover {
  color: var(--brand-dark);
}

.wp-av-prose ul,
.wp-av-prose ol,
.body-main ul,
.body-main ol {
  margin: 0 0 20px;
  padding-left: 1.35em;
}

.wp-av-prose ul,
.body-main ul {
  list-style: disc;
}

.wp-av-prose ol,
.body-main ol {
  list-style: decimal;
}

.wp-av-prose li,
.body-main li {
  margin: 0 0 8px;
  padding-left: 0.2em;
}

.wp-av-prose li > ul,
.wp-av-prose li > ol,
.body-main li > ul,
.body-main li > ol {
  margin-top: 8px;
  margin-bottom: 0;
}

.wp-av-prose blockquote,
.body-main blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(15, 122, 79, 0.06), rgba(15, 122, 79, 0.02));
  color: var(--ink-soft);
}

.wp-av-prose blockquote p,
.body-main blockquote p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

.wp-av-prose blockquote p:last-child,
.body-main blockquote p:last-child {
  margin-bottom: 0;
}

.wp-av-prose blockquote cite,
.body-main blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.wp-av-prose hr,
.body-main hr {
  border: 0;
  height: 1px;
  margin: 36px 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.wp-av-prose table,
.body-main table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 24px 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: table;
}

.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
  margin: 24px 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  touch-action: pan-x;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 122, 79, 0.35) transparent;
}

.table-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}

.table-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(15, 122, 79, 0.35);
  border-radius: 999px;
}

.table-scroll-wrap table {
  margin: 0;
  min-width: 560px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wp-av-prose thead th,
.body-main thead th {
  background: var(--bg-soft);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.wp-av-prose tbody td,
.body-main tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.wp-av-prose tbody tr:last-child td,
.body-main tbody tr:last-child td {
  border-bottom: 0;
}

.wp-av-prose tbody tr:nth-child(even) td,
.body-main tbody tr:nth-child(even) td {
  background: rgba(241, 237, 228, 0.35);
}

.wp-av-prose .wp-av-figure,
.wp-av-prose figure,
.body-main .wp-av-figure,
.body-main figure {
  margin: 28px 0;
}

.wp-av-prose .wp-av-figure img,
.wp-av-prose figure img,
.body-main .wp-av-figure img,
.body-main figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.wp-av-prose figcaption,
.body-main figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.wp-av-prose .wp-av-btn-row,
.body-main .wp-av-btn-row,
.wp-av-prose p:has(> .btn),
.body-main p:has(> .btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.wp-av-prose .btn,
.body-main .btn {
  text-decoration: none;
}

.wp-av-prose .wp-block-button,
.body-main .wp-block-button {
  margin: 20px 0;
}

.wp-av-prose .wp-block-button__link,
.body-main .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}

.wp-av-prose .wp-block-button__link:hover,
.body-main .wp-block-button__link:hover {
  background: var(--brand-dark);
}

.wp-av-prose code,
.body-main code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  font-size: 0.92em;
}

.wp-av-prose :not(pre) > code,
.wp-av-prose .wp-av-inline-code,
.body-main :not(pre) > code {
  background: var(--cream);
  color: var(--brand-dark);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.wp-av-prose pre,
.wp-av-prose .wp-av-code-block,
.body-main pre,
.body-main .wp-av-code-block {
  margin: 20px 0 24px;
  padding: 18px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #0a1c17;
  color: #d1ddd6;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.wp-av-prose pre code,
.wp-av-prose .wp-av-code-block code,
.body-main pre code,
.body-main .wp-av-code-block code {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.wp-av-prose img.alignleft,
.body-main img.alignleft {
  float: left;
  margin: 6px 20px 16px 0;
  max-width: 48%;
}

.wp-av-prose img.alignright,
.body-main img.alignright {
  float: right;
  margin: 6px 0 16px 20px;
  max-width: 48%;
}

.wp-av-prose img.aligncenter,
.body-main img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-av-prose .alignwide,
.wp-av-prose .alignfull,
.body-main .alignwide,
.body-main .alignfull {
  width: 100%;
  max-width: 100%;
}

.winners-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  margin: 20px 0 32px;
}

.winners-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 600;
}

.winners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.winners-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
}

.winners-list li strong {
  color: var(--brand);
  font-weight: 700;
  min-width: 18px;
}

.winners-list a {
  color: var(--ink);
  font-weight: 500;
}

.toc {
  border-left: 3px solid var(--brand);
  padding: 14px 0 14px 18px;
  margin: 24px 0 32px;
  background: linear-gradient(90deg, rgba(15, 122, 79, 0.04), transparent);
}

.toc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--ink);
}

.toc li {
  padding: 3px 0;
}

.toc a {
  color: var(--ink);
}

.toc a:hover {
  color: var(--brand);
}

.vendor-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.vendor-info {
  min-width: 0;
}

.vendor-card.featured {
  border: 2px solid var(--brand);
  position: relative;
  background: linear-gradient(180deg, #f4faf7 0%, #fff 100%);
}

.vendor-card.featured::before {
  content: "★ EDITOR'S CHOICE";
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.vendor-rank {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--brand);
  font-weight: 800;
}

.vendor-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
}

.vendor-info .tag {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 16px;
}

.rating-num {
  color: var(--ink);
  font-weight: 600;
}

.rating-row .reviews {
  color: var(--muted);
}

.vendor-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.55;
}

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  margin: 14px 0;
}

.spec {
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 8px 12px;
}

.spec strong {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.spec span {
  color: var(--ink);
  font-weight: 600;
}

.vendor-pros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13.5px;
}

.pros span {
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.pros span::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

.vendor-cta {
  background: var(--cream);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}

.vendor-cta .price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.vendor-cta .price-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 14px;
}

.vendor-cta .btn {
  width: 100%;
  margin-bottom: 8px;
}

.vendor-cta .deal {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  margin-top: 6px;
}

.full-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 100%;
  width: 100%;
  display: block;
}

.full-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}

.full-compare th,
.full-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.full-compare th {
  background: #faf7ef;
  font-weight: 600;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.full-compare tr:last-child td {
  border-bottom: 0;
}

.full-compare .vendor-cell {
  font-weight: 700;
  color: var(--ink);
}

.full-compare .yes {
  color: var(--success);
  font-weight: 700;
}

.full-compare .no {
  color: var(--muted);
}

.sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
  background: #fff;
}

.sidebar-card.featured-vendor {
  background:
    radial-gradient(500px circle at 90% 0%, rgba(200, 122, 53, 0.25), transparent 60%),
    linear-gradient(135deg, #0a1c17 0%, #14342a 100%);
  color: #fff;
  border: 0;
}

.sidebar-card.featured-vendor .label {
  color: #6ad19d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-card.featured-vendor h4 {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin: 8px 0;
}

.sidebar-card.featured-vendor p {
  color: #d1ddd6;
  font-size: 13.5px;
  margin: 0 0 14px;
}

.sidebar-card.featured-vendor .btn {
  width: 100%;
}

.sidebar-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.sidebar-card li:last-child {
  border-bottom: 0;
}

.sidebar-card li a {
  color: var(--ink);
}

.sidebar-card li a:hover {
  color: var(--brand);
}

.sidebar-ad {
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  min-height: 250px;
  display: grid;
  place-items: center;
}

.sidebar-ad .label {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.methodology {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
}

.methodology h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.methodology p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.sources {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 32px 0;
}

.sources h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 600;
}

.sources ol {
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

.sources li {
  padding: 6px 0;
}

.sources a {
  color: var(--brand);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 16.5px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
}

.faq-item summary:hover {
  color: var(--brand);
}

.faq-item p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .body-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .sidebar>* {
    margin-bottom: 0;
  }

  .sidebar-ad {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .vendor-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vendor-cta {
    max-width: 100%;
  }

  .article-head h1 {
    font-size: 32px;
  }

  .page-hero {
    padding: 40px 0 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .article-head .standfirst {
    font-size: 18px;
  }

  .winners-list {
    grid-template-columns: 1fr;
  }

  .specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .byline-block {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .body-main h2 {
    font-size: 28px;
  }

  .vendor-pros {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .article-head h1 {
    font-size: 28px;
  }

  .article-head .standfirst {
    font-size: 17px;
    line-height: 1.45;
  }

  .body-grid {
    padding: 24px 0;
    gap: 32px;
  }

  .body-main {
    font-size: 16px;
  }

  .body-main h2 {
    font-size: 24px;
    margin-top: 32px;
  }

  .body-main h3 {
    font-size: 20px;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    padding: 22px 18px;
    margin: 20px 0;
  }

  .vendor-card.featured::before {
    font-size: 10px;
    left: 16px;
    padding: 3px 10px;
  }

  .vendor-info h3 {
    font-size: 22px;
  }

  .vendor-rank {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .winners-box {
    padding: 20px;
  }

  .toc {
    margin: 20px 0 28px;
  }

  .methodology,
  .sources {
    padding: 20px;
  }

  .crumbs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }

  .crumbs::-webkit-scrollbar {
    display: none;
  }

  .table-scroll-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .table-scroll-wrap table,
  .wp-av-prose table,
  .body-main table {
    min-width: 520px;
    font-size: 13.5px;
  }

  .wp-av-prose thead th,
  .body-main thead th,
  .wp-av-prose tbody td,
  .body-main tbody td {
    padding: 10px 12px;
  }
}

@media (max-width: 600px) {
  .article-head h1 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .article-head .standfirst {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .byline {
    font-size: 13px;
    gap: 6px;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .byline .author {
    flex: 1 1 100%;
  }

  .review-stamp {
    width: 100%;
  }

  .disclosure {
    font-size: 13px;
    padding: 12px 14px;
    margin: 18px 0;
  }

  .body-main h2 {
    font-size: 22px;
    overflow-wrap: break-word;
  }

  .specs {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    padding: 20px 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .vendor-card .vendor-rank {
    justify-self: start;
  }

  .vendor-info h3 {
    font-size: 20px;
    overflow-wrap: break-word;
  }

  .vendor-rank {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .vendor-cta {
    width: 100%;
  }

  .vendor-cta .price {
    font-size: 24px;
  }

  .vendor-cta .btn {
    font-size: 13px;
    padding: 10px 14px;
  }

  .rating-row {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-row .reviews {
    font-size: 12px;
  }

  .faq-item summary {
    font-size: 15px;
    padding-right: 8px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .sidebar-card {
    padding: 18px;
  }

  .sidebar-card.featured-vendor h4 {
    font-size: 20px;
  }

  .full-compare table {
    min-width: 580px;
    font-size: 13px;
  }

  .full-compare th,
  .full-compare td {
    padding: 10px 12px;
  }

  .winners-list li {
    font-size: 14px;
  }

  .toc ol {
    font-size: 14px;
    padding-left: 16px;
  }

  .methodology,
  .sources,
  .winners-box {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 430px) {
  .article-head h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .article-head .standfirst {
    font-size: 15px;
  }

  .body-main h2 {
    font-size: 20px;
  }

  .vendor-card {
    padding: 18px 14px;
  }

  .vendor-card.featured {
    padding-top: 30px;
  }

  .vendor-card.featured::before {
    top: -10px;
    left: 14px;
    right: 14px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .vendor-info h3 {
    font-size: 18px;
  }

  .vendor-desc {
    font-size: 14px;
  }

  .pros span {
    font-size: 13px;
  }

  .full-compare table {
    min-width: 520px;
    font-size: 12px;
  }

  .full-compare th,
  .full-compare td {
    padding: 8px 10px;
  }

  .sidebar-ad {
    min-height: 100px;
  }
}

/* WordPress theme — footer 4-column grid + responsive */
footer.site.wp-av-footer-cols-4 .container {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.wp-av-footer-brand,
.wp-av-footer-col {
  min-width: 0;
}

@media (max-width: 1024px) {
  footer.site .container,
  footer.site.wp-av-footer-cols-4 .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .wp-av-footer-brand {
    grid-column: 1 / -1;
  }

  footer.site {
    padding: 52px 0 22px;
  }
}

@media (max-width: 768px) {
  footer.site .container,
  footer.site.wp-av-footer-cols-4 .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  footer.site {
    padding: 48px 0 20px;
  }

  footer.site h5 {
    margin-bottom: 12px;
  }

  footer.site li {
    padding: 5px 0;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  footer.site .container,
  footer.site.wp-av-footer-cols-4 .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wp-av-footer-brand {
    text-align: center;
  }

  .wp-av-footer-brand .wp-av-footer-logo-link {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .wp-av-footer-tagline {
    max-width: none;
    margin: 0 auto;
  }

  .wp-av-footer-col {
    text-align: center;
  }

  .wp-av-footer-col ul {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  footer.site {
    padding: 40px 0 18px;
  }

  footer.site .container,
  footer.site.wp-av-footer-cols-4 .container {
    gap: 24px;
  }

  .wp-av-footer-col ul {
    display: block;
    width: 100%;
    text-align: center;
  }
}

nav.primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
  justify-content: center;
}

nav.primary li {
  margin: 0;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo {
  flex: 0 0 auto;
  max-width: 150px;
}

.logo img,
.logo .custom-logo,
.custom-logo-link img {
  display: block;
  height: 50px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
}

.wp-av-footer-brand .logo img,
.wp-av-footer-logo {
  display: block;
  height: 38px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  margin-bottom: 14px;
}

/* ====== About / Contact info pages ====== */
.info-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 36px;
}

.info-stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 8px;
}

.info-stat span {
  color: var(--muted);
  font-size: 14px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 8px 0 28px;
}

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.info-card-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}

.info-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.info-steps {
  margin: 8px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.info-steps li {
  margin-bottom: 14px;
  line-height: 1.6;
}

.wp-av-contact-section {
  padding: 48px 0 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.contact-side h2,
.contact-form-wrap h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-intro {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: #fff;
}

.contact-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink);
}

.contact-card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-card a {
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.wp-av-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.wp-av-form-status {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.wp-av-form-status[hidden] {
  display: none !important;
}

.wp-av-form-status.is-success {
  color: var(--brand);
}

.wp-av-form-status.is-error {
  color: #b42318;
}

.contact-form .wp-av-field-error {
  margin-top: -4px;
}

@media (max-width: 900px) {
  .info-stats,
  .info-card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 18px;
  }
}

@media (max-width: 600px) {
  .info-stat strong {
    font-size: 28px;
  }

  .contact-side h2,
  .contact-form-wrap h2 {
    font-size: 24px;
  }
}