  /* ============================================================
     BLOG — post template + listing styles.
     Loads AFTER service-pages.css and consumes its :root tokens.
     Every selector that sets the Fraunces family must restate
     font-variation-settings: var(--fr-axes) (the property does
     not inherit). Backgrounds stay Snow, never pure white.
     ============================================================ */

  /* Blog-scoped tokens. --teal-ink is the accessible teal for text links
     and solid buttons (>=4.5:1 on Snow, Mist, and white; 5.8:1 under white
     text). --caption-ink passes 4.5:1 for small caption text. The brand
     --teal/--teal-dark stay untouched for decorative use. */
  :root {
    --teal-ink: #0f7268;
    --caption-ink: #636c8a;
  }

  /* ===== POST HERO ===== */
  .post-hero { padding: 90px 0 42px; background: var(--snow); }
  .post-hero .wrap-narrow { max-width: 820px; }
  .post-hero h1 {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--navy);
    margin: 14px 0 18px;
  }
  .post-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
    color: var(--ink-soft); font-size: 14.5px;
  }
  .post-meta i { font-size: 17px; vertical-align: -2px; margin-right: 5px; color: var(--teal-ink); }

  /* ===== HERO IMAGE ===== */
  .post-hero-img { margin: 0; padding: 0 0 8px; background: var(--snow); }
  .post-hero-img .wrap-narrow { max-width: 820px; }
  .post-hero-img img {
    display: block; width: 100%; height: auto; max-height: 460px;
    object-fit: cover; border-radius: 16px; border: 1px solid var(--stone);
  }
  .post-hero-img figcaption { text-align: center; font-size: 13.5px; color: var(--caption-ink); margin-top: 10px; }

  /* ===== POST BODY ===== */
  .post-body-wrap { padding: 42px 0 70px; background: var(--snow); }
  .post-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
  .post-body > * + * { margin-top: 1.15em; }
  .post-body h2, .post-body h3, .post-body h4 {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--navy);
  }
  .post-body h2 { font-size: 28px; margin-top: 1.9em; }
  .post-body h3 { font-size: 22px; margin-top: 1.6em; }
  .post-body h4 { font-size: 18px; margin-top: 1.4em; }
  .post-body a { color: var(--teal-ink); text-decoration: underline; text-underline-offset: 2px; }
  .post-body a:hover { color: var(--navy); }
  .post-body strong { color: var(--navy); }
  .post-body ul, .post-body ol { padding-left: 26px; }
  .post-body li { margin-top: 0.45em; }
  .post-body li::marker { color: var(--teal-ink); }

  /* Figures & captions */
  .post-figure { margin: 1.8em 0; }
  .post-figure img {
    display: block; width: 100%; height: auto;
    border-radius: 14px; border: 1px solid var(--stone);
  }
  .post-figure figcaption { text-align: center; font-size: 13.5px; color: var(--caption-ink); margin-top: 10px; }

  /* Blockquotes */
  .post-body blockquote {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.45;
    color: var(--navy);
    border-left: 3px solid var(--teal);
    margin: 1.8em 0;
    padding: 4px 0 4px 22px;
  }

  /* Tables */
  .post-table-wrap { overflow-x: auto; margin: 1.8em 0; }
  .post-body table { border-collapse: collapse; width: 100%; font-size: 15.5px; background: #fff; }
  .post-body th, .post-body td { border: 1px solid var(--stone); padding: 10px 14px; text-align: left; }
  .post-body th { background: var(--mist); color: var(--navy); font-weight: 600; }

  /* In-body CTA — TEAL, secondary. The single coral action lives in
     the template-owned end-of-post block, never here. */
  .post-cta {
    background: var(--mist);
    border-left: 3px solid var(--teal);
    border-radius: 12px;
    padding: 24px 26px;
    margin: 2em 0;
  }
  .post-cta p { margin: 0 0 8px; }
  .post-cta p:last-child { margin-bottom: 0; }
  .post-cta strong { color: var(--navy); }
  .post-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-ink); color: #fff !important;
    font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
    padding: 11px 22px; border-radius: 8px; text-decoration: none !important;
    margin-top: 8px; transition: background 0.15s ease;
  }
  .post-cta-btn:hover { background: var(--navy); }

  /* Video embeds */
  .post-video { margin: 1.8em 0; aspect-ratio: 16 / 9; }
  .post-video iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; }

  /* FAQ (matches the site's details pattern) */
  .post-faq { max-width: 720px; margin: 0 auto; padding-top: 8px; }
  .post-faq h2 {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 18px;
  }
  .post-faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
  .post-faq summary {
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px;
    font-weight: 600; font-size: 16.5px; color: var(--navy);
  }
  .post-faq summary::-webkit-details-marker { display: none; }
  .post-faq summary i { color: var(--teal-ink); flex: none; transition: transform 0.15s ease; }
  .post-faq details[open] summary i { transform: rotate(45deg); }
  .post-faq .faq-a { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; padding-top: 10px; max-width: 680px; }

  /* End-of-post CTA — the page's ONE coral content action. */
  .post-cta-end {
    max-width: 720px; margin: 54px auto 0; text-align: center;
    background: #fff; border: 1px solid var(--stone); border-radius: 16px;
    padding: 42px 34px;
  }
  .post-cta-end h2 {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .post-cta-end p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 20px; }

  /* ===== LISTING ===== */
  .blog-hero { padding: 96px 0 50px; background: var(--snow); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
    padding-bottom: 20px;
  }
  .post-card {
    background: #fff; border: 1px solid var(--stone); border-radius: 16px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11, 33, 122, 0.08); }
  .post-card a.post-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
  .post-card .post-card-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--mist); }
  .post-card .post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .post-card .post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .post-card h3 {
    font-family: var(--font-display);
    font-variation-settings: var(--fr-axes);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25;
    color: var(--navy);
  }
  .post-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; flex: 1; }
  .post-card .post-card-meta { color: var(--caption-ink); font-size: 13px; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .post-hero { padding: 64px 0 30px; }
    .post-hero h1 { font-size: 30px; }
    .post-body { font-size: 16.5px; }
    .post-body h2 { font-size: 24px; }
    .post-body h3 { font-size: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-cta-end { padding: 32px 22px; }
  }
