:root {
  color-scheme: only light;
  --ink: #10283d;
  --text: #294357;
  --muted: #63788a;
  --line: #dce8f2;
  --line-strong: #bdd5e8;
  --blue: #1674d1;
  --blue-dark: #0f55ad;
  --cyan: #33cbd1;
  --purple: #6b57d9;
  --green: #16855b;
  --green-bg: #eefaf5;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(16, 40, 61, 0.13);
  --content: 1120px;
  --font-display: Inter, Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: #ffffff !important;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff !important;
  color: var(--text) !important;
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 52px;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

p {
  margin: 0 0 18px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
}

.skip-link:focus {
  transform: none;
}

.listicle-site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.listicle-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--content));
  min-height: 76px;
  margin: 0 auto;
}

.listicle-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  text-decoration: none;
}

.listicle-brand img {
  width: 52px;
  height: 52px;
}

.listicle-brand span {
  display: grid;
  gap: 1px;
}

.listicle-brand strong {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.listicle-brand small {
  color: #557293;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.listicle-site-header nav,
.listicle-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.listicle-site-header nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.listicle-header-cta,
.listicle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  box-shadow: 0 10px 22px rgba(22, 116, 209, 0.22);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.listicle-header-cta {
  min-height: 42px;
  padding: 10px 18px;
}

.listicle-button:hover,
.listicle-header-cta:hover {
  filter: brightness(0.96);
}

.listicle-hero {
  position: relative;
  min-height: clamp(640px, 76vh, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  background: #eaf5fb;
}

.listicle-hero-backdrop,
.listicle-hero-backdrop img,
.listicle-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.listicle-hero-backdrop img {
  object-fit: cover;
  object-position: center;
}

.listicle-hero-wash {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 39%, rgba(244, 251, 255, 0.45) 62%, rgba(229, 244, 251, 0.12) 100%);
}

.listicle-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 34px;
  width: min(100% - 44px, var(--content));
  min-height: clamp(640px, 76vh, 760px);
  margin: 0 auto;
  padding: 54px 0 46px;
}

.listicle-hero-copy {
  max-width: 690px;
}

.listicle-eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.listicle-hero-lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: #38566d;
  font-size: 18px;
  line-height: 1.65;
}

.listicle-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.listicle-byline a {
  font-weight: 700;
}

.listicle-product-lockup {
  align-self: end;
  justify-self: end;
  width: min(100%, 350px);
  margin-bottom: 20px;
}

.listicle-pouch-picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(25, 54, 82, 0.22));
}

.listicle-product-badges {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.listicle-product-badges span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(16, 40, 61, 0.1);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
}

.listicle-product-badges b {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
}

.listicle-document {
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.listicle-opening {
  max-width: 920px;
  margin: 0 auto 52px;
}

.listicle-opening > h2,
.listicle-opening > .listicle-hook {
  text-align: center;
}

.listicle-hook {
  margin: 0 auto 28px;
  color: #38566d;
  font-size: 18px;
  line-height: 1.75;
}

.listicle-verification {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid #9bd7bc;
  border-radius: 8px;
  background: var(--green-bg);
}

.listicle-verification > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-weight: 900;
}

.listicle-verification p {
  margin: 3px 0 0;
  color: #164f3b;
  font-weight: 650;
}

.listicle-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.listicle-intro-grid p,
.listicle-pathways p,
.listicle-featured-products p {
  color: var(--muted);
}

.listicle-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 0 0 46px;
  padding: 28px 30px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.listicle-toc strong {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
}

.listicle-toc a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 6px 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.listicle-toc a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
}

.listicle-product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin: 42px 0;
  padding: 30px 34px;
  border-radius: 8px;
  background: linear-gradient(120deg, #10283d 0%, #125cb5 60%, #5b4bc8 100%);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.listicle-product-cta h2,
.listicle-product-cta .listicle-eyebrow,
.listicle-product-cta p {
  color: #ffffff;
}

.listicle-product-cta h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.listicle-product-cta p {
  max-width: 700px;
  margin: 0;
  color: #dbeaff;
}

.listicle-product-cta .listicle-button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #ffffff;
  box-shadow: none;
  color: var(--blue-dark) !important;
}

.listicle-reasons {
  margin: 64px 0;
  border-top: 1px solid var(--line);
}

.listicle-reason {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 26px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.listicle-reason-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #b8d8f1;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
}

.listicle-reason p {
  max-width: 880px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.listicle-action {
  margin: 20px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
}

.listicle-evidence,
.listicle-checklist,
.listicle-featured-products,
.listicle-faq,
.listicle-safety {
  margin: 72px 0;
}

.listicle-evidence > p:not(.listicle-eyebrow),
.listicle-checklist > p:not(.listicle-eyebrow) {
  max-width: 850px;
}

.listicle-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.listicle-evidence-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 40, 61, 0.07);
}

.listicle-evidence-card h3,
.listicle-evidence-card p {
  margin: 0;
}

.listicle-evidence-card > span {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 4px;
  background: #eef0ff;
  color: #5141b7;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.listicle-evidence-card > a {
  font-size: 13px;
  font-weight: 750;
}

.listicle-featured-products > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.listicle-featured-products article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.listicle-featured-products .listicle-pouch-picture img {
  width: 100%;
  margin-bottom: 12px;
}

.listicle-featured-products h3 {
  font-size: 17px;
}

.listicle-featured-products p {
  font-size: 13px;
  line-height: 1.6;
}

.listicle-featured-products a {
  font-size: 13px;
  font-weight: 800;
}

.listicle-checklist > div,
.listicle-pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.listicle-checklist article,
.listicle-pathways article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-content: start;
  gap: 6px 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.listicle-checklist article > span,
.listicle-pathways article > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.listicle-checklist h3,
.listicle-pathways h3 {
  align-self: center;
  margin: 0;
  font-size: 17px;
}

.listicle-checklist p,
.listicle-pathways p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.listicle-evidence-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--purple);
  background: #f7f6ff;
}

.listicle-safety {
  padding: 30px 32px;
  border: 1px solid #ead59e;
  border-radius: 8px;
  background: #fffaf0;
}

.listicle-safety h2 {
  font-size: 28px;
}

.listicle-safety p:last-child {
  margin-bottom: 0;
}

.listicle-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.listicle-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.listicle-faq summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.listicle-faq summary::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 500;
}

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

.listicle-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.listicle-disclosure {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.listicle-disclosure strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
}

.listicle-disclosure p {
  margin: 0;
}

.listicle-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 1fr);
  gap: 30px 60px;
  padding: 46px max(22px, calc((100% - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: #f2f7fb;
}

.listicle-footer > div p,
.listicle-footer-disclaimer {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.listicle-footer nav {
  align-content: start;
  justify-content: flex-end;
}

.listicle-footer nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.listicle-footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .listicle-hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  }

  .listicle-featured-products > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listicle-checklist > div,
  .listicle-pathways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .listicle-site-header-inner {
    width: min(100% - 28px, var(--content));
    min-height: 66px;
  }

  .listicle-brand img {
    width: 42px;
    height: 42px;
  }

  .listicle-brand strong {
    font-size: 14px;
  }

  .listicle-brand small {
    font-size: 7px;
  }

  .listicle-site-header nav > a:first-child {
    display: none;
  }

  .listicle-header-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 11px !important;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .listicle-hero,
  .listicle-hero-inner {
    min-height: 0;
  }

  .listicle-hero-backdrop {
    height: 460px;
  }

  .listicle-hero-backdrop img {
    object-position: 68% top;
  }

  .listicle-hero-wash {
    height: 460px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 62%, #edf7fb 100%);
  }

  .listicle-hero-inner {
    display: flex;
    flex-direction: column;
    width: min(100% - 30px, var(--content));
    padding: 34px 0 30px;
  }

  .listicle-hero-copy {
    max-width: none;
    padding-bottom: 14px;
  }

  .listicle-hero-lead {
    font-size: 16px;
  }

  .listicle-product-lockup {
    align-self: center;
    width: min(100%, 310px);
    margin: 0;
  }

  .listicle-document {
    width: min(100% - 30px, var(--content));
    padding: 50px 0 68px;
  }

  .listicle-opening {
    margin-bottom: 38px;
  }

  .listicle-intro-grid,
  .listicle-toc,
  .listicle-evidence-grid,
  .listicle-featured-products > div,
  .listicle-checklist > div,
  .listicle-pathways,
  .listicle-footer {
    grid-template-columns: 1fr;
  }

  .listicle-opening > h2,
  .listicle-opening > .listicle-hook {
    text-align: left;
  }

  .listicle-verification {
    padding: 18px;
  }

  .listicle-toc {
    padding: 22px 20px;
  }

  .listicle-product-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .listicle-product-cta .listicle-button {
    width: 100%;
  }

  .listicle-reasons {
    margin: 48px 0;
  }

  .listicle-reason {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 34px 0;
  }

  .listicle-reason-number {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .listicle-reason p {
    font-size: 15px;
  }

  .listicle-evidence,
  .listicle-checklist,
  .listicle-featured-products,
  .listicle-faq,
  .listicle-safety {
    margin: 52px 0;
  }

  .listicle-safety {
    padding: 24px 20px;
  }

  .listicle-footer {
    padding: 38px 20px;
  }

  .listicle-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
