/* Blog ↔ product components.
   Scoped under .apw-pc* so it never bleeds into article prose. Design follows the
   house rules: radius <= 6px, no pill shapes, no hover-translate, subtle hover
   shadow only. */

.post-content {
  --pc-accent: #0057fe;
  --pc-accent-dk: #0046cc;
  --pc-cta: #00a81c;
  --pc-cta-dk: #00930f;
  --pc-ink: #16263a;
  --pc-muted: #5b6b7b;
  --pc-line: #e3e8ee;
  --pc-surface: #ffffff;
  --pc-soft: #f6f8fb;
  --pc-radius: 6px;
  --pc-shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 16px rgba(15, 23, 42, .06);
}

/* ---- shared atoms ------------------------------------------------------- */
/* brand eyebrow — short brand + series, uppercase, one line */
.apw-pc-brand { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--pc-muted); font-weight: 700; }
.apw-pc-brand > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apw-pc-brandlogo { width: 14px; height: 14px; border-radius: 3px; object-fit: contain; flex: none; }
.apw-pc-sep { opacity: .55; }

/* image stage — mirrors the PDP gallery: a clean product render shows whole on
   WHITE with padding (contain), a lifestyle photo fills the frame (cover). */
.apw-pc-figure { position: relative; display: block; }
.apw-pc-media { display: block; width: 100%; height: 100%; background: #fff; border-radius: var(--pc-radius); overflow: hidden; }
.apw-pc-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.apw-pc-media.is-contain { background: #fff; }
.apw-pc-media.is-contain img { object-fit: contain; box-sizing: border-box; }
.apw-pc-media-empty { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--pc-soft); color: #c2ccd6; font-size: 1.6rem; min-height: 96px; }

/* certifications overlay — frosted chip tucked into the image's bottom-left */
.apw-pc-certs--overlay { position: absolute; left: 8px; bottom: 8px; margin: 0; gap: 9px; padding: 4px 8px; border-radius: 4px; background: rgba(255,255,255,.89); }
.apw-pc-certs--overlay .apw-pc-cert { height: 19px; }
.apw-pc-certs--overlay .apw-pc-cert--md { height: 16px; }
.apw-pc-certs--overlay .apw-pc-cert--nfrc { height: 22px; }

.apw-pc-features { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; }
.apw-pc-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--pc-ink); line-height: 1.35; }
.apw-pc-features li i { color: var(--pc-cta); margin-top: 2px; font-size: .82rem; }

/* certifications as real badge images (official seals), height-normalized */
.apw-pc-certs { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 12px; }
.apw-pc-cert { display: block; width: auto; height: 26px; }
.apw-pc-cert--md { height: 22px; }    /* Miami-Dade is wide — shorter balances it */
.apw-pc-cert--fl { height: 26px; }
.apw-pc-cert--nfrc { height: 30px; }  /* small round badge — larger to match mass */
.apw-pc-cert--es { height: 22px; }
.apw-pc-cert-text { font-size: .72rem; font-weight: 600; color: var(--pc-muted); background: var(--pc-soft); border: 1px solid var(--pc-line); border-radius: 4px; padding: 3px 7px; }

.apw-pc-price { display: inline-flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.apw-pc-price-amt { font-size: 1.05rem; font-weight: 800; color: var(--pc-ink); }
.apw-pc-price-unit { font-size: .76rem; color: var(--pc-muted); }

.apw-pc-h { font-size: 1.02rem; font-weight: 800; color: var(--pc-ink); margin-bottom: 12px; }
.apw-pc-foot { font-size: .74rem; color: var(--pc-muted); margin-top: 8px; }
.apw-pc-eyebrow { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--pc-accent); margin-bottom: 4px; }
.apw-pc-badge { font-size: .62rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: #fff; background: #0057fed6; border-radius: 4px; padding: 0px 7px; margin-top: -7px; margin-right: -3px; }
.apw-pc-badge--soft { color: var(--pc-accent); background: #eaf1ff; }
/* in-flow "best for" tag (rec card): sits in the body column above the title,
   wraps naturally on the full width instead of stacking in the top-right corner. */
.apw-pc-badge--inline { display: inline-block; margin: 8px 0 0; white-space: normal; }

/* buttons */
.apw-pc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-weight: 700; font-size: .86rem; line-height: 1; border-radius: var(--pc-radius); padding: 11px 16px; text-decoration: none; border: 1px solid transparent; transition: background-color .15s ease, box-shadow .15s ease, color .15s ease; cursor: pointer; }
.apw-pc-btn--primary { background: var(--pc-cta); color: #fff; }
.apw-pc-btn--primary:hover { background: var(--pc-cta-dk); color: #fff; box-shadow: 0 4px 14px rgba(0, 168, 28, .25); }
.apw-pc-btn--secondary { background: var(--pc-accent); color: #fff; }
.apw-pc-btn--secondary:hover { background: var(--pc-accent-dk); color: #fff; }
.apw-pc-btn--text { background: transparent; color: var(--pc-accent); padding: 11px 6px; }
.apw-pc-btn--text:hover { color: var(--pc-accent-dk); text-decoration: underline; }
.apw-pc-btn--sm { padding: 8px 12px; font-size: .8rem; }
.apw-pc-btn--block { width: 100%; }

/* float / placement helpers (the only layout authors can request) */
.apw-align-inline-end { float: right; width: min(22rem, 46%); margin: .35rem 0 1rem 1.4rem; }
.apw-align-inline-start { float: left; width: min(22rem, 46%); margin: .35rem 1.4rem 1rem 0; }
.apw-align-wide { width: 100%; }
@media (max-width: 760px) {
  .apw-align-inline-end, .apw-align-inline-start { float: none; width: auto; margin: 1.25rem 0; }
}

/* ---- Version A: recommendation card (editorial aside, not a boxed ad slot) -- */
/* Left accent rule + faint tint, no full border/shadow → reads as an aside woven
   into the article (our recommendation) rather than a dropped-in ad unit. */
.apw-pc-card { display: flex; gap: 16px; background: #f7f9fc; border: 0; border-left: 3px solid var(--pc-accent); border-radius: 0 var(--pc-radius) var(--pc-radius) 0; padding: 16px; margin: 1.5rem 0; box-shadow: none; }
/* In-card primary CTA is a quiet outline, not a filled green banner (the loud
   filled button stays on the conversion-first snapshot/decks/CTA components). */
.apw-pc-card .apw-pc-btn--primary { background: transparent; color: var(--pc-cta-dk); border-color: var(--pc-cta); }
.apw-pc-card .apw-pc-btn--primary:hover { background: rgba(0, 168, 28, .08); color: var(--pc-cta-dk); box-shadow: none; }
.apw-pc-card > .apw-pc-figure { flex: 0 0 36%; align-self: stretch; min-height: 150px; }
.apw-pc-card-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.apw-pc-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.apw-pc-card-title { font-size: 1.12rem; font-weight: 800; margin: 6px 0 0; line-height: 1.25; }
.apw-pc-card-title a { color: var(--pc-ink); text-decoration: none; }
.apw-pc-card-title a:hover { color: var(--pc-accent); }
.apw-pc-card-reason { font-size: .9rem; color: var(--pc-muted); margin: 6px 0 0; line-height: 1.45; }
/* "Best for X" as an editorial run-in lead, not a chip/band — dissolves the
   fit signal into the recommendation sentence. */
.apw-pc-bestfor { font-weight: 800; color: var(--pc-ink); }
.apw-pc-card-series { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--pc-muted); background: var(--pc-soft); border: 1px solid var(--pc-line); border-radius: 4px; padding: 2px 5px; vertical-align: middle; margin-left: 4px; white-space: nowrap; }
.apw-pc-card-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 14px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--pc-line); }
.apw-pc-foot-left { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 4px 14px; }
/* float/sidebar variants stack vertically */
.apw-pc-card.apw-align-inline-end, .apw-pc-card.apw-align-inline-start, .apw-pc-card--sm { flex-direction: column; gap: 12px; }
.apw-pc-card.apw-align-inline-end > .apw-pc-figure, .apw-pc-card.apw-align-inline-start > .apw-pc-figure, .apw-pc-card--sm > .apw-pc-figure { flex-basis: auto; width: 100%; aspect-ratio: 4 / 3; min-height: 0; }
@media (max-width: 560px) { .apw-pc-card { flex-direction: column; } .apw-pc-card > .apw-pc-figure { width: 100%; aspect-ratio: 4 / 3; } }

/* ---- Version E: sticky snapshot ---------------------------------------- */
/* Version E — floated product spotlight (the article text wraps around it).
   Not sticky; editorial-aside tint like .apw-pc-card, but a left accent rule
   doesn't read on a floated card, so it uses a soft full hairline + tint (no
   shadow). The filled green CTA stays — this is a conversion surface. */
.apw-pc-spotlight { display: flex; flex-direction: column; gap: 12px; background: #f7f9fc; border-radius: var(--pc-radius); padding: 16px; box-shadow: none; }
.apw-pc-spotlight > .apw-pc-figure { width: 100%; aspect-ratio: 4 / 3; }
.apw-pc-spotlight .apw-pc-features { margin-top: 0px; margin-bottom: 4px; }
.apw-pc-spotlight-body { display: flex; flex-direction: column; gap: 10px; }
.apw-pc-spotlight-title { font-size: 1rem; font-weight: 800; margin: 0; line-height: 1.25; }
.apw-pc-spotlight-title a { color: var(--pc-ink); text-decoration: none; }
.apw-pc-spotlight-title a:hover { color: var(--pc-accent); }
.apw-pc-spotlight-phone { display: inline-flex; align-items: center; gap: 7px; justify-content: center; font-weight: 700; color: var(--pc-ink); text-decoration: none; font-size: .86rem; }
.apw-pc-spotlight-phone i { color: var(--pc-cta); }

/* ---- Version C / list / G: card decks --------------------------------- */
.apw-pc-carousel, .apw-pc-list, .apw-pc-bracket { margin: 1.75rem 0; }
.apw-pc-carousel { position: relative; }
/* scrollbar hidden; navigation is via the prev/next arrows injected by JS */
.apw-pc-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.apw-pc-carousel-track::-webkit-scrollbar { display: none; }
.apw-pc-carousel-btn { position: absolute; transform: translateY(-50%); z-index: 6; width: 38px; height: 38px; border-radius: var(--pc-radius); display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--pc-line); color: var(--pc-ink); box-shadow: var(--pc-shadow); cursor: pointer; transition: background-color .15s ease, opacity .15s ease; }
.apw-pc-carousel-btn:hover { background: var(--pc-soft); }
.apw-pc-carousel-btn:disabled { opacity: 0; pointer-events: none; }
.apw-pc-carousel-btn--prev { left: -10px; }
.apw-pc-carousel-btn--next { right: -10px; }
.apw-pc-carousel-btn i { font-size: .9rem; }
.apw-pc-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
/* comparable-brands: exactly 3 across, never wrap to a 2nd row */
.apw-pc-bracket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 600px) { .apw-pc-bracket-grid { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: minmax(200px, 78%); overflow-x: auto; scroll-snap-type: x mandatory; } .apw-pc-bracket-grid > * { scroll-snap-align: start; } }
.apw-pc-ccard, .apw-pc-bcard { display: flex; flex-direction: column; background: var(--pc-surface); border: 1px solid var(--pc-line); border-radius: var(--pc-radius); padding: 12px; scroll-snap-align: start; box-shadow: 0 1px 2px rgba(15,23,42,.05); }
/* min-height:0 stops a tall portrait render from expanding the flex item past
   the 4/3 box (contain letterboxes it instead) — keeps every card's image stage
   the same size. */
.apw-pc-ccard > .apw-pc-figure, .apw-pc-bcard > .apw-pc-figure { width: 100%; aspect-ratio: 4 / 3; min-height: 0; margin-bottom: 10px; }
.apw-pc-bcard { position: relative; }
.apw-pc-bcard.is-anchor { border-color: var(--pc-accent); box-shadow: 0 0 0 1px var(--pc-accent) inset, 0 1px 2px rgba(15,23,42,.05); }
.apw-pc-bcard .apw-pc-badge { position: absolute; top: 8px; left: 8px; }
.apw-pc-ccard-title { font-size: .95rem; font-weight: 700; margin: 6px 0 0; line-height: 1.25; }
.apw-pc-ccard-title a { color: var(--pc-ink); text-decoration: none; }
.apw-pc-ccard-title a:hover { color: var(--pc-accent); }
.apw-pc-ccard-sum { font-size: .82rem; color: var(--pc-muted); margin: 6px 0 0; line-height: 1.4; }
.apw-pc-ccard-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 12px; }

/* comparable-spec strip (bracket cards): a fixed, aligned set of the most
   comparable specs so the three cards juxtapose cleanly. */
.apw-pc-bspecs { margin: 10px 0 0; }
.apw-pc-bspec { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 5px 0; border-top: 1px solid var(--pc-line); font-size: .8rem; }
.apw-pc-bspec:first-child { border-top: 0; }
.apw-pc-bspec dt { color: var(--pc-muted); margin: 0; }
.apw-pc-bspec dd { color: var(--pc-ink); font-weight: 600; margin: 0; text-align: right; font-variant-numeric: tabular-nums; }

/* ---- Version J: compact product strip ---------------------------------- */
/* Products at a glance in one short row (~100px incl. header): 4 mini cards
   visible; when >4 refs (.is-overflow) each card shrinks so the 5th peeks at
   the edge and the shared carousel arrows appear. Low height by design — the
   reading flow can skip over it. */
.apw-pc-strip { margin: 1.5rem 0; }
.post-content .apw-pc-strip a { text-decoration: none; } /* beat theme .post-content a underline */
.apw-pc-strip-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.apw-pc-strip-title { font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--pc-muted); }
.apw-pc-strip-more { font-size: .72rem; font-weight: 700; color: var(--pc-accent); white-space: nowrap; }
.apw-pc-strip-more:hover { color: var(--pc-accent-dk); }
.apw-pc-strip-more i { font-size: .62rem; }
.apw-pc-strip .apw-pc-carousel-track { display: flex; gap: 8px; scroll-snap-type: x proximity; }
.apw-pc-strip-card {
  flex: 0 0 calc((100% - 24px) / 4); min-width: 0; scroll-snap-align: start;
  display: flex; align-items: center; gap: 8px; padding: 6px 8px 6px 6px;
  line-height: 1.2; /* neutralize the theme's inherited ~1.9 — keeps the card short */
  background: var(--pc-surface); border: 1px solid var(--pc-line); border-radius: var(--pc-radius);
  box-shadow: 0 1px 2px rgba(15,23,42,.04); transition: border-color .15s ease, box-shadow .15s ease;
}
.apw-pc-strip.is-overflow .apw-pc-strip-card { flex-basis: calc((100% - 54px) / 4); } /* ~22px peek of the 5th */
.apw-pc-strip-card:hover { border-color: var(--pc-accent); box-shadow: 0 2px 10px rgba(15,23,42,.08); }
.apw-pc-strip-card:hover .apw-pc-strip-name { color: var(--pc-accent); }
/* the render leads the card: a taller tinted stage, text sits beside it */
.apw-pc-strip-thumb { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 5px; overflow: hidden; }
.apw-pc-strip-thumb .apw-pc-media { background: var(--pc-soft); } /* white renders need a tinted stage at this size */
.apw-pc-strip-thumb img { padding: 2px; }
.apw-pc-strip-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.apw-pc-strip-brand { display: inline-flex; align-items: center; gap: 4px; font-size: .52rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--pc-muted); white-space: nowrap; overflow: hidden; }
.apw-pc-strip-brandlogo { flex: 0 0 auto; width: 12px; height: 12px; object-fit: contain; }
.apw-pc-strip-brandname { overflow: hidden; text-overflow: ellipsis; }
.apw-pc-strip-name { font-size: .72rem; font-weight: 700; color: var(--pc-ink); line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.apw-pc-strip-price { font-size: .62rem; font-weight: 600; color: var(--pc-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apw-pc-strip .apw-pc-carousel-btn { width: 28px; height: 28px; }
.apw-pc-strip .apw-pc-carousel-btn i { font-size: .7rem; }
/* mobile: fixed-width cards, natural horizontal scroll (proper pass later) */
@media (max-width: 760px) { .apw-pc-strip-card, .apw-pc-strip.is-overflow .apw-pc-strip-card { flex-basis: 200px; } }

/* ---- Version D / F: tables -------------------------------------------- */
.apw-pc-specs, .apw-pc-matrix { margin: 1.75rem 0; }
/* soft card shell (mockup: data-heavy section) — one rounded container, not a
   plain bordered box; horizontal scroll lives here for mobile. */
/* No enclosing card chrome — the header band + row dividers + rounded top read
   as a card on their own. overflow:hidden just rounds the header corners + holds
   the mobile horizontal scroll. */
.apw-pc-specs-card { overflow-x: auto; border: 1px solid var(--pc-line); border-radius: 8px; }
/* These reset the blog theme's default `.post-content table` styling (outer
   border, bottom-margin, even-row striping, cell borders) — scoped under
   .post-content so they out-specify it — leaving just the header band + single
   row dividers, no enclosing card and no end gap. */
.post-content .apw-pc-spectable { width: 100%; border-collapse: collapse; font-size: .86rem; margin: 0; border: 0; }
.post-content .apw-pc-spectable th, .post-content .apw-pc-spectable td { padding: 13px 16px; text-align: left; border: 0; border-bottom: 1px solid var(--pc-line); vertical-align: middle; color: var(--pc-ink); }
.post-content .apw-pc-spectable thead th { background: var(--pc-soft); font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pc-muted); white-space: nowrap; }
.post-content .apw-pc-spectable tbody tr, .post-content .apw-pc-spectable tbody tr:nth-child(even) { background: transparent; transition: background .12s ease; }
.post-content .apw-pc-spectable tbody tr:hover td, .post-content .apw-pc-spectable tbody tr:hover th { background: rgba(0, 87, 254, .025); }
.post-content .apw-pc-spectable tbody tr:last-child th, .post-content .apw-pc-spectable tbody tr:last-child td { border-bottom: 0; }
/* product cell: thumbnail + name (ink, not a loud link) + brand eyebrow */
.apw-pc-spectable th.apw-pc-spec-prod, .apw-pc-spectable td.apw-pc-spec-prod { min-width: 210px; }
.apw-pc-spec-prodlink { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.apw-pc-spec-thumb { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 6px; overflow: hidden; /* border: 1px solid var(--pc-line); background: #f4f6f9; */ }
/* light grey behind the (white-framed) product render so its edges read at thumb size */
.apw-pc-spec-thumb .apw-pc-media, .apw-pc-spec-thumb .apw-pc-media.is-contain { border-radius: 0; /* background: #f4f6f9; */ }
.apw-pc-spec-thumb img { padding: 3px; }
.apw-pc-spec-prodname { font-weight: 700; color: var(--pc-ink); line-height: 1.22; }
.apw-pc-spec-prodlink:hover .apw-pc-spec-prodname { color: var(--pc-accent); }
.apw-pc-row-brand { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pc-muted); margin-top: 3px; }
/* action chevron column */
.apw-pc-spectable th.apw-pc-spec-act, .apw-pc-spectable td.apw-pc-spec-act { text-align: center; width: 44px; padding-left: 8px; padding-right: 12px; }
.apw-pc-spec-act a { color: var(--pc-accent); display: inline-flex; }
.apw-pc-spectable tbody tr:hover .apw-pc-spec-act a { transform: translateX(2px); }
.apw-pc-spec-act a { transition: transform .12s ease; }
.apw-pc-matrixtable td.apw-pc-fit { text-align: center; }
.apw-pc-fit i { font-size: .8rem; }
.apw-pc-fit--best i, .apw-pc-fit--good i { color: var(--pc-cta); }
.apw-pc-fit--ok i { color: #c2ccd6; }
.apw-pc-fit--no i { color: #d9dfe6; }
.apw-pc-fit-tag { display: block; font-size: .6rem; font-weight: 800; text-transform: uppercase; color: var(--pc-cta); }

/* ---- Version B: pullout ----------------------------------------------- */
.apw-pc-pullout { background: linear-gradient(180deg, #f8fbff, var(--pc-surface)); border: 1px solid var(--pc-line); border-left: 3px solid var(--pc-accent); border-radius: var(--pc-radius); padding: 18px; margin: 1.75rem 0; box-shadow: var(--pc-shadow); }
.apw-pc-pullout-head { font-size: 1.15rem; font-weight: 800; color: var(--pc-ink); margin: 0; line-height: 1.25; }
.apw-pc-pullout-body { font-size: .92rem; color: var(--pc-muted); margin: 8px 0 0; line-height: 1.5; }
.apw-pc-pullout-solution { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--pc-line); }
.apw-pc-pullout-solution > .apw-pc-media { flex: 0 0 34%; align-self: flex-start; aspect-ratio: 4 / 3; }
.apw-pc-pullout-sol-body { flex: 1 1 auto; min-width: 0; }
@media (max-width: 560px) { .apw-pc-pullout-solution { flex-direction: column; } .apw-pc-pullout-solution > .apw-pc-media { width: 100%; } }

/* ---- Version I: decision grid ----------------------------------------- */
/* Editorial "next steps" block — same aside chrome as the rec cards (left
   accent + tint, no framed box), with the paths as hairline-separated columns
   rather than nested bootstrap-style cards. */
.apw-pc-decision { margin: 2.25rem 0; padding: 18px 22px; background: #f7f9fc; border: 0; border-left: 3px solid var(--pc-accent); border-radius: 0 var(--pc-radius) var(--pc-radius) 0; box-shadow: none; }
.apw-pc-decision-eyebrow { display: inline-block; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--pc-accent); font-weight: 700; margin: 0 0 5px; }
.apw-pc-decision-intro h3 { font-size: 1.15rem; font-weight: 800; color: var(--pc-ink); margin: 0; line-height: 1.25; }
.apw-pc-decision-intro p { font-size: .9rem; color: var(--pc-muted); margin: 7px 0 0; max-width: 64ch; line-height: 1.5; }
.apw-pc-decision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2px 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--pc-line); }
.apw-pc-pathway { display: flex; flex-direction: column; gap: 7px; background: none; border: 0; border-radius: var(--pc-radius); padding: 12px; text-decoration: none; transition: background .15s ease; }
.apw-pc-pathway:hover { background: rgba(0, 87, 254, .05); }
.apw-pc-pathway-icon { width: auto; height: auto; display: inline-flex; background: none; border-radius: 0; color: var(--pc-accent); }
.apw-pc-pathway-icon .apw-pc-svg { width: 27px; height: 27px; display: block; }
.apw-pc-pathway-title { font-size: .98rem; font-weight: 800; color: var(--pc-ink); line-height: 1.25; }
.apw-pc-pathway-desc { font-size: .82rem; color: var(--pc-muted); line-height: 1.45; }
.apw-pc-pathway-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.apw-pc-pathway-cta { margin-top: auto; padding-top: 8px; font-size: .82rem; font-weight: 700; color: var(--pc-accent); }
.apw-pc-pathway-cta i { transition: transform .15s ease; }
.apw-pc-pathway:hover .apw-pc-pathway-cta { color: var(--pc-accent-dk); }
.apw-pc-pathway:hover .apw-pc-pathway-cta i { transform: translateX(2px); }

/* ---- generic callout / cta -------------------------------------------- */
.apw-pc-callout { display: flex; gap: 12px; border: 1px solid var(--pc-line); border-radius: var(--pc-radius); padding: 14px 16px; margin: 1.5rem 0; background: var(--pc-soft); }
.apw-pc-callout-icon { color: var(--pc-accent); font-size: 1rem; margin-top: 2px; }
.apw-pc-callout--warning { background: #fff7ed; border-color: #fed7aa; } .apw-pc-callout--warning .apw-pc-callout-icon { color: #c2540a; }
.apw-pc-callout--tip { background: #f0fdf4; border-color: #bbf7d0; } .apw-pc-callout--tip .apw-pc-callout-icon { color: var(--pc-cta-dk); }
.apw-pc-callout-title { font-weight: 800; color: var(--pc-ink); margin-bottom: 2px; }
.apw-pc-callout-body > :first-child { margin-top: 0; } .apw-pc-callout-body > :last-child { margin-bottom: 0; }
.apw-pc-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: var(--pc-ink); color: #fff; border-radius: var(--pc-radius); padding: 18px 20px; margin: 1.75rem 0; }
/* the body is rendered Markdown (a <p>) that otherwise inherits the blog's dark
   .post-content p color on the dark band — force it light, out-specifying that rule. */
.post-content .apw-pc-cta-body, .post-content .apw-pc-cta-body * { color: #fff; }
.apw-pc-cta-body { font-weight: 700; }
.apw-pc-cta-body > :first-child { margin-top: 0; } .apw-pc-cta-body > :last-child { margin-bottom: 0; }

/* ---- Version H: inline tooltip ---------------------------------------- */
.apw-pc-tt { position: relative; }
.apw-pc-tt-link { color: var(--pc-accent); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 2px; }
.apw-pc-tt-link:hover { color: var(--pc-accent-dk); }
.apw-pc-tt-pop {
  /* Positioned by JS (blog-product.js) from the link's bounding rect — the
     trigger is an inline span that can wrap across lines, so CSS absolute
     positioning misresolves. position:fixed → viewport coords match getBoundingClientRect. */
  position: fixed; left: 0; top: 0; z-index: 1000;
  width: min(340px, 92vw); display: none; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--pc-line); border-radius: 8px;
  padding: 14px; box-shadow: 0 14px 34px rgba(15, 23, 42, .18); text-align: left;
  font-size: .86rem; color: var(--pc-ink); line-height: 1.4; cursor: default; white-space: normal;
}
.apw-pc-tt.is-open .apw-pc-tt-pop { display: flex; }
.apw-pc-tt-head { display: flex; gap: 10px; align-items: center; }
.apw-pc-tt-thumb { flex: 0 0 56px; width: 56px; height: 56px; border-radius: var(--pc-radius); overflow: hidden; background: var(--pc-soft); }
.apw-pc-tt-thumb img { width: 100%; height: 100%; object-fit: contain; }
.apw-pc-tt-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.apw-pc-tt-name { font-weight: 800; font-size: .9rem; line-height: 1.2; }
.apw-pc-tt-body { color: var(--pc-muted); }
.apw-pc-tt-hl { display: flex; flex-direction: column; gap: 4px; }
.apw-pc-tt-hlitem { display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.apw-pc-tt-hlitem i { color: var(--pc-cta); font-size: .76rem; }
.apw-pc-tt-price { font-weight: 800; }
.apw-pc-tt-cta { font-weight: 700; color: var(--pc-accent); text-decoration: none; font-size: .82rem; }
.apw-pc-tt-cta:hover { text-decoration: underline; }
