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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

/* =========================
   DESIGN TOKENS
========================= */
:root {
  --page-bg-top: #deedde;
  --page-bg-bottom: #d7e7d4;
  --page-glow: rgba(102, 190, 120, 0.22);

  --paper: #eef4ea;
  --paper-warm: #f5f4ee;
  --paper-soft: rgba(248, 250, 244, 0.88);
  --paper-card: rgba(252, 252, 247, 0.78);
  --paper-card-strong: rgba(255, 255, 251, 0.86);

  --green-950: #0d2f18;
  --green-900: #123c22;
  --green-850: #134826;
  --green-800: #18552d;
  --green-700: #1f6b39;
  --green-650: #237941;
  --green-600: #2d8a49;
  --green-500: #49a35d;
  --green-300: #b7d7b5;
  --green-250: #c5ddc0;
  --green-200: #cfe4cb;
  --green-150: #d9ead5;
  --green-100: #e5f0e1;

  --gold-300: #efd98d;
  --gold-400: #e3c465;
  --gold-500: #d9b447;

  --orange-500: #ff8f22;
  --orange-600: #f36f00;

  --red-soft: #f6e4df;
  --red-border: rgba(146, 73, 58, 0.12);

  --text: #16311d;
  --text-soft: #34493a;
  --text-muted: #5b6d60;

  --line: rgba(34, 73, 44, 0.14);
  --line-strong: rgba(34, 73, 44, 0.20);

  --shadow-soft: 0 10px 28px rgba(22, 49, 29, 0.08);
  --shadow-card: 0 18px 40px rgba(24, 56, 31, 0.10);
  --shadow-panel: 0 22px 60px rgba(27, 60, 34, 0.08);
  --shadow-image: 0 14px 30px rgba(24, 52, 29, 0.10), 0 2px 8px rgba(24, 52, 29, 0.06);
  --shadow-button: 0 4px 12px rgba(16, 54, 27, 0.18);

  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  --content-width: 1040px;
}

/* =========================
   BODY / PAGE BACKGROUND
========================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at left center, var(--page-glow) 0%, rgba(102, 190, 120, 0) 18%),
    radial-gradient(circle at right center, var(--page-glow) 0%, rgba(102, 190, 120, 0) 18%),
    linear-gradient(180deg, var(--page-bg-top) 0%, var(--page-bg-bottom) 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.018) 0px,
      rgba(0, 0, 0, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: multiply;
}

/* =========================
   MAIN PAGE WRAP
========================= */
.page-wrap {
  width: 100%;
  padding: 28px 16px 64px;
}

.blog-post {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 30px 50px;
  background:
    linear-gradient(180deg, rgba(244, 248, 241, 0.94) 0%, rgba(234, 242, 231, 0.96) 100%);
  border: 1px solid rgba(39, 79, 48, 0.10);
  box-shadow:
    var(--shadow-panel),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.blog-post::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55) 0%, transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.28) 0%, transparent 22%);
}

.blog-post::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: multiply;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4 {
  color: var(--green-900);
  font-weight: 800;
}

p {
  font-size: 16px;
  color: var(--text-soft);
}

.section-center-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-center-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
  color: var(--text-muted);
}

/* =========================
   META / HERO
========================= */
.hero-section {
  margin-bottom: 34px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.meta-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #d6ddd0 0%, #cbd6c6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  display: inline-block;
}

.post-title {
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--green-950);
  margin-bottom: 18px;
  font-weight: 900;
}

.intro-text {
  font-size: 17px;
  line-height: 1.5;
  max-width: 800px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.lead-line-box {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 10px 18px;
  border: 2px solid rgba(25, 58, 32, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(245, 246, 240, 0.96) 0%, rgba(233, 239, 229, 0.94) 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  font-size: 18px;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: start;
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy p + p {
  margin-top: 18px;
}

.hero-image-card img {
  width: 100%;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-image);
}

/* =========================
   SECTION DIVIDERS
========================= */
.text-section,
.summary-section,
.author-section,
.related-posts-section,
.faq-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 30px;
}

.text-section {
  margin-bottom: 6px;
}

.text-section h2,
.summary-section h2,
.author-section h2,
.related-posts-section h2,
.faq-section h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--green-900);
  letter-spacing: -0.4px;
}

.text-section p,
.summary-section p {
  max-width: 920px;
  font-size: 17px;
  line-height: 1.75;
}

/* =========================
   BADGES
========================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(20, 40, 22, 0.10);
}

.badge-gold {
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-400) 100%);
  color: #4d3a07;
}

.badge-green {
  background: linear-gradient(180deg, #d9ecd0 0%, #bfdcaf 100%);
  color: var(--green-900);
}

.badge-dark-green {
  background: linear-gradient(180deg, var(--green-650) 0%, var(--green-800) 100%);
  color: #fff;
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-dark,
.btn-green,
.btn-orange,
.btn-green-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-button);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover,
.btn-dark:hover,
.btn-green:hover,
.btn-orange:hover,
.btn-green-wide:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(16, 54, 27, 0.20);
}

.btn-green,
.btn-dark,
.btn-green-wide {
  color: #fff;
  background:
    linear-gradient(180deg, #0f6b31 0%, #0a5b28 100%);
}

.btn-orange {
  color: #fff;
  background:
    linear-gradient(180deg, var(--orange-500) 0%, var(--orange-600) 100%);
}

.btn-green-wide {
  min-width: 320px;
  max-width: 100%;
}

/* =========================
   QUICK PICKS
========================= */
.quick-start-section {
  position: relative;
  margin: 32px 0 34px;
  padding: 18px 18px 0;
  background: rgba(252, 252, 247, 0.74);
  border: 1px solid rgba(49, 95, 57, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.quick-start-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 34%);
}

.quick-picks-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.quick-pick-card {
  padding: 16px 16px 22px;
  text-align: center;
}

.quick-pick-card h3 {
  font-size: 20px;
  line-height: 1.12;
  margin-bottom: 8px;
  color: var(--green-950);
}

.quick-pick-card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 12px;
  border: 1px solid rgba(34, 73, 44, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-image);
}

.quick-pick-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plus-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #55c864 0%, #30aa45 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(31, 107, 57, 0.18);
}

/* =========================
   PRODUCT REVIEW BLOCKS
========================= */
.product-review-block {
  position: relative;
  margin: 32px 0;
  padding: 28px 22px 24px;
  background:
    linear-gradient(180deg, rgba(235, 244, 232, 0.94) 0%, rgba(229, 239, 226, 0.96) 100%);
  border: 1px solid rgba(53, 103, 58, 0.16);
  border-radius: 18px;
  box-shadow:
    0 18px 42px rgba(22, 49, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.product-review-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7) 0%, transparent 28%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 4px
    );
}

.product-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 24px;
}

.product-copy h2 {
  font-size: 38px;
  line-height: 1.08;
  margin-bottom: 8px;
  color: var(--green-950);
  letter-spacing: -0.8px;
}

.product-subtitle {
  font-size: 20px;
  line-height: 1.35;
  color: var(--text-soft);
  font-weight: 400;
  margin-bottom: 16px;
}

.tick-list {
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--green-900);
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2b9441;
  font-weight: 900;
}

.product-image-area {
  text-align: center;
}

.product-image-area img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 16px;
  background: transparent;
  box-shadow: var(--shadow-image);
  margin: 0 auto 14px;
}

/* =========================
   PROS / CONS
========================= */
.pros-cons-wrap {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top: 1px solid rgba(34, 73, 44, 0.12);
}

.pros-cons-wrap h3 {
  font-size: 30px;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 8px;
  color: var(--green-900);
  letter-spacing: -0.5px;
}

.pros-cons-sub {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-box,
.cons-box {
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(40, 70, 42, 0.10);
  box-shadow: var(--shadow-soft);
}

.pros-box {
  background:
    linear-gradient(180deg, rgba(241, 245, 229, 0.96) 0%, rgba(248, 247, 239, 0.94) 100%);
}

.cons-box {
  background:
    linear-gradient(180deg, rgba(248, 235, 231, 0.92) 0%, rgba(249, 245, 241, 0.95) 100%);
  border-color: var(--red-border);
}

.pros-box h4,
.cons-box h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--green-900);
}

.pros-box ul,
.cons-box ul {
  list-style: none;
}

.pros-box li,
.cons-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
}

.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f9e45;
  font-weight: 900;
}

.cons-box li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: #d05a4c;
  font-weight: 900;
}

.review-button-wrap {
  text-align: center;
  margin-top: 22px;
}

/* =========================
   GENERIC SUB CARD
========================= */
.sub-card {
  background: rgba(255, 255, 251, 0.74);
  border: 1px solid rgba(47, 84, 50, 0.13);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

/* =========================
   AD PLACEHOLDER
========================= */
.ad-placeholder {
  margin: 30px 0;
  min-height: 100px;
  border: 1px solid rgba(44, 71, 44, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(246, 247, 241, 0.96) 0%, rgba(237, 241, 233, 0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  color: var(--green-900);
  box-shadow: var(--shadow-soft);
}

/* =========================
   FUN FACT BOX
========================= */
.fun-fact-box {
  position: relative;
  margin: 26px auto;
  max-width: 100%;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #2d3227;
  background:
    linear-gradient(180deg, rgba(247, 244, 231, 0.96) 0%, rgba(242, 238, 224, 0.94) 100%);
  border: 1px solid rgba(176, 156, 108, 0.28);
  box-shadow:
    0 10px 24px rgba(76, 67, 36, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  overflow: hidden;
}

.fun-fact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.6) 0%, transparent 26%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 4px
    );
}

.fun-fact-box::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%238c6a12' d='M9 21h6' stroke='%238c6a12' stroke-width='1.6' stroke-linecap='round'/><path fill='%238c6a12' d='M10 17h4' stroke='%238c6a12' stroke-width='1.6' stroke-linecap='round'/><path d='M10 14.8V13.4c0-.8-.28-1.32-.87-1.96A6.2 6.2 0 0 1 7.5 7.2 4.5 4.5 0 0 1 12 2.5a4.5 4.5 0 0 1 4.5 4.7 6.2 6.2 0 0 1-1.63 4.24c-.59.64-.87 1.16-.87 1.96v1.4' fill='%23ffd54d' stroke='%238c6a12' stroke-width='1.5' stroke-linejoin='round'/><path d='M9 6.5c.2-1.4 1.3-2.3 2.7-2.5' fill='none' stroke='%23fff7c7' stroke-width='1.2' stroke-linecap='round'/></svg>");
  position: relative;
  top: 6px;
}

.fun-fact-box {
  display: flex;
  align-items: center;
  gap: 0;
}

.fun-fact-box {
  line-height: 1.5;
}

.fun-fact-box strong {
  color: #1d5a2f;
  font-weight: 800;
}

/* If the content is plain text like [FUN FACT 1], keep it visually neat */
.fun-fact-box {
  min-height: 78px;
}

/* =========================
   FAQ
========================= */
.faq-section h2 {
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 7px;
  color: var(--green-950);
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 940px;
}

/* =========================
   SUMMARY
========================= */
.summary-section p {
  max-width: 940px;
}

/* =========================
   AUTHOR
========================= */
.author-section h2,
.related-posts-section h2 {
  text-transform: uppercase;
}

.author-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}

.author-avatar img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d6ddd0 0%, #cbd6c6 100%);
  box-shadow: var(--shadow-soft);
}

.author-copy p {
  font-size: 16px;
  line-height: 1.72;
}

.author-copy p + p {
  margin-top: 10px;
}

/* =========================
   RELATED POSTS
========================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  display: block;
}

.related-card img {
  width: 100%;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-image);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.related-card:hover img {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 52, 29, 0.12), 0 3px 10px rgba(24, 52, 29, 0.08);
}

/* =========================
   SMALL HELPERS
========================= */
.muted-note {
  color: var(--text-muted);
  font-size: 14px;
}

.center {
  text-align: center;
}

.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .blog-post {
    padding: 24px 22px 42px;
  }

  .post-title {
    font-size: 46px;
  }

  .hero-content,
  .product-top,
  .author-card,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .product-top {
    gap: 24px;
  }

  .quick-picks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plus-symbol {
    margin: 2px auto;
  }

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

  .btn-green-wide {
    min-width: 100%;
  }
}

@media (max-width: 700px) {
  .page-wrap {
    padding: 18px 10px 44px;
  }

  .blog-post {
    padding: 20px 14px 34px;
  }

  .post-title {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .intro-text,
  .hero-copy p,
  .text-section p,
  .summary-section p,
  .faq-item p,
  .author-copy p,
  .product-subtitle,
  .tick-list li,
  .pros-box li,
  .cons-box li {
    font-size: 15px;
  }

  .lead-line-box {
    font-size: 15px;
    padding: 8px 12px;
    text-align: center;
  }

  .text-section h2,
  .summary-section h2,
  .author-section h2,
  .related-posts-section h2,
  .faq-section h2 {
    font-size: 24px;
  }

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

  .pros-cons-wrap h3 {
    font-size: 24px;
  }

  .pros-box h4,
  .cons-box h4 {
    font-size: 20px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .ad-placeholder {
    min-height: 78px;
    font-size: 18px;
  }

  .fun-fact-box {
    font-size: 18px;
    padding: 15px 16px;
  }

  .quick-start-section,
  .product-review-block {
    border-radius: 16px;
  }

  .product-review-block {
    padding: 22px 16px 18px;
  }
}


/* =========================================================
   TEMPLATE 2 / COMPARISON TEMPLATE ADDITIONS ONLY
   Add these to the END of the existing CSS file
========================================================= */

.comparison-post .hero-section {
  margin-bottom: 22px;
}

.comparison-post .intro-text {
  max-width: 760px;
  margin-bottom: 18px;
}

.quick-picks-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-pick-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.comparison-quick-picks {
  padding-bottom: 18px;
}

.comparison-lead-block {
  margin: 18px 0 22px;
}

.comparison-lead-block .lead-line-box {
  margin-bottom: 18px;
}

.comparison-lead-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.comparison-lead-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.comparison-lead-copy p + p {
  margin-top: 12px;
}

.comparison-lead-image img {
  width: 100%;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-image);
}

.compact-text-section {
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 18px;
}

.compact-text-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.compact-text-section p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 100%;
}

.fun-fact-spaced {
  margin-top: 34px;
}

/* comparison table */
.comparison-table-section {
  margin: 24px 0 28px;
}

.comparison-table-card {
  position: relative;
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.95) 0%, rgba(249, 244, 232, 0.95) 100%);
  border: 1px solid rgba(195, 110, 63, 0.30);
  border-radius: 14px;
  box-shadow:
    0 16px 34px rgba(70, 57, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.60);
  overflow: hidden;
}

.comparison-table-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55) 0%, transparent 26%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 4px
    );
}

.comparison-table-card h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--green-950);
}

.comparison-table-subtitle {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.comparison-table-wrap {
  position: relative;
  z-index: 1;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  overflow: hidden;
  border-radius: 12px;
}

.comparison-table thead th {
  background:
    linear-gradient(180deg, #14642f 0%, #0f5528 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.comparison-table thead th:last-child {
  border-right: none;
}

.comparison-table tbody td {
  background: rgba(255, 253, 247, 0.88);
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.45;
  padding: 12px 10px;
  vertical-align: middle;
  border-right: 1px solid rgba(35, 73, 43, 0.08);
  border-bottom: 1px solid rgba(35, 73, 43, 0.10);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:last-child {
  border-right: none;
  text-align: center;
}

.comparison-table tbody ul {
  list-style: none;
  padding-left: 0;
}

.comparison-table tbody li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.comparison-table tbody li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 900;
}

.table-btn {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
  white-space: nowrap;
}

/* tighter product cards for this template */
.compact-product-block {
  padding: 18px 14px 16px;
  margin: 20px 0;
}

.compact-product-top {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-bottom: 16px;
}

.compact-product-block .product-copy h2 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.compact-product-block .product-subtitle {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.compact-product-block .tick-list li {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 8px;
  padding-left: 24px;
}

.compact-product-block .product-image-area img {
  max-width: 300px;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 10px;
}

.compact-product-block .product-image-area .btn {
  min-height: 38px;
  font-size: 14px;
  padding: 8px 14px;
}

.compact-pros-cons-wrap {
  padding-top: 14px;
}

.compact-pros-cons-wrap h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.compact-pros-cons-wrap .pros-cons-sub {
  font-size: 15px;
  margin-bottom: 12px;
}

.compact-pros-cons-grid {
  gap: 14px;
}

.compact-pros-cons-grid .pros-box,
.compact-pros-cons-grid .cons-box {
  padding: 14px 16px;
  border-radius: 12px;
}

.compact-pros-cons-grid .pros-box h4,
.compact-pros-cons-grid .cons-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.compact-pros-cons-grid .pros-box li,
.compact-pros-cons-grid .cons-box li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.compact-product-block .review-button-wrap {
  margin-top: 14px;
}

.compact-product-block .btn-green-wide {
  min-height: 40px;
  min-width: 280px;
  font-size: 14px;
  padding: 9px 18px;
}

/* ad tighter spacing */
.comparison-post .ad-placeholder {
  margin: 24px 0;
  min-height: 76px;
  font-size: 18px;
}

/* faq / summary / author / related tighter to close space */
.compact-faq-section,
.compact-summary-section,
.compact-author-section,
.compact-related-section {
  margin-top: 22px;
  padding-top: 20px;
}

.compact-faq-section h2,
.compact-summary-section h2,
.compact-author-section h2,
.compact-related-section h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.compact-faq-section .faq-item {
  margin-bottom: 12px;
}

.compact-faq-section .faq-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.compact-faq-section .faq-item p,
.compact-summary-section p,
.compact-author-section .author-copy p {
  font-size: 14px;
  line-height: 1.6;
}

.compact-author-section .author-card {
  grid-template-columns: 84px 1fr;
  gap: 14px;
}

.compact-author-section .author-avatar img {
  width: 70px;
  height: 70px;
}

.compact-related-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.compact-related-grid .related-card img {
  border-radius: 10px;
}

/* responsive */
@media (max-width: 980px) {
  .comparison-lead-grid,
  .compact-product-top {
    grid-template-columns: 1fr;
  }

  .quick-picks-grid-3 {
    grid-template-columns: 1fr;
  }

  .fun-fact-spaced {
    margin-top: 30px;
  }
}

@media (max-width: 700px) {
  .comparison-table-card {
    padding: 14px 12px 12px;
  }

  .comparison-table-card h2 {
    font-size: 20px;
  }

  .comparison-table-subtitle {
    font-size: 13px;
  }

  .compact-product-block .product-copy h2 {
    font-size: 20px;
  }

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

  .compact-faq-section h2,
  .compact-summary-section h2,
  .compact-author-section h2,
  .compact-related-section h2 {
    font-size: 20px;
  }
}


/* Disclaimer text */
.disclaimer-text,
.affiliate-disclaimer,
.post-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  max-width: 900px;
  margin: 14px auto 0;
}

/* Full-width lead line */
.lead-line-box,
.comparison-lead-block .lead-line-box {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 20px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: none;
  background: transparent;
  padding: 14px 0 12px;
}

/* Pros and cons inline SVG icons */
.pros-box h4,
.cons-box h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pros-box h4::before,
.cons-box h4::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pros-box h4::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%232f9e45' d='M2 21h4V10H2v11zm20-10.88c0-1.17-.95-2.12-2.12-2.12h-6.69l.95-4.57.03-.32c0-.43-.18-.82-.46-1.1L12.59 1 5.99 7.6C5.62 7.97 5.4 8.48 5.4 9v10c0 1.1.9 2 2 2h8.49c.82 0 1.54-.5 1.84-1.22l3.02-7.05c.08-.2.13-.4.13-.61v-2z'/></svg>");
}

.cons-box h4::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23d05a4c' d='M15 3H6c-.83 0-1.54.5-1.84 1.22L1.14 11.27c-.09.2-.14.41-.14.63v2.1C1 15.1 1.9 16 3 16h6.69l-.95 4.57-.03.32c0 .43.18.82.46 1.1L10.41 23l6.6-6.6c.37-.37.59-.88.59-1.4V5c0-1.1-.9-2-2-2zm4 0v11h4V3h-4z'/></svg>");
}

/* Optional: add icon before each list item too */
.pros-box li,
.cons-box li {
  padding-left: 30px;
}

.pros-box li::before,
.cons-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pros-box li::before {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%232f9e45' d='M9 16.2 4.8 12l-1.4 1.4L9 19 20.6 7.4 19.2 6z'/></svg>");
}

.cons-box li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23d05a4c' d='M18.3 5.71 12 12l6.3 6.29-1.41 1.41L10.59 13.41 4.29 19.7 2.88 18.29 9.17 12 2.88 5.71 4.29 4.29l6.3 6.3 6.29-6.3z'/></svg>");
}

/* remove old text-symbol icons if still showing */
.pros-box li::before,
.cons-box li::before {
  font-size: 0;
  line-height: 0;
}

@media (max-width: 700px) {
  .tip-callout-inner {
    align-items: flex-start;
    padding: 16px 16px;
  }

  .tip-callout p {
    font-size: 16px;
  }

  .tip-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .lead-line-box,
  .comparison-lead-block .lead-line-box {
    padding: 12px 0 10px;
  }
}

.meta-author-image {
  overflow: hidden;
  padding: 0;
}

.meta-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.why-great-block {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.why-great-heading {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--green-900);
}

.why-great-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}


/* =========================================
   SINGLE PRODUCT TEMPLATE
========================================= */

.single-quick-start {
  padding-bottom: 18px;
}

.single-quick-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(210, 243, 208, 0.95);
  border: 1px solid rgba(49, 95, 57, 0.16);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.single-quick-image img {
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-image);
}

.single-quick-copy h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--green-950);
}

.single-quick-points {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.single-quick-points li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}

.single-image-text-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  margin: 26px 0;
}

.single-image-text-image {
  text-align: center;
}

.single-image-text-image img {
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-image);
  margin-bottom: 12px;
}

.single-image-text-copy h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--green-950);
}

.single-image-text-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.single-product-post .ad-placeholder {
  min-height: 120px;
  font-size: 20px;
}

@media (max-width: 860px) {
  .single-quick-card,
  .single-image-text-row {
    grid-template-columns: 1fr;
  }

  .single-quick-image img,
  .single-image-text-image img {
    margin-left: auto;
    margin-right: auto;
  }

  .single-quick-copy h3 {
    font-size: 24px;
  }
}


.visible-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #8a9a8e;
}

.visible-breadcrumbs a {
  color: #6f8374;
  text-decoration: none;
  font-weight: 500;
}

.visible-breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #8a9a8e;
}

.breadcrumb-current {
  color: #7f9184;
  font-weight: 500;
}

/* =========================================
   FINAL READABILITY OVERRIDES
   Paragraphs, FAQs, fun facts and rich text
========================================= */

.blog-post .hero-copy p,
.blog-post .comparison-lead-copy p,
.blog-post .text-section p,
.blog-post .compact-text-section p,
.blog-post .summary-section p,
.blog-post .faq-item p,
.blog-post .author-copy p,
.blog-post .single-image-text-copy p {
  font-size: 20px;
  line-height: 1.75;
}

.blog-post .text-section h2,
.blog-post .compact-text-section h2,
.blog-post .summary-section h2,
.blog-post .author-section h2,
.blog-post .related-posts-section h2,
.blog-post .faq-section h2,
.blog-post .single-image-text-copy h2 {
  font-size: 26px;
  line-height: 1.2;
}

.blog-post .faq-item h3 {
  font-size: 22px;
  line-height: 1.25;
  text-transform: none;
}

.blog-post .text-section ul,
.blog-post .compact-text-section ul,
.blog-post .summary-section ul,
.blog-post .faq-item ul,
.blog-post .single-image-text-copy ul {
  margin: 12px 0 0;
  padding-left: 1.35em;
  list-style-position: outside;
}

.blog-post .text-section ol,
.blog-post .compact-text-section ol,
.blog-post .summary-section ol,
.blog-post .faq-item ol,
.blog-post .single-image-text-copy ol {
  margin: 12px 0 0;
  padding-left: 1.35em;
  list-style-position: outside;
}

.blog-post .text-section li,
.blog-post .compact-text-section li,
.blog-post .summary-section li,
.blog-post .faq-item li,
.blog-post .single-image-text-copy li {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 8px;
  padding-left: 0;
}

.blog-post .text-section li::before,
.blog-post .compact-text-section li::before,
.blog-post .summary-section li::before,
.blog-post .faq-item li::before,
.blog-post .single-image-text-copy li::before {
  content: none;
}

.blog-post .fun-fact-box {
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.6;
}

.blog-post .fun-fact-box::after {
  flex: 0 0 32px;
}

@media (max-width: 700px) {
  .blog-post .hero-copy p,
  .blog-post .comparison-lead-copy p,
  .blog-post .text-section p,
  .blog-post .compact-text-section p,
  .blog-post .summary-section p,
  .blog-post .faq-item p,
  .blog-post .author-copy p,
  .blog-post .single-image-text-copy p,
  .blog-post .text-section li,
  .blog-post .compact-text-section li,
  .blog-post .summary-section li,
  .blog-post .faq-item li,
  .blog-post .single-image-text-copy li {
    font-size: 16px;
  }

  .blog-post .text-section h2,
  .blog-post .compact-text-section h2,
  .blog-post .summary-section h2,
  .blog-post .author-section h2,
  .blog-post .related-posts-section h2,
  .blog-post .faq-section h2,
  .blog-post .single-image-text-copy h2 {
    font-size: 22px;
  }

  .blog-post .faq-item h3 {
    font-size: 19px;
  }

  .blog-post .fun-fact-box {
    font-size: 17px;
  }
}


/* =========================================
   QUICK PICK ALIGNMENT WHEN FEWER PRODUCTS
========================================= */

.quick-picks-grid.quick-pick-count-1,
.quick-picks-grid-3.quick-pick-count-1 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.quick-picks-grid.quick-pick-count-2,
.quick-picks-grid-3.quick-pick-count-2 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.quick-picks-grid.quick-pick-count-1 .quick-pick-card,
.quick-picks-grid-3.quick-pick-count-1 .quick-pick-card {
  width: 280px;
  max-width: 100%;
}

.quick-picks-grid.quick-pick-count-2 .quick-pick-card,
.quick-picks-grid-3.quick-pick-count-2 .quick-pick-card {
  width: 260px;
  max-width: 100%;
}

.quick-picks-grid.quick-pick-count-1 .plus-symbol,
.quick-picks-grid-3.quick-pick-count-1 .plus-symbol {
  display: none;
}

.quick-picks-grid.quick-pick-count-2 .plus-symbol,
.quick-picks-grid-3.quick-pick-count-2 .plus-symbol {
  flex: 0 0 42px;
  align-self: center;
}


/* =========================================
   RELATED POST CARD TITLES
========================================= */

.related-grid,
.compact-related-grid {
  align-items: start;
}

.related-card {
  text-align: center;
}

.related-card img {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 13 / 8;
  object-fit: cover;
}

.related-card-title {
  display: block;
  margin-top: 10px;
  color: var(--green-900);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.related-card:hover .related-card-title {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .related-card img {
    max-width: 100%;
  }

  .related-card-title {
    font-size: 15px;
  }
}

/* =========================================
   FUN FACT SPACING FIX
========================================= */

.blog-post .fun-fact-box {
  margin-top: 24px;
  margin-bottom: 24px;
}

.blog-post .product-review-block + .fun-fact-box,
.blog-post .comparison-table-section + .fun-fact-box,
.blog-post .text-section + .fun-fact-box,
.blog-post .compact-text-section + .fun-fact-box {
  margin-top: 24px;
}

.blog-post .fun-fact-box + .product-review-block,
.blog-post .fun-fact-box + .text-section,
.blog-post .fun-fact-box + .compact-text-section {
  margin-top: 24px;
}

.blog-post .fun-fact-box.fun-fact-spaced {
  margin-top: 34px;
}

@media (max-width: 700px) {
  .blog-post .fun-fact-box,
  .blog-post .fun-fact-box.fun-fact-spaced {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* =========================================
   MOBILE COMPARISON TABLE FIX
   Turns table rows into cards on small screens
========================================= */

@media (max-width: 700px) {
  .comparison-table-wrap {
    overflow-x: visible;
  }

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

  .comparison-table thead {
    display: none;
  }

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

  .comparison-table tbody tr {
    display: flex;
    flex-direction: column;
    background: rgba(255, 253, 247, 0.92);
    border: 1px solid rgba(35, 73, 43, 0.14);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(24, 52, 29, 0.07);
  }

  .comparison-table tbody td {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
  }

  /* Product name */
  .comparison-table tbody td:nth-child(1) {
    order: 1;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--green-950);
    margin-bottom: 8px;
  }

  /* Amazon button moved under product name */
  .comparison-table tbody td:nth-child(5) {
    order: 2;
    text-align: left;
    margin-bottom: 12px;
  }

  /* Best For */
  .comparison-table tbody td:nth-child(2) {
    order: 3;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  /* Hide price on mobile */
  .comparison-table tbody td:nth-child(3) {
    display: none;
  }

  /* Key strengths */
  .comparison-table tbody td:nth-child(4) {
    order: 4;
    font-size: 15px;
    line-height: 1.45;
  }

  .comparison-table tbody td:nth-child(2)::before {
    content: "Best for: ";
    font-weight: 800;
    color: var(--green-900);
  }

  .comparison-table tbody td:nth-child(4)::before {
    content: "Key strengths";
    display: block;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 6px;
  }

  .comparison-table tbody td:nth-child(4) ul {
    margin: 0;
    padding-left: 18px;
  }

  .comparison-table tbody td:nth-child(4) li {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 5px;
    padding-left: 0;
  }

  .comparison-table tbody td:nth-child(4) li::before {
    content: none;
  }

  .comparison-table .table-btn {
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
  }
}


/* =========================================
   INTRO IMAGE WRAP ONLY
========================================= */

.comparison-lead-wrap-text {
  display: flow-root;
}

.comparison-lead-float {
  float: right;
  width: min(46%, 420px);
  margin: 0 0 18px 28px;
}

.comparison-lead-float img {
  width: 100%;
  border: 1px solid rgba(34, 73, 44, 0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-image);
}

.comparison-lead-wrap-text p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.comparison-lead-wrap-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .comparison-lead-float {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }

  .comparison-lead-wrap-text p {
    font-size: 16px;
  }
}

/* =========================================
   FAQ CARD STYLE + FUN FACT ICON UPLIFT
========================================= */

.blog-post .faq-section .faq-item {
  background: rgba(255, 255, 251, 0.88);
  border: 1px solid rgba(34, 73, 44, 0.14);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}

.blog-post .faq-section .faq-item h3 {
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: none;
}

.blog-post .faq-section .faq-item p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
}

.blog-post .faq-section .faq-item p:last-child {
  margin-bottom: 0;
}

.blog-post .fun-fact-box {
  padding: 20px 58px 20px 24px;
  position: relative;
}

.blog-post .fun-fact-box::after {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-right: 0;
  margin-left: 16px;
  top: 0;
}

@media (max-width: 700px) {
  .blog-post .faq-section .faq-item {
    padding: 14px 15px;
  }

  .blog-post .faq-section .faq-item h3 {
    font-size: 19px;
  }

  .blog-post .faq-section .faq-item p {
    font-size: 16px;
  }

  .blog-post .fun-fact-box {
    padding: 18px 18px;
  }

  .blog-post .fun-fact-box::after {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

/* =========================================
   QUICK PICK CARD ALIGNMENT
   Keeps headings, images, descriptions
   and buttons aligned across every card
========================================= */

.quick-picks-grid,
.quick-picks-grid-3 {
  align-items: stretch;
}

.quick-pick-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Keeps comparison badges on the same row */
.quick-pick-badge-wrap {
  min-height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Allows room for product names that wrap */
.quick-pick-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 12px;
}

/* Gives every product image the same display area */
.quick-pick-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: contain;
  margin: 0 auto 14px;
}

/* Description expands so every button sits at the bottom */
.quick-pick-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

/* Keeps all buttons aligned at the bottom of their cards */
.quick-pick-card > .btn,
.quick-pick-card > .btn-dark,
.quick-pick-card > .btn-green,
.quick-pick-card > .btn-orange {
  align-self: center;
  margin-top: auto;
}

/* Keeps overview plus symbols vertically centred */
.quick-picks-grid > .plus-symbol {
  align-self: center;
}

/* Do not reserve empty badge space in overview posts */
.quick-start-section:not(.comparison-quick-picks)
  .quick-pick-badge-wrap {
  min-height: 0;
}

@media (max-width: 980px) {
  .quick-pick-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .quick-pick-card h3 {
    min-height: 0;
  }

  .quick-pick-card p {
    flex-grow: 0;
  }
}