/*
 * The Exhale — magazine layer (single posts + category archives).
 *
 * Loaded by inc/enqueues.php on: is_single() | is_category() | is_archive().
 * The /blog/ landing (is_home()) also enqueues landing.css after this file.
 *
 * Scoped under .exhale-post* + .exhale-related-* + .exhale-standard* to
 * prevent leakage onto Elementor-rendered pages (service/population/city).
 * Tokens are inherited from landing.css when both load; defined here when
 * landing.css is NOT loaded (single posts, category archives).
 *
 * Phase B port of _capture/single-post-mockup.html v5.
 * Class names per docs/superpowers/plans/2026-05-28-native-wp-blog-build.md §3.
 * Hand-written, no preprocessor. Target: <= 20 KB gz.
 */

:root {
    --c-cream:         #FAF7F2;
    --c-cream-deep:    #F2EDE3;
    --c-navy:          #021649;
    --c-navy-2:        #0E2664;
    --c-teal:          #029791;
    --c-teal-tint:     #E6F4F3;
    --c-teal-glow:     #A2E5DA;
    /* Dark green - Kit "CTA Button Color"; canonical CTA hover state.
       See introspectus-design-system SKILL.md Live Kit extensions. */
    --c-dark-green:    #2E5D4B;
    --c-charcoal:      #333333;
    --c-charcoal-soft: rgba(51, 51, 51, 0.72);
    --c-muted:         rgba(51, 51, 51, 0.55);
    --c-white:         #ffffff;
    --c-border:        rgba(2, 22, 73, 0.08);
    --c-rule:          rgba(2, 22, 73, 0.16);

    --ff-display: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ff-h1:      "DM Serif Display", Georgia, serif;
    --ff-body:    "Source Serif Pro", Georgia, "Times New Roman", serif;

    --ls-eye:  0.16em;
    --rad-sm:  4px;
    --rad-md:  8px;
    --rad-lg:  14px;
    --shadow-card: 0 1px 2px rgba(2, 22, 73, 0.04), 0 10px 28px rgba(2, 22, 73, 0.06);
    --shadow-hero: 0 24px 60px rgba(2, 22, 73, 0.18);
}

/* Body + main wrapper — scoped so it cannot leak */
.exhale-blog-main {
    background: var(--c-cream);
    color: var(--c-charcoal);
    font-family: var(--ff-body);
    font-size: 19px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.exhale-blog-main *, .exhale-blog-main *::before, .exhale-blog-main *::after { box-sizing: border-box; }
.exhale-blog-main img { display: block; max-width: 100%; height: auto; }
.exhale-blog-main a { color: var(--c-teal); text-decoration: underline; text-underline-offset: 3px; transition: color 160ms ease-out; }
.exhale-blog-main a:hover, .exhale-blog-main a:focus-visible { color: var(--c-navy); }
.exhale-blog-main :focus-visible { outline: 2px solid var(--c-teal); outline-offset: 3px; border-radius: 2px; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ===== ARTICLE HERO ===== */
.exhale-post__hero { padding: 56px 24px 0; background: var(--c-cream); }
.exhale-post__hero-inner { max-width: 920px; margin: 0 auto; }

.exhale-post__breadcrumb {
    font-family: var(--ff-display);
    font-size: 12px; color: var(--c-muted);
    margin: 0 0 18px; letter-spacing: 0.02em;
}
.exhale-post__breadcrumb a { color: var(--c-charcoal-soft); text-decoration: none; }
.exhale-post__breadcrumb a:hover { color: var(--c-teal); }
.exhale-post__breadcrumb-sep { display: inline-block; margin: 0 8px; color: var(--c-muted); }
.exhale-post__breadcrumb-current { color: var(--c-charcoal); }

.exhale-post__hero-eyebrow {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 600; font-size: 11px;
    letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); text-decoration: none; margin-bottom: 22px;
}
.exhale-post__hero-eyebrow:hover { color: var(--c-navy); }

.exhale-post__hero-title {
    font-family: var(--ff-h1); font-weight: 400;
    font-size: 56px; line-height: 1.08;
    color: var(--c-navy); margin: 0 0 22px;
    letter-spacing: -0.005em; max-width: 18ch;
}
.exhale-post__hero-dek {
    font-family: var(--ff-body); font-style: italic;
    font-size: 22px; line-height: 1.5; color: var(--c-charcoal-soft);
    margin: 0 0 32px; max-width: 720px;
}

.exhale-post__byline {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 0;
    border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule);
    margin-bottom: 40px; flex-wrap: wrap;
}
.exhale-post__byline-photo {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; object-position: 50% 22%; flex-shrink: 0;
}
.exhale-post__byline-text { font-family: var(--ff-display); font-size: 13px; color: var(--c-charcoal); }
.exhale-post__byline-name { font-weight: 600; color: var(--c-navy); }
.exhale-post__byline-creds { color: var(--c-charcoal-soft); font-weight: 400; }
.exhale-post__byline-sep {
    display: inline-block; width: 3px; height: 3px;
    background: var(--c-muted); border-radius: 50%;
    margin: 0 10px; vertical-align: middle;
}
.exhale-post__byline-meta-row {
    margin-top: 6px;
    font-family: var(--ff-display);
    font-size: 12px; color: var(--c-muted); line-height: 1.5;
}
.exhale-post__byline-meta-row strong { color: var(--c-charcoal-soft); font-weight: 500; }

.exhale-post__hero-figure { margin: 0 0 48px; }
.exhale-post__hero-image-wrap { max-width: 1100px; margin: 0 auto; }
.exhale-post__hero-image {
    width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    border-radius: var(--rad-md); box-shadow: var(--shadow-hero);
}
.exhale-post__hero-caption {
    font-family: var(--ff-display); font-style: italic;
    font-size: 12px; color: var(--c-muted); text-align: center;
    margin: 10px auto 0; max-width: 1100px;
}

/* ===== BODY + STICKY SIDEBAR ===== */
.exhale-post__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px 56px;
}
.exhale-post__body { min-width: 0; }
.exhale-post__sidebar { font-family: var(--ff-display); }
.exhale-post__sidebar--sticky {
    position: sticky;
    top: 32px;
    align-self: start;
    /* Cap to viewport height so the bottom card (Subscribe button)
       does not clip on short laptop viewports (1366x768, 1280x800,
       MacBook Air post-chrome ~700px). Internal scroll engages only
       when the sidebar overflows; tall viewports see no scrollbar.
       Audit data: sidebar content ~794px; viewport less than ~860px
       triggers the internal scroll. */
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--c-rule) transparent;
}
.exhale-post__sidebar--sticky::-webkit-scrollbar { width: 6px; }
.exhale-post__sidebar--sticky::-webkit-scrollbar-track { background: transparent; }
.exhale-post__sidebar--sticky::-webkit-scrollbar-thumb {
    background: var(--c-rule);
    border-radius: 3px;
}

/* Quick-answer / TL;DR callout (E-E-A-T snippet bait) */
.exhale-post__quick-answer {
    margin: 0 0 36px; padding: 24px 28px;
    background: var(--c-teal-tint);
    border-left: 4px solid var(--c-teal);
    border-radius: 0 var(--rad-md) var(--rad-md) 0;
}
.exhale-post__quick-answer-eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); margin: 0 0 8px;
}
.exhale-post__quick-answer-body {
    font-family: var(--ff-body); font-size: 17px;
    line-height: 1.55; color: var(--c-navy); margin: 0;
}

/* Body content (Gutenberg .entry-content) */
.entry-content {
    font-family: var(--ff-body); font-size: 19px;
    line-height: 1.72; color: var(--c-charcoal); max-width: 68ch;
}
.entry-content p { margin: 0 0 22px; }
.entry-content > p:first-of-type::first-letter {
    font-family: var(--ff-h1); font-size: 84px; line-height: 0.86;
    float: left; padding: 4px 12px 0 0; color: var(--c-navy);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
    font-family: var(--ff-display); color: var(--c-navy);
    line-height: 1.2; margin-top: 56px; margin-bottom: 18px;
}
.entry-content h2 {
    font-size: 32px; font-weight: 700; padding-top: 36px;
    border-top: 1px solid var(--c-rule); letter-spacing: -0.005em;
    /* Anchor-link offset so sidebar TOC jumps don't tuck the H2
       under the site header. Tuned to clear the 64px header bar
       plus 24px of breathing room. */
    scroll-margin-top: 88px;
}
.entry-content h3, .entry-content h4 { scroll-margin-top: 88px; }
.entry-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

/* H2 eyebrow span — renders the SQ3R / topical-kicker label as a block
   above the H2 title text. Markup: <h2><span class="exhale-post__h2-eyebrow">Read</span>Integrating...</h2>.
   Per QB 2026-06-04 spec: separate block above title, gray small caps. */
.exhale-post__h2-eyebrow {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #888;
    margin-bottom: 8px;
}

.entry-content h3 { font-size: 24px; font-weight: 600; margin-top: 40px; }
.entry-content h4 { font-size: 20px; font-weight: 600; margin-top: 32px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin: 0 0 22px; }
.entry-content li { margin-bottom: 8px; }
.entry-content li::marker { color: var(--c-teal); }
.entry-content a { color: var(--c-teal); }
.entry-content a:hover { color: var(--c-navy); }
.entry-content strong { font-weight: 600; color: var(--c-navy-2); }
.entry-content em { font-style: italic; }
.entry-content .wp-block-image img { border-radius: var(--rad-md); margin: 32px 0; }
.entry-content .wp-block-image figcaption {
    font-family: var(--ff-display); font-size: 12px;
    color: var(--c-muted); text-align: center; margin-top: 8px;
}

/* Pull quote (Gutenberg is-style-pull on core/quote) */
.entry-content .wp-block-quote.is-style-pull {
    margin: 56px 0; padding: 28px 32px 28px 36px;
    background: linear-gradient(90deg, var(--c-teal-tint) 0%, rgba(230, 244, 243, 0) 100%);
    border: none; border-left: 3px solid var(--c-teal);
    border-radius: 0 var(--rad-md) var(--rad-md) 0;
    font-family: var(--ff-body); font-style: italic;
    font-size: 28px; line-height: 1.4; color: var(--c-navy);
    position: relative;
}
.entry-content .wp-block-quote.is-style-pull::before {
    content: "\201C"; font-family: var(--ff-h1);
    font-size: 96px; line-height: 1; color: var(--c-teal);
    position: absolute; top: 0; left: 6px; opacity: 0.22;
}
.entry-content .wp-block-quote.is-style-pull p { margin: 0 0 8px; }
.entry-content .wp-block-quote.is-style-pull cite {
    display: block; font-family: var(--ff-display);
    font-style: normal; font-size: 13px; font-weight: 500;
    color: var(--c-charcoal-soft); margin-top: 10px; letter-spacing: 0.04em;
}

/* References list (Gutenberg is-style-references on core/list) — E-E-A-T */
.entry-content .wp-block-list.is-style-references,
.entry-content ol.is-style-references {
    list-style: none; counter-reset: ref;
    padding: 0; margin: 56px 0 24px;
    padding-top: 28px; border-top: 1px solid var(--c-rule);
    font-family: var(--ff-body); font-size: 14px;
    line-height: 1.55; color: var(--c-charcoal-soft); max-width: 68ch;
}
.entry-content .wp-block-list.is-style-references li,
.entry-content ol.is-style-references li {
    counter-increment: ref; padding-left: 36px;
    position: relative; margin-bottom: 10px;
}
.entry-content .wp-block-list.is-style-references li::before,
.entry-content ol.is-style-references li::before {
    content: "[" counter(ref) "]";
    position: absolute; left: 0; top: 0; color: var(--c-teal);
    font-family: var(--ff-display); font-weight: 600; font-size: 12px;
}
.entry-content .wp-block-list.is-style-references li::marker,
.entry-content ol.is-style-references li::marker { content: ""; }

/* In-post Jane CTA — ghost outline default → filled dark-green hover */
.exhale-post__inline-cta {
    margin: 56px 0; padding: 44px 36px;
    border-radius: var(--rad-lg); color: var(--c-white);
    position: relative; overflow: hidden; isolation: isolate;
    min-height: 260px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    background-color: var(--c-navy);
    background-image:
        linear-gradient(180deg, rgba(2, 22, 73, 0.74) 0%, rgba(2, 22, 73, 0.86) 100%),
        url('https://introspectuscounselling.ca/wp-content/uploads/2026/06/pastoral-counselling-forest-landscape-scaled-1.webp');
    background-size: cover; background-position: center 38%;
}
.exhale-post__inline-cta-lead {
    font-family: var(--ff-body); font-style: italic;
    font-size: 19px; line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    margin: 0 0 22px; max-width: 28ch; text-wrap: balance;
}
a.exhale-post__inline-cta-button {
    display: inline-block;
    font-family: var(--ff-display); font-weight: 600;
    font-size: 15px; letter-spacing: 0.01em;
    color: var(--c-dark-green); background: var(--c-white);
    border: 2px solid var(--c-dark-green);
    padding: 12px 30px; border-radius: 999px;
    text-decoration: none;
    transition: background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}
a.exhale-post__inline-cta-button:hover,
a.exhale-post__inline-cta-button:focus-visible {
    background: var(--c-dark-green); color: var(--c-white);
    border-color: var(--c-dark-green); transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.exhale-post__inline-cta-sub {
    font-family: var(--ff-display); font-size: 13px; font-weight: 400;
    color: rgba(255, 255, 255, 0.82); margin: 14px 0 0;
}

/* ===== SIDEBAR ===== */
.exhale-post__sidebar-block {
    padding: 22px 0; border-bottom: 1px solid var(--c-border);
}
.exhale-post__sidebar-block:first-child { padding-top: 0; }
.exhale-post__sidebar-block:last-child { border-bottom: none; padding-bottom: 0; }

/* In-article TOC (sidebar block, bottom of stack post r25). One link per H2
   in the body. Eyebrow cue (Survey / Question / Read / Recite / Review)
   renders above each title in a small Work Sans uppercase, mirroring the
   in-body H2 eyebrow. r26 2026-06-04: dropped the dotted dividers between
   items and tightened the padding for a denser, more list-like rhythm. */
.exhale-post__sidebar-toc-list {
    list-style: none; margin: 0; padding: 0;
}
.exhale-post__sidebar-toc-list li {
    margin: 0; padding: 5px 0;
}
.exhale-post__sidebar-toc-list li:first-child { padding-top: 0; }
.exhale-post__sidebar-toc-list li:last-child  { padding-bottom: 0; }
.exhale-post__sidebar-toc-list a {
    display: block;
    color: var(--c-navy); text-decoration: none;
    transition: color 160ms ease-out;
}
.exhale-post__sidebar-toc-list a:hover,
.exhale-post__sidebar-toc-list a:focus-visible {
    color: var(--c-teal);
}
.exhale-post__sidebar-toc-cue {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.10em;
    color: #888; margin-bottom: 2px;
}
.exhale-post__sidebar-toc-title {
    display: block;
    font-family: var(--ff-display);
    font-size: 14px; font-weight: 600;
    line-height: 1.3;
}

.exhale-post__sidebar-eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); margin: 0 0 14px;
}

/* Sidebar: Related-service block (pillar up-link) */
.exhale-post__sidebar-service {
    background: var(--c-cream-deep);
    border-radius: var(--rad-md);
    padding: 18px 18px 20px;
    border: 1px solid var(--c-border);
}
.exhale-post__sidebar-service-eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); margin: 0 0 8px;
}
.exhale-post__sidebar-service-title {
    font-family: var(--ff-display); font-weight: 700;
    font-size: 15px; color: var(--c-navy);
    margin: 0 0 6px; line-height: 1.3;
}
.exhale-post__sidebar-service-desc {
    font-family: var(--ff-body); font-size: 13px;
    line-height: 1.5; color: var(--c-charcoal-soft); margin: 0 0 12px;
}
.exhale-post__sidebar-service-link {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 13px; color: var(--c-teal); text-decoration: none;
}
.exhale-post__sidebar-service-link:hover { color: var(--c-navy); }

/* Sidebar: Categories list */
.exhale-post__sidebar-cats ul { list-style: none; padding: 0; margin: 0; }
.exhale-post__sidebar-cats li { border-bottom: 1px dashed var(--c-border); }
.exhale-post__sidebar-cats li:last-child { border-bottom: none; }
.exhale-post__sidebar-cats a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-family: var(--ff-display);
    font-size: 14px; color: var(--c-charcoal); text-decoration: none;
}
.exhale-post__sidebar-cats a:hover { color: var(--c-teal); }
.exhale-post__sidebar-cats a .count {
    font-size: 11px; color: var(--c-muted);
    background: var(--c-cream-deep); padding: 2px 8px; border-radius: 999px;
}

/* Sidebar: mini newsletter (symmetric padding per Sean v4) */
.exhale-newsletter--mini {
    background: var(--c-teal); border-radius: var(--rad-md);
    padding: 32px 20px; color: var(--c-white); text-align: left;
}
.exhale-newsletter--mini .exhale-newsletter__heading {
    font-family: var(--ff-display); font-weight: 700;
    font-size: 12px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-white); margin: 0 0 6px;
}
.exhale-newsletter--mini .exhale-newsletter__sub {
    font-family: var(--ff-body); font-style: italic;
    font-size: 14px; line-height: 1.4;
    color: rgba(255, 255, 255, 0.92); margin: 0 0 14px;
}
.exhale-newsletter--mini form { display: flex; flex-direction: column; gap: 8px; }
.exhale-newsletter--mini input[type="email"] {
    border: none; border-radius: var(--rad-sm);
    padding: 11px 12px; font-family: var(--ff-display); font-size: 14px;
}
.exhale-newsletter--mini button {
    background: var(--c-navy); color: var(--c-white);
    border: none; border-radius: 999px;
    padding: 11px 16px; font-family: var(--ff-display);
    font-weight: 600; font-size: 13px; cursor: pointer;
}
.exhale-newsletter--mini button:hover { background: #000B36; }

/* ===== RELATED POSTS GRID (shared with /blog/ landing if needed) ===== */
.exhale-post__related { background: var(--c-cream-deep); padding: 72px 24px; }
.exhale-post__related-inner { max-width: 1100px; margin: 0 auto; }
.exhale-post__related-heading {
    font-family: var(--ff-display); font-weight: 700;
    font-size: 24px; color: var(--c-navy); margin: 0 0 28px;
}
.exhale-post__related-heading::before {
    content: ""; display: block;
    width: 36px; height: 2px; background: var(--c-teal); margin-bottom: 14px;
}
.exhale-related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.exhale-related-card {
    background: var(--c-white); border-radius: var(--rad-md);
    overflow: hidden; text-decoration: none; color: var(--c-charcoal);
    display: flex; flex-direction: column; box-shadow: var(--shadow-card);
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.exhale-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(2,22,73,0.06), 0 18px 36px rgba(2,22,73,0.10);
}
.exhale-related-card__thumb { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.exhale-related-card__body { padding: 20px 22px 24px; }
.exhale-related-card__eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); margin: 0 0 8px;
}
.exhale-related-card__title {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 18px; line-height: 1.28;
    color: var(--c-navy); margin: 0 0 10px;
}
.exhale-related-card__excerpt {
    font-family: var(--ff-body); font-size: 14px; line-height: 1.55;
    color: var(--c-charcoal-soft); margin: 0 0 14px;
}
.exhale-related-card__meta {
    font-family: var(--ff-display); font-size: 11px;
    color: var(--c-muted); margin: 0; letter-spacing: 0.02em;
}

/* ===== AUTHOR BIO BAND ===== */
.exhale-post__author-bio {
    background: var(--c-cream); padding: 72px 24px;
    border-top: 1px solid var(--c-border);
}
/* r23 2026-06-04: photo widened to 200x231 to match the new Coastline
   Living portrait's natural 1:1.156 aspect ratio. Grid column updated
   to 200px so the new photo lands flush against the gap.
   r24 2026-06-04: align-items center (was start) so the photo's
   vertical midpoint aligns with the text's vertical midpoint. */
.exhale-post__author-bio-inner {
    max-width: 880px; margin: 0 auto;
    display: grid; grid-template-columns: 200px 1fr;
    gap: 32px; align-items: center;
}
/* `img.` qualifier matches the `.exhale-blog-main img` reset specificity
   (0,1,1) so the explicit height wins via source-order. Without the
   qualifier, the reset rule's `height: auto` overrode at lower line
   numbers and the photo rendered at its natural ratio (caught in r20). */
img.exhale-post__author-bio-photo {
    width: 200px; height: 231px; border-radius: 12px;
    object-fit: cover; object-position: 50% 22%;
    box-shadow: var(--shadow-card);
}
.exhale-post__author-bio-text { min-width: 0; }
.exhale-post__author-bio-eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal); margin: 0 0 8px;
}
.exhale-post__author-bio-name {
    font-family: var(--ff-display); font-weight: 700;
    font-size: 24px; color: var(--c-navy);
    margin: 0 0 4px; letter-spacing: -0.005em;
}
.exhale-post__author-bio-creds {
    font-family: var(--ff-display); font-size: 12px;
    color: var(--c-charcoal-soft); margin: 0 0 16px; letter-spacing: 0.04em;
}
.exhale-post__author-bio-line {
    font-family: var(--ff-body); font-size: 17px;
    line-height: 1.62; color: var(--c-charcoal);
    margin: 0 0 20px; max-width: 60ch;
}
.exhale-post__author-bio-link {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 14px; color: var(--c-teal); text-decoration: none;
}
.exhale-post__author-bio-link:hover { color: var(--c-navy); }

/* ===== NEWSLETTER FOOTER (large) ===== */
.exhale-post__newsletter-footer { background: var(--c-navy); padding: 56px 24px; color: var(--c-white); }
.exhale-post__newsletter-footer-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.exhale-post__newsletter-footer-eyebrow {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 11px; letter-spacing: var(--ls-eye); text-transform: uppercase;
    color: var(--c-teal-glow); margin: 0 0 10px;
}
.exhale-post__newsletter-footer-heading {
    font-family: var(--ff-display); font-weight: 700;
    font-size: 26px; margin: 0 0 10px;
    color: var(--c-white); letter-spacing: -0.005em;
}
.exhale-post__newsletter-footer-sub {
    font-family: var(--ff-body); font-style: italic;
    font-size: 17px; line-height: 1.5;
    color: rgba(255, 255, 255, 0.85); margin: 0 0 24px;
}
.exhale-post__newsletter-footer-form {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; max-width: 480px; margin: 0 auto;
}
.exhale-post__newsletter-footer-input {
    border: none; border-radius: 999px; padding: 13px 20px;
    font-family: var(--ff-display); font-size: 15px;
    flex: 1 1 220px; min-width: 0;
}
.exhale-post__newsletter-footer-button {
    background: var(--c-teal); color: var(--c-white);
    border: none; border-radius: 999px; padding: 13px 26px;
    font-family: var(--ff-display); font-weight: 600;
    font-size: 14px; cursor: pointer; transition: background 160ms ease-out;
}
.exhale-post__newsletter-footer-button:hover { background: #016E69; }
.exhale-post__newsletter-footer-fine {
    font-family: var(--ff-display); font-size: 11px;
    color: rgba(255, 255, 255, 0.6); margin: 16px 0 0;
}

/* ===== EDITORIAL STANDARD BAND (S9) ===== */
.exhale-standard {
    background: var(--c-cream); padding: 32px 24px;
    border-top: 1px solid var(--c-border);
}
.exhale-standard__body {
    font-family: var(--ff-display); font-size: 13px;
    color: var(--c-charcoal-soft); text-align: center;
    margin: 0 auto; max-width: 920px; line-height: 1.55;
}
.exhale-standard__body a { color: var(--c-teal); text-decoration: none; }
.exhale-standard__body a:hover { text-decoration: underline; }

/* ===== CATEGORY-ARCHIVE HEADER (used by Chip 4's category.php) ===== */
.exhale-category-header { background: var(--c-cream); padding: 64px 24px; border-bottom: 1px solid var(--c-border); }
.exhale-category-header__inner { max-width: 1200px; margin: 0 auto; }
.exhale-category-header__title {
    font-family: var(--ff-h1); font-weight: 400;
    font-size: 48px; line-height: 1.05;
    color: var(--c-navy); margin: 8px 0 12px;
}
.exhale-category-header__desc {
    font-family: var(--ff-body); font-style: italic;
    font-size: 18px; line-height: 1.5; color: var(--c-charcoal);
    margin: 0; max-width: 700px;
}

/* ===== RESPONSIVE ===== */

/* Large-viewport polish (>= 1441px): tighter centered cluster.
   r15 (2026-06-04): 1520px container with minmax middle column
   misaligned the body content to the left of viewport center on
   wide screens. r15 caps the container at 1180px and uses a fixed
   40px gap so body (808px) + gap (40px) + sidebar (280px) cluster
   tightly and the whole rail centers under viewport center.
   At 1920 viewport: container 1180 centered -> 370px margins;
   body x=370-1178; sidebar x=1218-1498. */
@media (min-width: 1441px) {
    .exhale-post__layout {
        max-width: 1180px;
        grid-template-columns: 808px 40px 280px;
        gap: 0;
    }
    .exhale-post__sidebar--sticky { grid-column: 3; }
}

@media (max-width: 1000px) {
    .exhale-post__layout { grid-template-columns: 1fr; gap: 48px; }
    .exhale-post__sidebar--sticky {
        position: static; max-width: 520px; margin: 0 auto; width: 100%;
        max-height: none; overflow: visible;
    }
    .exhale-post__hero-title { font-size: 48px; }
}

/* Sticky-vs-viewport-height fallback: when the viewport can't comfortably
   hold the full sidebar (~794 px content + 64 px breathing), drop sticky
   so the sidebar flows with the page and every card is reachable by normal
   scroll. Threshold = 860 px. Common short-viewport laptops land here.

   max-height value note: 860 (not 859). Chromium evaluates max-height
   against the visual viewport which carries sub-pixel rounding from
   devicePixelRatio drift. At a Playwright viewport of 859, the visual
   viewport reports 859.2 so max-height:859 doesn't match. 860 fires
   correctly at the documented 860-px threshold. Verified 2026-06-03. */
@media (max-height: 860px) and (min-width: 1001px) {
    .exhale-post__sidebar--sticky {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .exhale-blog-main { font-size: 17px; line-height: 1.66; }
    .exhale-post__hero { padding: 36px 20px 0; }
    .exhale-post__hero-title { font-size: 38px; max-width: none; }
    .exhale-post__hero-dek { font-size: 18px; margin-bottom: 24px; }
    .exhale-post__byline { padding: 16px 0; margin-bottom: 32px; }
    .exhale-post__layout { padding: 0 20px 40px; gap: 40px; }
    .entry-content { font-size: 17px; line-height: 1.66; }
    .entry-content h2 { font-size: 26px; padding-top: 28px; margin-top: 44px; }
    .entry-content h3 { font-size: 20px; margin-top: 32px; }
    .entry-content h4 { font-size: 18px; margin-top: 28px; }
    .entry-content > p:first-of-type::first-letter { font-size: 64px; padding-right: 10px; }
    .entry-content .wp-block-quote.is-style-pull { font-size: 21px; padding: 22px 22px 22px 26px; margin: 40px 0; }
    .entry-content .wp-block-quote.is-style-pull::before { font-size: 64px; }
    .exhale-post__inline-cta { padding: 28px 22px; margin: 40px 0; }
    .exhale-related-grid { grid-template-columns: 1fr; gap: 20px; }
    .exhale-post__related, .exhale-post__author-bio { padding: 48px 20px; }
    /* r23 2026-06-04: mobile — collapse to single column, photo on top
       (auto-centered by grid), text below. Scaled to 160x185 preserving
       the 1:1.156 aspect ratio from desktop. */
    .exhale-post__author-bio-inner { grid-template-columns: 1fr; gap: 20px; }
    img.exhale-post__author-bio-photo { width: 160px; height: 185px; }
    .exhale-post__newsletter-footer { padding: 44px 20px; }
    .exhale-post__newsletter-footer-heading { font-size: 22px; }
    .exhale-post__newsletter-footer-sub { font-size: 15px; }
    .exhale-category-header { padding: 48px 20px; }
    .exhale-category-header__title { font-size: 36px; }
    .exhale-category-header__desc { font-size: 16px; }
}

@media (max-width: 480px) {
    .exhale-post__hero-title { font-size: 32px; }
    .exhale-post__hero-dek { font-size: 16px; }
    .entry-content { font-size: 16.5px; }
    .entry-content .wp-block-quote.is-style-pull { font-size: 19px; }
    a.exhale-post__inline-cta-button { font-size: 14px; padding: 12px 22px; }
}

/* ===========================================================================
   Sidebar-block padding overrides — must come LAST so they beat
   .exhale-post__sidebar-block:first-child {padding-top:0} and :last-child
   {padding-bottom:0} on cascade order. The :first-/:last-child pseudos have
   the same specificity (0,2,0) as the compound selectors below; the only
   way these can win is appearing later in the stylesheet. Documented bug
   from Phase A v7 review (Sean: "related service is crammed, subscribe
   button has no breathing room"). Computed-style verified 2026-06-03:
   .sidebar-service = 32/24/32/24; .newsletter--mini = 44/22/44/22.
   ========================================================================= */
.exhale-post__sidebar-block.exhale-post__sidebar-service {
    padding: 32px 24px;
    background: var(--c-cream-deep);
    border: 1px solid var(--c-border);
    border-radius: var(--rad-md);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 22px;
}
.exhale-post__sidebar-block.exhale-newsletter--mini {
    padding: 44px 22px;
    background: var(--c-teal);
    border-radius: var(--rad-md);
    color: var(--c-white);
}
