/** Shopify CDN: Minification failed

Line 35:4 Unexpected "}"
Line 83:4 Unexpected "}"

**/
    /*
      ── SHOPIFY HEADER AREA ────────────────────────────────────
      Styles for the featured image and title area that sit
      above the article body. These are output by Shopify from
      the blog-post.liquid template, not from the post body.
      Font-family is intentionally left as inherit so your
      Shopify theme's global CSS controls heading and body fonts.
    */
.shopify-featured-image {
  width: 100vw;
  max-width: none;
  height: 420px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  overflow: hidden;
}
.shopify-featured-image .pp-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
    }
    .shopify-featured-image::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: #C8102E;
    }
    .shopify-featured-image span {
      font-family: inherit;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: #999;
    }
    .shopify-title-area {
      max-width: 740px;
      margin: 0 auto;
      padding: 44px 48px 34px;
    }
    .shopify-title-area .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #C8102E;
      margin-bottom: 14px;
    }
    .shopify-title-area .eyebrow::before {
      content: '';
      width: 20px;
      height: 2px;
      background: #C8102E;
      display: block;
    }
    /* article.title — Shopify outputs the H1, font inherits from theme */
.shopify-title-area .pp-article-title {
  font-family: inherit;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: #2B2B2B;
  margin: 0 0 18px;
  padding: 0;
  max-width: 100%;
}
    }
    @media (max-width: 620px) {
      .shopify-featured-image { height: 260px; }
      .shopify-title-area { padding: 32px 24px; }
    }


        /*
      All styles are scoped to .pp-blog-container so they cannot
      conflict with your Shopify theme's global CSS.
      font-family is set to inherit throughout so headings and body
      text use whatever fonts your theme defines globally.
    */

    .pp-blog-container {
      --red:        #C8102E;
      --red-dark:   #9E0C23;
      --red-tint:   #FDF0F2;
      --red-mid:    #F5C6CD;
      --ink:        #2B2B2B;
      --body-text:  #484848;
      --muted:      #737373;
      --grey-100:   #F5F5F5;
      --grey-50:    #FAFAFA;
      --border:     #E4E4E4;
      --white:      #FFFFFF;
      --teal:       #3A9BAD;
      --teal-dark:  #2C7D8E;
      --teal-tint:  #EDF7F9;
      --pill:       100px;
      --font-mono:  inherit;
      --rail-w:     232px;
      --content-max: 740px;
      --radius:     5px;
      --ease:       0.18s ease;

      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      background: var(--white);
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      /* font-family intentionally omitted — inherits from Shopify theme */
      font-size: 16px;
      line-height: 1.75;
      color: var(--body-text);
      -webkit-font-smoothing: antialiased;
    }
    .pp-blog-container * { box-sizing: border-box; }
    .pp-blog-container a { color: var(--red); text-decoration: none; }
    .pp-blog-container a:hover { text-decoration: underline; }
    .pp-blog-container img { max-width: 100%; display: block; }

    /* ── PAGE SHELL ─────────────────────────────────────────── */
    .pp-blog-page { display: flex; align-items: flex-start; min-height: 100vh; }

    /* ── LEFT RAIL ──────────────────────────────────────────── */
    .pp-rail {
      position: sticky;
      top: 0;
      height: 100vh;
      width: var(--rail-w);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--border);
      background: var(--white);
      overflow-y: auto;
    }
    .pp-rail-nav { list-style: none; flex: 1; margin: 0; padding: 0; }
    .pp-rail-nav li { margin: 0; padding: 0; }
    .pp-rail-nav li a {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 22px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--muted);
      line-height: 1.3;
      border-left: 3px solid transparent;
      transition: var(--ease);
    }
    .pp-rail-nav li a:hover,
    .pp-rail-nav li a.active {
      color: var(--red);
      border-left-color: var(--red);
      background: var(--red-tint);
      text-decoration: none;
    }
    .pp-rail-nav li a .n {
      font-family: var(--font-mono);
      font-size: 9.5px;
      color: #CCCCCC;
      min-width: 18px;
    }
    .pp-rail-nav li a.active .n { color: var(--red-mid); }
    .pp-rail-foot { padding: 18px 22px; border-top: 1px solid var(--border); }
    .pp-rail-foot a {
      display: inline-block;
      background: var(--teal);
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: var(--pill);
      border: 2px solid var(--teal);
      white-space: nowrap;
      transition: background 0.18s ease, border-color 0.18s ease;
      text-decoration: none !important;
      line-height: 1;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }
    .pp-rail-foot a:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

    /* ── MAIN COLUMN ────────────────────────────────────────── */
    .pp-main { flex: 1; min-width: 0; }
    .pp-body { max-width: var(--content-max); margin: 0 auto; padding: 52px 48px 80px; }
    .pp-section { margin-bottom: 64px; scroll-margin-top: 24px; }
    .pp-section:last-child { margin-bottom: 0; }

    /* ── INTRO CARD (sits at top of body, below Shopify h1) ─── */
    .pp-intro-card {
      border: 1px solid var(--border);
      border-left: 4px solid var(--red);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 24px 28px;
      margin-bottom: 44px;
      background: var(--grey-50);
    }
    .pp-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .pp-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--red);
      border-radius: 1px;
    }
    .pp-intro-text {
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 620px;
      margin: 0 0 20px;
    }
    .pp-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border); }
    .pp-meta-item { font-size: 12px; color: #8E8E8E; display: flex; align-items: center; gap: 5px; }
    .pp-meta-item strong { color: var(--muted); font-weight: 600; }

    /* ── HEADINGS — all inherit from Shopify global CSS ──────── */
    .pp-h2 {
      font-family: inherit;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.22;
      color: var(--ink);
      margin: 0 0 18px;
    }
    .pp-h2-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 6px;
    }
    .pp-h3 {
      font-family: inherit;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin: 32px 0 10px;
      padding-left: 13px;
      border-left: 3px solid var(--red);
      line-height: 1.3;
    }
    .pp-h4 {
      font-family: inherit;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 24px 0 8px;
    }
    .pp-p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.75; }

    /* ── DIVIDER ─────────────────────────────────────────────── */
    .pp-divider { height: 1px; background: var(--border); margin: 52px 0; position: relative; }
    .pp-divider::after { content: ''; position: absolute; left: 0; top: -1px; width: 36px; height: 3px; background: var(--red); border-radius: 2px; }

    /* ── TABLE ───────────────────────────────────────────────── */
    .pp-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border); border-radius: var(--radius); }
    .pp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
    .pp-table thead tr { background: var(--grey-100); border-bottom: 2px solid var(--border); }
    .pp-table thead th { padding: 11px 14px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; font-family: inherit; }
    .pp-table thead th:first-child { color: var(--red); }
    .pp-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--ease); }
    .pp-table tbody tr:hover { background: var(--grey-50); }
    .pp-table tbody tr:last-child { border-bottom: none; }
    .pp-table td { padding: 12px 14px; vertical-align: top; line-height: 1.5; }
    .pp-table td:first-child { font-weight: 600; color: var(--ink); }
    .pp-table .tag { display: inline-block; background: var(--red-tint); color: var(--red); font-size: 10.5px; font-weight: 600; padding: 2px 7px; border-radius: 3px; }

    /* ── BULLET LISTS ────────────────────────────────────────── */
    .pp-list { list-style: none; margin: 16px 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
    .pp-list li { display: flex; gap: 11px; font-size: 15px; line-height: 1.5; align-items: flex-start; }
    .pp-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--red); margin-top: 8px; }
    .pp-list.check li::before { content: '✓'; background: none; color: var(--red); font-size: 12px; font-weight: 700; margin-top: 2px; }
    .pp-list.cross li::before { content: '✕'; background: none; color: #BBBBBB; font-size: 11px; font-weight: 700; margin-top: 2px; }

    /* ── NUMBERED LIST ───────────────────────────────────────── */
    .pp-ol { list-style: none; counter-reset: pp; margin: 16px 0; padding: 0; }
    .pp-ol li { counter-increment: pp; display: flex; border-bottom: 1px solid var(--border); padding: 12px 0; }
    .pp-ol li:first-child { border-top: 1px solid var(--border); }
    .pp-ol li::before { content: counter(pp, decimal-leading-zero); font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; color: var(--red); min-width: 36px; padding-top: 2px; }
    .pp-ol li span { font-size: 15px; flex: 1; }

    /* ── FEATURE CARDS ───────────────────────────────────────── */
    .pp-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin: 20px 0; }
    .pp-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px; transition: border-color var(--ease), box-shadow var(--ease); }
    .pp-card:hover { border-color: var(--red); box-shadow: 0 2px 12px rgba(200,16,46,0.07); }
    .pp-card-icon { width: 28px; height: 28px; margin-bottom: 11px; }
    .pp-card-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px; font-family: inherit; }
    .pp-card-body { font-size: 12.5px; line-height: 1.5; color: var(--muted); }

    /* ── STAT ROW ────────────────────────────────────────────── */
    .pp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 24px 0; }
    .pp-stat { background: var(--white); padding: 26px 18px; text-align: center; }
    .pp-stat-num { font-family: inherit; font-size: 44px; font-weight: 700; line-height: 1; color: var(--red); display: block; }
    .pp-stat-label { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.4; }

    /* ── PULL QUOTE ──────────────────────────────────────────── */
    .pp-pullquote { margin: 36px 0; padding: 28px 32px; border-left: 4px solid var(--red); background: var(--red-tint); border-radius: 0 var(--radius) var(--radius) 0; }
    .pp-pullquote p { font-size: 18px; line-height: 1.55; font-weight: 600; color: var(--ink); margin: 0 0 12px; font-family: inherit; }
    .pp-pullquote cite { font-size: 11px; font-style: normal; font-family: var(--font-mono); letter-spacing: 0.06em; color: var(--muted); }

    /* ── ALERTS ──────────────────────────────────────────────── */
    .pp-alert { display: flex; gap: 14px; padding: 16px 18px; border-radius: var(--radius); border-left: 4px solid; margin: 20px 0; font-size: 14px; line-height: 1.6; }
    .pp-alert--info { background: #EFF6FF; border-color: #3B82F6; color: #1E3A8A; }
    .pp-alert--warn { background: #FFFBEB; border-color: #F59E0B; color: #78350F; }
    .pp-alert--red  { background: var(--red-tint); border-color: var(--red); color: var(--red-dark); }
    .pp-alert-icon { font-size: 16px; flex-shrink: 0; line-height: 1.6; }
    .pp-alert-body strong { font-weight: 700; display: block; margin-bottom: 2px; }

    /* ── OUR PICK / RECOMMENDATION BOX ─────────────────────── */
    .pp-our-pick {
      margin: 28px 0;
      border: 2px solid var(--red);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pp-our-pick-header {
      background: var(--red);
      padding: 9px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .pp-our-pick-header span {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
    }
    .pp-our-pick-body {
      padding: 20px 22px;
      background: var(--red-tint);
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }
    .pp-our-pick-thumb {
      width: 64px;
      height: 64px;
      background: var(--white);
      border: 1px solid var(--red-mid);
      border-radius: var(--radius);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      overflow: hidden;
    }
    .pp-our-pick-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .pp-our-pick-content { flex: 1; }
    .pp-our-pick-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 4px;
      font-family: inherit;
    }
    .pp-our-pick-reason {
      font-size: 13.5px;
      color: var(--body-text);
      line-height: 1.55;
      margin: 0 0 12px;
    }
    .pp-our-pick-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .pp-our-pick-btn {
      display: inline-block;
      background: var(--teal);
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: var(--pill);
      border: 2px solid var(--teal);
      white-space: nowrap;
      transition: background 0.18s ease, border-color 0.18s ease;
      text-decoration: none !important;
      line-height: 1;
    }
    .pp-our-pick-btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); text-decoration: none; }
    .pp-our-pick-note {
      font-size: 12px;
      color: var(--muted);
      font-style: italic;
    }

    /* ── RATING ROW ──────────────────────────────────────────── */
    .pp-rating-wrap {
      margin: 20px 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pp-rating-header {
      background: var(--grey-100);
      padding: 9px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
    }
    .pp-rating-header-label {
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .pp-rating-header-score {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      color: var(--red);
    }
    .pp-rating-row {
      display: flex;
      align-items: center;
      padding: 11px 16px;
      gap: 14px;
      border-bottom: 1px solid var(--border);
    }
    .pp-rating-row:last-child { border-bottom: none; }
    .pp-rating-row:hover { background: var(--grey-50); }
    .pp-rating-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      min-width: 140px;
      flex-shrink: 0;
    }
    .pp-rating-bar-track {
      flex: 1;
      height: 6px;
      background: var(--grey-100);
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .pp-rating-bar-fill {
      height: 100%;
      background: var(--red);
      border-radius: 3px;
      /* Set width inline as a percentage, e.g. style="width:80%" */
    }
    .pp-rating-score {
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 700;
      color: var(--red);
      min-width: 34px;
      text-align: right;
    }

    /* ── KEY TAKEAWAYS ───────────────────────────────────────── */
    .pp-takeaways {
      margin: 28px 0 36px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pp-takeaways-header {
      background: var(--grey-100);
      padding: 13px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--border);
    }
    .pp-takeaways-header span {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink);
    }
    .pp-takeaways-icon {
      width: 20px;
      height: 20px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      color: var(--white);
      font-weight: 700;
    }
    .pp-takeaways-list {
      list-style: none;
      margin: 0;
      padding: 6px 0;
    }
    .pp-takeaways-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 20px;
      font-size: 14px;
      line-height: 1.55;
      color: var(--body-text);
      border-bottom: 1px solid var(--border);
    }
    .pp-takeaways-list li:last-child { border-bottom: none; }
    .pp-takeaways-list li::before {
      content: '✓';
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── PROS / CONS ─────────────────────────────────────────── */
    .pp-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
    .pp-proscons-col { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pp-proscons-col h4 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 14px; margin: 0; border-bottom: 1px solid var(--border); font-family: inherit; }
    .pp-proscons-col.pros h4 { background: #F0FDF4; color: #15803D; }
    .pp-proscons-col.cons h4 { background: #FEF2F2; color: #B91C1C; }
    .pp-proscons-col ul { list-style: none; padding: 12px 14px; margin: 0; display: flex; flex-direction: column; gap: 7px; }
    .pp-proscons-col ul li { font-size: 13.5px; display: flex; gap: 7px; }
    .pp-proscons-col.pros ul li::before { content: '+'; color: #16A34A; font-weight: 700; }
    .pp-proscons-col.cons ul li::before { content: '−'; color: #DC2626; font-weight: 700; }

    /* ── STEPS ───────────────────────────────────────────────── */
    .pp-steps { margin: 20px 0; }
    .pp-step { display: flex; }
    .pp-step-left { display: flex; flex-direction: column; align-items: center; width: 44px; flex-shrink: 0; }
    .pp-step-num { width: 30px; height: 30px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; flex-shrink: 0; }
    .pp-step-line { flex: 1; width: 1px; background: var(--border); margin: 4px 0; }
    .pp-step:last-child .pp-step-line { display: none; }
    .pp-step-body { flex: 1; padding: 2px 0 24px 14px; }
    .pp-step-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; font-family: inherit; }
    .pp-step-body p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }

    /* ── GLOSSARY ────────────────────────────────────────────── */
    .pp-glossary { margin: 20px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pp-glossary-item { display: flex; border-bottom: 1px solid var(--border); }
    .pp-glossary-item:last-child { border-bottom: none; }
    .pp-glossary-term { padding: 11px 14px; font-size: 11.5px; font-weight: 700; font-family: var(--font-mono); background: var(--grey-50); min-width: 150px; color: var(--ink); border-right: 1px solid var(--border); letter-spacing: 0.02em; }
    .pp-glossary-def { padding: 11px 14px; font-size: 13.5px; color: var(--muted); flex: 1; }

    /* ── TABS ────────────────────────────────────────────────── */
    .pp-compare { margin: 20px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pp-compare-tabs { display: flex; border-bottom: 1px solid var(--border); overflow-x: auto; background: var(--grey-50); }
    .pp-compare-tab { padding: 10px 16px; font-size: 12px; font-weight: 600; color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; transition: var(--ease); font-family: inherit; }
    .pp-compare-tab.active, .pp-compare-tab:hover { color: var(--red); border-bottom-color: var(--red); }
    .pp-compare-panel { padding: 22px; display: none; }
    .pp-compare-panel.active { display: block; }
    .pp-compare-panel h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; font-family: inherit; }
    .pp-compare-panel p { font-size: 14px; color: var(--muted); }

    /* ══════════════════════════════════════════════════════════
       IMAGE STYLES
       Four options — use whichever suits the content.
       All images should include width, height and loading="lazy".
    ══════════════════════════════════════════════════════════ */

    /*
      1. STANDARD INLINE IMAGE
      Use for most in-body images — product shots, format
      comparisons, filled pouch examples. Sits within the
      text column with a border and optional caption.
    */
    .pp-img {
      margin: 28px 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pp-img img { width: 100%; height: auto; display: block; }
    .pp-img-caption {
      padding: 10px 14px;
      font-size: 12.5px;
      color: var(--muted);
      font-style: italic;
      border-top: 1px solid var(--border);
      margin: 0;
      line-height: 1.5;
    }

    /*
      2. FULL-WIDTH BLEED IMAGE
      Use for high-impact product shots where you want the
      image to break out of the text column — e.g. a range
      of pouches laid out on a packing bench, or a finished
      shelf display. No side padding, stretches edge to edge
      within the main column.
    */
    .pp-img-bleed {
      margin: 36px -48px;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .pp-img-bleed img { width: 100%; height: auto; display: block; }
    .pp-img-bleed .pp-img-caption {
      padding: 10px 48px;
      font-size: 12.5px;
      color: var(--muted);
      font-style: italic;
      border-top: 1px solid var(--border);
      margin: 0;
      background: var(--white);
    }

    /*
      3. SIDE-BY-SIDE IMAGE PAIR
      Use to visually compare two formats, materials or
      finishes — e.g. kraft vs foil, stock vs custom print,
      stand up pouch vs flat bottom bag. Each image gets
      equal space with an individual caption below it.
    */
    .pp-img-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 28px 0;
    }
    .pp-img-pair-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pp-img-pair-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .pp-img-pair-item .pp-img-caption { border-top: 1px solid var(--border); }

    /*
      4. IMAGE WITH OVERLAID LABEL
      Use when the image itself needs a short identifying
      label — e.g. "Stand Up Pouch", "Flat Bottom Bag" —
      directly on the image rather than in a caption below.
      Good for format identification shots in the pouch
      types section.
    */
    .pp-img-labelled {
      margin: 28px 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }
    .pp-img-labelled img { width: 100%; height: auto; display: block; }
    .pp-img-label {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: var(--ink);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 3px;
      font-family: var(--font-mono);
    }
    .pp-img-labelled .pp-img-caption { border-top: 1px solid var(--border); }

    /* ── PRODUCT LINK CARD ───────────────────────────────────── */
    .pp-product-link { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--border); border-radius: var(--radius); margin: 16px 0; text-decoration: none; transition: border-color var(--ease); }
    .pp-product-link:hover { border-color: var(--red); text-decoration: none; }
    .pp-product-link .thumb { width: 48px; height: 48px; background: var(--grey-100); border-radius: var(--radius); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; overflow: hidden; }
    .pp-product-link .thumb img { width: 100%; height: 100%; object-fit: cover; }
    .pp-product-link .name { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
    .pp-product-link .sub { font-size: 12px; color: var(--muted); }
    .pp-product-link .arrow { margin-left: auto; color: var(--border); font-size: 18px; flex-shrink: 0; }

    /* ── FAQ — uses native <details>/<summary> ───────────────── */
    .pp-faq { margin: 20px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
    .pp-faq details { border-bottom: 1px solid var(--border); }
    .pp-faq details:last-child { border-bottom: none; }
    .pp-faq summary {
      list-style: none;
      cursor: pointer;
      padding: 15px 18px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      line-height: 1.4;
      font-family: inherit;
      transition: background var(--ease);
    }
    .pp-faq summary:hover { background: var(--grey-50); }
    .pp-faq summary::-webkit-details-marker { display: none; }
    .pp-faq summary::after {
      content: '+';
      width: 20px;
      height: 20px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      flex-shrink: 0;
      font-size: 14px;
      transition: transform var(--ease), border-color var(--ease), color var(--ease);
    }
    .pp-faq details[open] summary::after { transform: rotate(45deg); border-color: var(--red); color: var(--red); }
    .pp-faq details p { padding: 0 18px 16px; font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

    /* ── CTA BANNER ──────────────────────────────────────────── */
    .pp-cta { border: 2px solid var(--red); border-radius: var(--radius); padding: 32px; margin: 36px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--red-tint); }
    .pp-cta h3 { font-family: inherit; font-size: 22px; font-weight: 700; color: var(--red); margin: 0 0 4px; }
    .pp-cta p { font-size: 13.5px; color: var(--body-text); line-height: 1.5; margin: 0; }
    /* Primary — teal filled pill */
    .pp-cta-btn { display: inline-block; background: var(--teal); color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; font-family: inherit; font-size: 15px; font-weight: 700; padding: 13px 28px; border-radius: var(--pill); border: 2px solid var(--teal); white-space: nowrap; transition: background 0.18s ease, border-color 0.18s ease; text-decoration: none !important; line-height: 1; }
    .pp-cta-btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
    /* Secondary — teal outline pill */
    .pp-cta-btn-outline { display: inline-block; background: transparent; color: var(--teal) !important; -webkit-text-fill-color: var(--teal) !important; font-family: inherit; font-size: 15px; font-weight: 700; padding: 13px 28px; border-radius: var(--pill); border: 2px solid var(--teal); white-space: nowrap; transition: background 0.18s ease; text-decoration: none !important; line-height: 1; }
    .pp-cta-btn-outline:hover { background: var(--teal-tint); }

    /* ── AUTHOR BOX ──────────────────────────────────────────── */
    .pp-author { display: flex; gap: 18px; padding: 22px; background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--radius); margin: 36px 0; align-items: flex-start; }
    .pp-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grey-100); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--red); overflow: hidden; }
    .pp-author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .pp-author-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
    .pp-author-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; font-family: inherit; }
    .pp-author-bio { font-size: 13px; color: var(--muted); line-height: 1.5; }

    /* ── RELATED POSTS ───────────────────────────────────────── */
    .pp-related-label { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #BBBBBB; margin-bottom: 14px; display: block; }
    .pp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .pp-related-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: block; transition: border-color var(--ease); }
    .pp-related-card:hover { border-color: var(--red); text-decoration: none; }
    .pp-related-card .pp-related-img { background: var(--grey-100); height: 110px; overflow: hidden; }
    .pp-related-card .pp-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pp-related-card .pp-related-img-placeholder { background: var(--grey-100); height: 110px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; color: #C8C8C8; }
    .pp-related-card .info { padding: 12px; }
    .pp-related-card .tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--red); display: block; margin-bottom: 4px; }
    .pp-related-card .title { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.4; font-family: inherit; }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 920px) {
      .pp-blog-container { border-left: 0; border-right: 0; }
      .pp-rail { display: none; }
      .pp-body { padding-left: 24px; padding-right: 24px; }
      .pp-proscons { grid-template-columns: 1fr; }
      .pp-stats { grid-template-columns: 1fr; }
      .pp-related-grid { grid-template-columns: 1fr 1fr; }
      .pp-cta { flex-direction: column; align-items: flex-start; }
      .pp-img-bleed { margin-left: -24px; margin-right: -24px; }
      .pp-img-bleed .pp-img-caption { padding-left: 24px; padding-right: 24px; }
    }
    @media (max-width: 520px) {
      .pp-related-grid { grid-template-columns: 1fr; }
      .pp-cards { grid-template-columns: 1fr 1fr; }
      .pp-img-pair { grid-template-columns: 1fr; }
      .pp-glossary-item { display: block; }
      .pp-glossary-term { border-right: 0; border-bottom: 1px solid var(--border); }
    }
    /* ── FAQ FIX — force vertical accordion layout ───────────────── */
.pp-blog-container .pp-faq {
  display: block;
  width: 100%;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pp-blog-container .pp-faq details {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
  float: none;
  clear: both;
}

.pp-blog-container .pp-faq details:last-child {
  border-bottom: none;
}

.pp-blog-container .pp-faq summary {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  font-family: inherit;
  background: var(--white);
}

.pp-blog-container .pp-faq summary:hover {
  background: var(--grey-50);
}

.pp-blog-container .pp-faq summary::-webkit-details-marker {
  display: none;
}

.pp-blog-container .pp-faq summary::after {
  content: '+';
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}

.pp-blog-container .pp-faq details[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--red);
  color: var(--red);
}

.pp-blog-container .pp-faq details p {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
/* ── LEFT RAIL STICKY FIX ─────────────────────────────────── */
.pp-blog-container {
  overflow: visible;
}

.pp-blog-page {
  align-items: stretch;
  overflow: visible;
}

.pp-rail {
  position: sticky;
  top: 0;
  align-self: flex-start;
  max-height: 100vh;
  height: 100vh;
}