/** Shopify CDN: Minification failed

Line 768:1 Expected "}" to go with "{"

**/
/* ==================================================================
   OZSS blog article styles — for wrap-guide template
   Drop into assets/blog-article.css and load from the wrap-guide
   section with: {{ "blog-article.css" | asset_url | stylesheet_tag }}
   ================================================================== */

:root {
  /* OZSS brand palette */
  --c-ink: #0e0e0e;          /* near-black used across the site */
  --c-body: #2a2a2a;
  --c-muted: #6b6b6b;
  --c-line: #e8e8e8;
  --c-bg: #ffffff;
  --c-bg-soft: #f6f6f6;

  /* Yellow — OZSS signature accent */
  --c-yellow: #FFD400;
  --c-yellow-deep: #E5BF00;  /* hover / active */
  --c-on-yellow: #0e0e0e;    /* text on yellow */

  --c-tip-bg: #ecf7ee;
  --c-tip-line: #4a9a5b;
  --c-warn-bg: #fdecec;
  --c-warn-line: #c53b3b;

  /* Installer-match palette — warm cream + deep charcoal.
     Deliberately non-yellow so it reads as service, not shop,
     but sits happily on a yellow/black page. */
  --c-installer-bg: #f4efe6;
  --c-installer-line: #1e2a30;
  --c-installer-ink: #1e2a30;
  --c-installer-btn: #0e0e0e;

  --f-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: ui-monospace, 'SF Mono', monospace;

  --w-content: 720px;
  --w-wide: 1080px;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

.article-body figure.img-centred {
  display: block !important;
  max-width: 100% !important;
  margin: 28px auto !important;
  width: auto !important;
  float: none !important;
}

.article-body figure.img-centred img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
}
body {
  margin: 0; font-family: var(--f-body);
  font-size: 17px; line-height: 1.65;
  color: var(--c-body); background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-ink); color: #fff; padding: 8px 12px; z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Reading progress bar — yellow, matches brand */
.read-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--c-yellow); z-index: 50; transition: width 60ms linear;
}

.wrap { max-width: var(--w-content); margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: var(--w-wide); margin: 0 auto; padding: 0 20px; }

/* ==================== [#1 HEADER] ==================== */
.breadcrumb { font-size: 13px; color: var(--c-muted); padding: 20px 0 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; color: #ccc; }
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-ink); }

.article-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px); line-height: 1.1;
  color: var(--c-ink); margin: 8px 0 16px; letter-spacing: -0.02em;
  text-wrap: balance;
}

.meta-strip {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  font-size: 14px; color: var(--c-muted);
  padding-bottom: 20px; border-bottom: 2px solid var(--c-ink);
  margin-bottom: 24px;
}
.meta-strip .author { display: flex; align-items: center; gap: 8px; }
.meta-strip .author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.meta-strip .author a { color: var(--c-ink); text-decoration: none; font-weight: 700; }
.meta-strip .author a:hover { text-decoration: underline; }

.hero-image {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--r-md); margin-bottom: 20px; background: var(--c-bg-soft);
}

/* ==================== [BRAND] TRUST BAR — single line, no background ==================== */
.trust-bar {
  background: transparent; color: var(--c-ink);
  padding: 10px 0 20px; margin: 0 0 24px;
  border-bottom: 1px solid var(--c-line);
  display: flex; flex-wrap: nowrap; justify-content: center;
  gap: 14px;
  /* Responsive size so all three items stay on one line down to ~360px */
  font-size: clamp(10px, 2.4vw, 13px);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  white-space: nowrap;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar .bolt { color: var(--c-yellow); font-size: 1.1em; }

/* ==================== [#2 QUICK ANSWER] ==================== */
.quick-answer {
  background: var(--c-yellow); color: var(--c-ink);
  padding: 24px 28px; margin: 0 0 32px;
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
}
.quick-answer::before {
  /* Black accent stripe — inversion of the yellow-stripe treatment used elsewhere */
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--c-ink);
}
.quick-answer .label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; color: var(--c-ink); margin: 0 0 10px;
}
.quick-answer p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--c-ink); }
.quick-answer .qa-nudge {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.2);
  font-size: 15px; color: var(--c-ink);
}
.quick-answer .qa-nudge a {
  color: var(--c-ink); font-weight: 700;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px;
}

/* Opinionated intro under the quick-answer */
.intro-hook {
  font-size: 18px; line-height: 1.6; margin: 0 0 32px; color: var(--c-body);
}

/* ==================== [#3 TOC] ==================== */
.toc {
  background: var(--c-bg-soft); border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 40px;
}
.toc h2 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 12px; color: var(--c-muted); font-weight: 800;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; padding: 6px 0; }
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--c-muted); margin-right: 12px; font-variant-numeric: tabular-nums;
  font-family: var(--f-mono); font-size: 13px;
}
.toc a { color: var(--c-ink); text-decoration: none; font-weight: 500; }
.toc a:hover { text-decoration: underline; text-decoration-color: var(--c-yellow); text-decoration-thickness: 3px; }

/* ==================== [#4 SECTION PATTERN] ==================== */
h2.section-h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.15;
  color: var(--c-ink); margin: 48px 0 16px; letter-spacing: -0.015em;
  scroll-margin-top: 20px; text-wrap: balance;
}
/* Yellow underline accent under H2s — subtle brand touch */
h2.section-h::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--c-yellow); margin-top: 12px;
}
h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 20px; margin: 32px 0 12px; color: var(--c-ink);
}
.direct-answer {
  font-size: 18px; line-height: 1.55; font-weight: 500;
  color: var(--c-ink); padding: 0 0 4px;
}
p { margin: 0 0 20px; }
a { color: var(--c-ink); text-decoration: underline; text-decoration-color: var(--c-yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 3px; }

/* ==================== BUTTONS ==================== */
/*
  Primary btn: yellow bg + black text — matches the homepage
  "Add to cart" and "Kit me out!" style.
*/
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-yellow); color: var(--c-on-yellow);
  padding: 12px 20px; border-radius: var(--r-sm);
  font-weight: 800; font-size: 15px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 2px solid var(--c-ink); cursor: pointer;
  transition: transform 0.1s, background 0.15s;
}
.btn:hover { background: var(--c-yellow-deep); transform: translateY(-1px); text-decoration: none; }
.btn::after { content: '→'; font-weight: 900; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* Dark button variant for the kit CTA area */
.btn-dark {
  background: var(--c-ink); color: #fff; border-color: var(--c-ink);
}
.btn-dark:hover { background: #000; }

/* ==================== [#5 INLINE PRODUCT CARD] ==================== */
.product-card {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 20px; align-items: center;
  background: #fff; border: 2px solid var(--c-ink);
  border-radius: var(--r-md); padding: 20px; margin: 28px 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--c-yellow);
}
.product-card img {
  width: 120px; height: 120px; object-fit: cover;
  border-radius: var(--r-sm); background: var(--c-bg-soft);
}
.product-card .body h3 { margin: 0 0 4px; font-size: 18px; }
.product-card .body .price {
  font-family: var(--f-mono); font-weight: 800;
  color: var(--c-ink); font-size: 18px; margin: 0 0 8px;
}
.product-card .body p { font-size: 15px; color: var(--c-body); margin: 0 0 12px; }
@media (max-width: 520px) {
  .product-card { grid-template-columns: 88px 1fr; gap: 14px; padding: 14px; }
  .product-card img { width: 88px; height: 88px; }
}

/* ==================== [#6 / #7 CALLOUTS] ==================== */
.callout {
  border-radius: var(--r-md); padding: 20px 24px; margin: 28px 0;
  border-left: 6px solid; position: relative;
}
.callout .label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 800; margin: 0 0 6px; display: flex; align-items: center; gap: 8px;
}
.callout p:last-child { margin-bottom: 0; }
.callout.tip { background: var(--c-yellow); border-color: var(--c-ink); color: var(--c-ink); }
.callout.tip .label { color: var(--c-ink); }
.callout.mistake { background: var(--c-warn-bg); border-color: var(--c-warn-line); }
.callout.mistake .label { color: var(--c-warn-line); }

/* ==================== [#8 COMPARISON TABLE — kit tier ladder] ==================== */
.compare-wrap { overflow-x: auto; margin: 28px 0; }
table.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 15px; min-width: 520px;
  border: 2px solid var(--c-ink); border-radius: var(--r-md); overflow: hidden;
}
table.compare th, table.compare td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
}
table.compare thead th {
  background: var(--c-ink); color: #fff;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 13px;
  border-bottom: none;
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover { background: #fffbe6; } /* faint yellow hover */
table.compare td strong { color: var(--c-ink); }

/* ==================== [#9 REAL INSTALL PHOTO] ==================== */
figure.install { margin: 32px 0; padding: 0; }
figure.install img {
  width: 100%; border-radius: var(--r-md); display: block;
  background: var(--c-bg-soft); aspect-ratio: 3 / 2; object-fit: cover;
}
figure.install figcaption {
  font-size: 14px; color: var(--c-muted);
  margin-top: 10px; padding-left: 12px;
  border-left: 3px solid var(--c-yellow);
}

/* ==================== [#10 SHOPPABLE ROW] ==================== */
.shoppable-row {
  margin: 40px 0; padding: 28px 24px;
  background: var(--c-bg-soft); border-radius: var(--r-md);
  border: 1px solid var(--c-line);
}
.shoppable-row h3 {
  margin: 0 0 6px; font-size: 20px; color: var(--c-ink);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.aov-nudge { font-size: 13px; color: var(--c-muted); margin: 0 0 20px; }
.aov-nudge strong { color: var(--c-ink); background: var(--c-yellow); padding: 1px 6px; }
.shoppable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-card {
  background: #fff; border: 2px solid var(--c-ink); border-radius: var(--r-md);
  padding: 14px; text-align: center; text-decoration: none; color: var(--c-body);
  display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.mini-card:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--c-yellow); text-decoration: none; }
.mini-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-sm); background: var(--c-bg-soft); margin-bottom: 10px;
}
.mini-card .name { font-weight: 700; color: var(--c-ink); font-size: 14px; margin: 0 0 4px; }
.mini-card .price { font-family: var(--f-mono); font-weight: 700; font-size: 14px; color: var(--c-ink); margin: 0 0 10px; }
.mini-card .btn { margin-top: auto; font-size: 12px; padding: 8px 12px; }
@media (max-width: 620px) { .shoppable-grid { grid-template-columns: 1fr; } }

/* ==================== INSTALLER-MATCH CTA ==================== */
.installer-cta {
  background: var(--c-installer-bg);
  border: 2px solid var(--c-installer-line);
  border-radius: var(--r-md);
  padding: 24px 28px; margin: 36px 0;
  color: var(--c-installer-ink);
  position: relative;
}
/* Small "SERVICE" ribbon top-right so it visually distances from the yellow shop CTAs */
.installer-cta::before {
  content: 'FREE SERVICE'; position: absolute; top: -10px; right: 20px;
  background: var(--c-installer-line); color: #fff;
  padding: 3px 10px; font-size: 10px; letter-spacing: 0.14em;
  font-weight: 800; border-radius: 2px;
}
.installer-cta .ic-eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; color: var(--c-installer-line); margin: 0 0 8px;
}
.installer-cta h3 {
  margin: 0 0 8px; font-size: 22px; color: var(--c-installer-ink);
}
.installer-cta p { font-size: 15px; margin: 0 0 16px; color: var(--c-installer-ink); }

/* Compact variant */
.installer-cta.compact {
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: center;
}
.installer-cta.compact .body { margin: 0; }
.installer-cta.compact p { margin: 0; }

/* Form fields */
.installer-cta .ic-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px;
}
.installer-cta .ic-form .full { grid-column: 1 / -1; }
.installer-cta .ic-form label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--c-installer-ink); margin-bottom: 4px;
}
.installer-cta .ic-form input,
.installer-cta .ic-form select,
.installer-cta .ic-form textarea {
  width: 100%; padding: 11px 12px; font-size: 15px;
  border: 2px solid #d5cdbf; border-radius: var(--r-sm);
  background: #fff; font-family: inherit; color: var(--c-installer-ink);
}
.installer-cta .ic-form textarea { min-height: 72px; resize: vertical; }
.installer-cta .ic-form input:focus,
.installer-cta .ic-form select:focus,
.installer-cta .ic-form textarea:focus {
  outline: none; border-color: var(--c-installer-line);
}
.installer-cta .ic-form .btn-installer {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-installer-btn); color: #fff;
  padding: 13px 22px; border: 2px solid var(--c-installer-btn); border-radius: var(--r-sm);
  font-weight: 800; font-size: 14px; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.installer-cta .ic-form .btn-installer::after { content: '→'; font-weight: 900; }
.installer-cta .ic-form .btn-installer:hover { background: #000; }
.installer-cta .ic-fine { font-size: 12px; color: var(--c-muted); margin: 10px 0 0; }
.installer-cta .ic-success {
  background: var(--c-tip-bg); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 15px; color: var(--c-tip-line);
  margin-top: 12px;
}
.btn-installer-inline {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-installer-btn); color: #fff;
  padding: 12px 20px; border-radius: var(--r-sm);
  font-weight: 800; font-size: 14px; text-decoration: none; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 2px solid var(--c-installer-btn);
}
.btn-installer-inline::after { content: '→'; font-weight: 900; }
.btn-installer-inline:hover { background: #000; text-decoration: none; }

@media (max-width: 620px) {
  .installer-cta .ic-form { grid-template-columns: 1fr; }
  .installer-cta.compact { grid-template-columns: 1fr; gap: 14px; }
}

/* ==================== SHORT VERSION ==================== */
.short-version {
  background: #fff; border: 2px solid var(--c-ink);
  border-radius: var(--r-md); padding: 24px 28px; margin: 40px 0 32px;
  position: relative;
}
.short-version::before {
  content: 'TL;DR'; position: absolute; top: -12px; left: 24px;
  background: var(--c-yellow); color: var(--c-ink);
  padding: 3px 10px; font-size: 11px; letter-spacing: 0.14em;
  font-weight: 800; border: 2px solid var(--c-ink); border-radius: 2px;
}
.short-version h2 { margin: 4px 0 12px; font-size: 20px; }
.short-version ul { margin: 0; padding-left: 20px; }
.short-version li { margin-bottom: 6px; }

/* ==================== [#11 FAQ] ==================== */
.faq { margin: 48px 0 32px; display: block; }
.faq h2 { margin-bottom: 20px; }
.faq details {
  border-bottom: 1px solid var(--c-line); padding: 16px 0;
}
.faq details[open] summary { color: var(--c-ink); }
.faq summary {
  font-weight: 700; font-size: 17px; color: var(--c-ink);
  cursor: pointer; list-style: none; padding-right: 40px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%); font-size: 24px; font-weight: 400;
  color: var(--c-ink); background: var(--c-yellow);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; line-height: 1;
  transition: transform 0.15s;
}
.faq details[open] summary::after { content: '−'; }
.faq .answer { padding: 12px 0 4px; font-size: 16px; }

/* ==================== [#12 KIT CTA] ==================== */
.kit-cta {
  margin: 48px 0 32px; padding: 32px;
  background: var(--c-ink); color: #fff; border-radius: var(--r-lg);
  display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
}
/* Yellow accent bar across the top — mirrors the trust bar aesthetic */
.kit-cta::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 5px; background: var(--c-yellow);
}
.kit-cta img {
  width: 160px; height: 160px; object-fit: cover;
  border-radius: var(--r-md); background: #333;
}
.kit-cta h2 { font-size: 22px; margin: 0 0 6px; color: #fff; letter-spacing: -0.01em; }
.kit-cta h2::after { display: none; } /* remove global yellow underline here */
.kit-cta .lead { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0 0 12px; }
.kit-cta .trust {
  display: flex; gap: 12px 20px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.kit-cta .trust span::before {
  content: '⚡'; color: var(--c-yellow); margin-right: 6px;
}
@media (max-width: 720px) {
  .kit-cta { grid-template-columns: 1fr; text-align: left; }
  .kit-cta img { width: 100%; height: 200px; }
}
/* Updated grid — image+button col is wider to fit the button */
.kit-cta {
  grid-template-columns: 220px 1fr; /* was: 160px 1fr auto */
}

.kit-cta__image-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.kit-cta__image-col img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--r-md);
  background: transparent;
}

.kit-cta__image-col .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 720px) {
  .kit-cta { grid-template-columns: 1fr; }
  .kit-cta__image-col img { height: 200px; }
}

/* ==================== [#13 AUTHOR BIO] ==================== */
.author-bio {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 20px; padding: 24px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  margin: 32px 0;
}
.author-bio img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-yellow); }
.author-bio .label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 800; margin: 0 0 4px;
}
.author-bio h3 { margin: 0 0 6px; font-size: 18px; }
.author-bio p { margin: 0 0 8px; font-size: 15px; }
.author-bio a { font-size: 14px; }

/* ==================== [#14 RELATED — "MORE WRAP LIFE"] ==================== */
.related { margin: 48px auto 32px; }
.related h2 {
  font-size: 22px; margin: 0 0 20px;
  text-transform: uppercase; letter-spacing: 0.02em; font-weight: 800;
}
.related h2::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--c-yellow); margin-top: 10px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block; text-decoration: none; color: var(--c-ink);
  border: 2px solid var(--c-ink); border-radius: var(--r-md);
  padding: 16px; transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 var(--c-yellow); text-decoration: none; }
.related-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--r-sm); margin-bottom: 10px; background: var(--c-bg-soft);
}
.related-card .eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-muted); margin: 0 0 4px; font-weight: 800;
}
.related-card h3 { font-size: 15px; margin: 0; line-height: 1.35; font-weight: 700; }
@media (max-width: 620px) { .related-grid { grid-template-columns: 1fr; } }

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-ink); color: #fff;
  padding: 12px 16px; z-index: 40;
  display: none; align-items: center; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%); transition: transform 0.2s;
  border-top: 3px solid var(--c-yellow);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .label { font-size: 14px; flex: 1; }
.sticky-cta .label strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.sticky-cta .label small { color: rgba(255,255,255,0.7); font-size: 12px; }
.sticky-cta .btn { padding: 10px 14px; font-size: 12px; border-color: var(--c-yellow); }
.sticky-cta .dismiss {
  background: transparent; border: none; color: rgba(255,255,255,0.7);
  font-size: 20px; line-height: 1; padding: 4px 8px; cursor: pointer;
}
.sticky-cta .dismiss:hover { color: #fff; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* Print */
@media print {
  .breadcrumb, .toc, .sticky-cta, .read-progress,
  .shoppable-row, .kit-cta, .related, .btn, .trust-bar,
  .installer-cta { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .callout { break-inside: avoid; }
  .product-card { border: 1px solid #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
/* ==================== [MOBILE FIXES] ==================== */
@media (max-width: 720px) {

  /* --- Header offset: push content below fixed nav --- */
  .article-title {
    font-size: clamp(24px, 7vw, 34px);
    margin: 6px 0 12px;
    padding-top: calc(var(--header-height) * 0.5);
  }

  /* --- Prevent viewport overflow --- */
  body {
    overflow-x: hidden;
  }

 /* --- Comparison table: compress on mobile --- */
.compare-wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
}
table.compare {
  min-width: 0;
  width: 100%;
  font-size: 11px;
}
table.compare th,
table.compare td {
  padding: 10px 8px;
}

  /* --- Trust bar: allow wrapping on mobile --- */
  .trust-bar {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-start;
    gap: 10px 16px;
    font-size: 11px;
  }

  /* --- FAQ: reduce font size and fix summary overflow --- */
  .faq summary {
    font-size: 15px;
    padding-right: 44px;
    line-height: 1.4;
  }
  .faq .answer {
    font-size: 15px;
  }
  .faq details {
    display: block;
    width: 100%;
  }

  /* --- Meta strip: keep flex row on mobile, just wrap --- */
  .meta-strip {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  /* --- Kit CTA: single column, centred --- */
  .kit-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }
  .kit-cta__image-col {
    align-items: center;
  }
  .kit-cta__image-col img {
    height: 180px;
  }
  .kit-cta .trust {
    justify-content: center;
  }
  .kit-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Related articles: single column on mobile only --- */
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* --- Author bio: stack on mobile --- */
  .author-bio {
    flex-direction: column;
    align-items: flex-start;
  }
/* ==================== [ARTICLE BODY IMAGES] ==================== */
.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ==================== [ARTICLE BODY IMAGE CLASSES] ==================== */

/* --- Reset for all article figures --- */
.article-body figure {
  margin: 28px 0;
}
.article-body figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
}
.article-body figcaption {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* --- Hero: full width, tall crop --- */
.img-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* --- Half right: floats right on desktop, full width on mobile --- */
.img-half-right {
  float: right;
  width: 45%;
  margin: 0 0 20px 28px;
}

/* --- Centred images --- */
.prose figure.img-centred {
  display: block;
  max-width: 420px;
  margin: 28px auto;
}

.prose figure.img-centred img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Mobile: collapse all to full width --- */
@media (max-width: 720px) {
  .img-hero img {
    height: 220px;
  }
  .img-half-right {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/* --- Clearfix after floated images --- */
.img-half-right::after,
.img-half-left::after {
  content: "";
  display: table;
  clear: both;
}