/* =====================================================================
   Insurance By Heroes — OATH design language
   article.css  ·  handle: ibh-article  (enqueued AFTER the main stylesheet)
   Reading experience + interior/archive/search/404 templates.
   Global tokens (:root) and body base are defined by the main theme
   stylesheet. We only REFERENCE the variables here, never redefine them.

   Token reference (defined globally):
     --obsidian #05070F  --deep #0A1230  --navy #16247A
     --bone #EDEBE4  --bone-dim #9A99A6  --ember #E5252C
     --ember-glow #FF4046  --hairline rgba(237,235,228,.12)
   ---------------------------------------------------------------------
   Body-copy contrast note: --bone-dim (#9A99A6) on --obsidian is fine
   for de-emphasized meta, but fails WCAG-AA for long-form reading. Body
   copy is therefore set on a brightened bone-leaning ink (--ibh-ink)
   which clears AA against the obsidian reading surface.
   ===================================================================== */

:root{
  /* Local, non-conflicting helper tokens (namespaced, never override globals) */
  --ibh-ink:#DAD8D0;              /* readable long-form body on obsidian (AA) */
  --ibh-ink-soft:#B9B7BE;         /* secondary copy, still legible */
  --ibh-surface:rgba(237,235,228,.02);
  --ibh-surface-2:rgba(237,235,228,.04);
  --ibh-measure:68ch;
  --ibh-radius:18px;
  --ibh-radius-sm:12px;
  --ibh-ease:cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   1. LAYOUT SHELL
   ===================================================================== */
.ibh-main{
  padding:132px 24px 0;          /* clears the fixed header */
  position:relative;
}
.ibh-wrap{
  max-width:1180px;
  margin:0 auto;
}

/* =====================================================================
   2. BREADCRUMB
   ===================================================================== */
.ibh-crumb{
  max-width:var(--ibh-measure);
  margin:0 auto 30px;
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--bone-dim);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  line-height:1.5;
}
.ibh-crumb a{
  color:var(--bone-dim);
  text-decoration:none;
  transition:color .25s var(--ibh-ease);
}
.ibh-crumb a:hover{color:var(--bone);}
.ibh-crumb .sep{color:rgba(154,153,166,.5);font-size:10px;}
.ibh-crumb .current{color:var(--bone);}

/* =====================================================================
   3. ARTICLE HERO / TITLE BLOCK
   ===================================================================== */
.ibh-hero{
  max-width:var(--ibh-measure);
  margin:0 auto;
  padding-bottom:34px;
  border-bottom:1px solid var(--hairline);
}
.ibh-kicker{
  display:inline-block;
  font-size:11.5px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--ember-glow);
  font-weight:600;
  margin-bottom:22px;
}
.ibh-kicker a{color:inherit;text-decoration:none;}
.ibh-kicker a:hover{color:var(--ember);}

.ibh-hero h1,
.ibh-title h1{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(32px,5.2vw,58px);
  line-height:1.06;
  letter-spacing:-0.015em;
  font-variation-settings:"opsz" 144,"SOFT" 40,"WONK" 0;
  color:var(--bone);
  text-wrap:balance;
}
.ibh-hero h1 em,
.ibh-title h1 em{
  font-style:italic;
  color:var(--ember-glow);
  font-weight:360;
}
.ibh-dek{
  margin-top:22px;
  max-width:60ch;
  color:var(--ibh-ink-soft);
  font-size:19px;
  line-height:1.6;
  font-weight:400;
}

/* meta / byline row under the title */
.ibh-meta{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px 20px;
  font-size:13px;
  color:var(--bone-dim);
  letter-spacing:.02em;
}
.ibh-meta .dot{width:3px;height:3px;border-radius:50%;background:var(--bone-dim);opacity:.6;}
.ibh-meta time{color:var(--ibh-ink-soft);}
.ibh-meta .read{color:var(--bone-dim);}

/* =====================================================================
   4. FEATURED IMAGE
   ===================================================================== */
.ibh-featured{
  /* On this site the featured image is the author's portrait (articles don't
     render one), so present it as a contained profile hero rather than a
     full-bleed band — shows the whole headshot without cropping the face. */
  max-width:500px;
  margin:40px auto 0;
  border-radius:var(--ibh-radius);
  overflow:hidden;
  border:1px solid var(--hairline);
  background:var(--ibh-surface);
}
.ibh-featured img{
  display:block;
  width:100%;
  height:auto;
}

/* =====================================================================
   5. PROSE — the reading experience
   ===================================================================== */
.ibh-prose{
  max-width:var(--ibh-measure);
  margin:44px auto 0;
  color:var(--ibh-ink);
  font-family:"Archivo",sans-serif;
  font-size:18px;
  line-height:1.75;
  font-variation-settings:"wdth" 100;
}
.ibh-prose > *:first-child{margin-top:0;}

/* paragraphs */
.ibh-prose p{
  margin:0 0 1.5em;
}
.ibh-prose > p:first-of-type{
  /* subtle lead-in on the opening paragraph */
  color:var(--bone);
}

/* headings inside prose */
.ibh-prose h2{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(26px,3.2vw,36px);
  line-height:1.15;
  letter-spacing:-0.01em;
  font-variation-settings:"opsz" 100,"SOFT" 40;
  color:var(--bone);
  margin:1.9em 0 .55em;
  text-wrap:balance;
  scroll-margin-top:110px;
}
.ibh-prose h3{
  font-family:"Fraunces",serif;
  font-weight:460;
  font-size:clamp(21px,2.2vw,26px);
  line-height:1.2;
  font-variation-settings:"opsz" 60,"SOFT" 30;
  color:var(--bone);
  margin:1.7em 0 .5em;
  scroll-margin-top:110px;
}
.ibh-prose h4{
  font-family:"Archivo",sans-serif;
  font-weight:700;
  font-size:16px;
  letter-spacing:.02em;
  color:var(--bone);
  margin:1.6em 0 .5em;
  text-transform:none;
}
.ibh-prose h5,
.ibh-prose h6{
  font-family:"Archivo",sans-serif;
  font-weight:600;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--bone-dim);
  margin:1.6em 0 .5em;
}

/* links */
.ibh-prose a{
  color:var(--bone);
  text-decoration:none;
  border-bottom:1px solid var(--ember);
  padding-bottom:1px;
  transition:color .25s var(--ibh-ease), border-color .25s var(--ibh-ease), background .25s var(--ibh-ease);
}
.ibh-prose a:hover{
  color:var(--ember-glow);
  border-color:var(--ember-glow);
}

/* emphasis */
.ibh-prose strong{color:var(--bone);font-weight:700;}
.ibh-prose em{font-style:italic;}
.ibh-prose mark{background:rgba(229,37,44,.22);color:var(--bone);padding:.05em .25em;border-radius:3px;}
.ibh-prose small{font-size:.82em;color:var(--bone-dim);}
.ibh-prose abbr[title]{text-decoration:underline dotted rgba(237,235,228,.4);cursor:help;}

/* lists */
.ibh-prose ul,
.ibh-prose ol{
  margin:0 0 1.5em;
  padding-left:1.4em;
}
.ibh-prose li{
  margin:0 0 .55em;
  padding-left:.3em;
}
.ibh-prose li::marker{color:var(--ember);}
.ibh-prose ol li::marker{color:var(--ember-glow);font-variant-numeric:tabular-nums;font-weight:600;}
.ibh-prose ul ul,
.ibh-prose ul ol,
.ibh-prose ol ul,
.ibh-prose ol ol{margin:.55em 0 .3em;}
.ibh-prose li > p{margin-bottom:.55em;}

/* definition lists (common in insurance glossaries) */
.ibh-prose dl{margin:0 0 1.5em;}
.ibh-prose dt{font-weight:700;color:var(--bone);margin-top:1em;}
.ibh-prose dd{margin:.25em 0 0;color:var(--ibh-ink-soft);padding-left:1em;}

/* blockquote */
.ibh-prose blockquote{
  margin:1.8em 0;
  padding:6px 0 6px 28px;
  border-left:2px solid var(--ember);
  font-family:"Fraunces",serif;
  font-style:italic;
  font-weight:380;
  font-size:22px;
  line-height:1.5;
  color:var(--bone);
  font-variation-settings:"opsz" 80,"SOFT" 40;
}
.ibh-prose blockquote p{margin-bottom:.6em;}
.ibh-prose blockquote p:last-child{margin-bottom:0;}
.ibh-prose blockquote cite{
  display:block;
  margin-top:.7em;
  font-family:"Archivo",sans-serif;
  font-style:normal;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--bone-dim);
}

/* horizontal rule */
.ibh-prose hr{
  border:0;
  height:1px;
  background:var(--hairline);
  margin:2.4em auto;
  max-width:120px;
}

/* figures & images */
.ibh-prose figure{
  margin:2em 0;
}
.ibh-prose img,
.ibh-prose figure img{
  display:block;
  max-width:100%;
  height:auto;
  border-radius:var(--ibh-radius-sm);
  border:1px solid var(--hairline);
}
.ibh-prose figure.alignwide,
.ibh-prose .alignwide{
  width:min(100%,1000px);
  margin-left:50%;
  transform:translateX(-50%);
}
.ibh-prose figure.alignfull,
.ibh-prose .alignfull{
  width:100vw;
  margin-left:calc(50% - 50vw);
  max-width:100vw;
}
.ibh-prose figcaption{
  margin-top:12px;
  font-size:13.5px;
  line-height:1.5;
  color:var(--bone-dim);
  text-align:center;
  font-style:italic;
}
.ibh-prose .aligncenter{margin-left:auto;margin-right:auto;}
.ibh-prose .alignleft{float:left;margin:.4em 1.6em 1em 0;max-width:50%;}
.ibh-prose .alignright{float:right;margin:.4em 0 1em 1.6em;max-width:50%;}
.ibh-prose .wp-caption{max-width:100%;}

/* =====================================================================
   6. TABLES — insurance comparison tables get first-class treatment
   ===================================================================== */
.ibh-prose .ibh-table-scroll,
.ibh-prose figure.wp-block-table{
  margin:2em 0;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:var(--ibh-radius-sm);
  border:1px solid var(--hairline);
}
.ibh-prose table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
  line-height:1.55;
  color:var(--ibh-ink);
  background:var(--ibh-surface);
  min-width:520px;
}
/* Standalone tables not wrapped in a scroller still look right */
.ibh-prose > table{
  display:block;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius-sm);
}
.ibh-prose thead th{
  background:rgba(22,36,122,.35);
  color:var(--bone);
  font-family:"Archivo",sans-serif;
  font-weight:600;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-align:left;
  padding:14px 18px;
  border-bottom:1px solid var(--hairline);
  white-space:nowrap;
}
.ibh-prose th,
.ibh-prose td{
  padding:13px 18px;
  border-bottom:1px solid var(--hairline);
  border-right:1px solid rgba(237,235,228,.06);
  vertical-align:top;
}
.ibh-prose th:last-child,
.ibh-prose td:last-child{border-right:0;}
.ibh-prose tbody th{
  color:var(--bone);
  font-weight:600;
  background:rgba(237,235,228,.03);
}
.ibh-prose tbody tr:nth-child(even) td{background:rgba(237,235,228,.018);}
.ibh-prose tbody tr:hover td{background:rgba(229,37,44,.05);}
.ibh-prose tbody tr:last-child td,
.ibh-prose tbody tr:last-child th{border-bottom:0;}
.ibh-prose table caption{
  caption-side:top;
  text-align:left;
  padding:0 4px 12px;
  font-size:13px;
  color:var(--bone-dim);
  font-style:italic;
}

/* =====================================================================
   7. CODE
   ===================================================================== */
.ibh-prose code,
.ibh-prose kbd,
.ibh-prose samp{
  font-family:ui-monospace,"SF Mono",Menlo,Consolas,monospace;
  font-size:.86em;
  background:rgba(237,235,228,.06);
  border:1px solid var(--hairline);
  border-radius:5px;
  padding:.12em .4em;
  color:#F6C6C8;
}
.ibh-prose pre{
  margin:1.8em 0;
  padding:20px 22px;
  background:var(--deep);
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius-sm);
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  font-size:14px;
  line-height:1.65;
}
.ibh-prose pre code{
  background:none;
  border:0;
  padding:0;
  color:var(--ibh-ink);
  font-size:inherit;
}
.ibh-prose kbd{
  background:rgba(237,235,228,.08);
  color:var(--bone);
  box-shadow:0 1px 0 rgba(0,0,0,.4);
}

/* =====================================================================
   8. CALLOUT / NOTE (utility class authors can drop into content)
   ===================================================================== */
.ibh-prose .ibh-note,
.ibh-prose .ibh-callout{
  margin:2em 0;
  padding:22px 24px;
  border:1px solid var(--hairline);
  border-left:2px solid var(--ember);
  border-radius:var(--ibh-radius-sm);
  background:var(--ibh-surface-2);
  font-size:16px;
  line-height:1.65;
  color:var(--ibh-ink);
}
.ibh-prose .ibh-note > *:last-child{margin-bottom:0;}
.ibh-prose .ibh-note strong:first-child{color:var(--ember-glow);}

/* =====================================================================
   9. E-E-A-T AUTHOR / REVIEWER BYLINE BLOCK
   ===================================================================== */
.ibh-author{
  max-width:var(--ibh-measure);
  margin:56px auto 0;
  padding:26px 28px;
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius);
  background:var(--ibh-surface);
  display:flex;
  gap:20px;
  align-items:flex-start;
}
.ibh-author__avatar{
  flex:0 0 auto;
  width:60px;height:60px;
  border-radius:50%;
  overflow:hidden;
  border:1px solid var(--hairline);
  background:linear-gradient(135deg,var(--navy),var(--deep));
  display:grid;place-items:center;
}
.ibh-author__avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.ibh-author__avatar .mono{
  font-family:"Fraunces",serif;
  font-size:22px;
  color:var(--bone);
}
.ibh-author__body{min-width:0;}
.ibh-author__label{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--ember-glow);
  font-weight:600;
  margin-bottom:6px;
}
.ibh-author__name{
  font-family:"Fraunces",serif;
  font-size:20px;
  font-weight:460;
  color:var(--bone);
  line-height:1.2;
}
.ibh-author__role{
  margin-top:4px;
  font-size:13.5px;
  color:var(--bone-dim);
  letter-spacing:.02em;
}
.ibh-author__bio{
  margin-top:12px;
  font-size:14.5px;
  line-height:1.6;
  color:var(--ibh-ink-soft);
}

/* =====================================================================
   10. TAGS / POST FOOTER
   ===================================================================== */
.ibh-tags{
  max-width:var(--ibh-measure);
  margin:36px auto 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.ibh-tags .lbl{
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--bone-dim);margin-right:4px;
}
.ibh-tag{
  display:inline-block;
  font-size:12.5px;
  color:var(--ibh-ink-soft);
  text-decoration:none;
  padding:6px 14px;
  border:1px solid var(--hairline);
  border-radius:100px;
  transition:all .25s var(--ibh-ease);
}
.ibh-tag:hover{
  color:var(--bone);
  border-color:rgba(237,235,228,.35);
  background:var(--ibh-surface-2);
}

/* =====================================================================
   11. QUOTE CTA BAND (ember)
   ===================================================================== */
.ibh-cta{
  position:relative;
  margin:80px auto 0;
  max-width:1000px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(229,37,44,.4);
  background:
    radial-gradient(120% 160% at 15% 0%, rgba(229,37,44,.28), transparent 55%),
    radial-gradient(120% 160% at 100% 120%, rgba(22,36,122,.5), transparent 55%),
    linear-gradient(180deg,#0B0D1A,#070810);
  padding:52px 48px;
  text-align:center;
}
.ibh-cta::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(80% 120% at 50% 130%, rgba(229,37,44,.22), transparent 60%);
  pointer-events:none;
}
.ibh-cta > *{position:relative;}
.ibh-cta .k{
  font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--ember-glow);font-weight:600;
}
.ibh-cta h2{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(26px,3.4vw,40px);
  line-height:1.12;
  color:var(--bone);
  margin:16px auto 0;
  max-width:22ch;
  text-wrap:balance;
  font-variation-settings:"opsz" 100,"SOFT" 40;
}
.ibh-cta h2 em{font-style:italic;color:var(--ember-glow);font-weight:360;}
.ibh-cta p{
  margin:16px auto 0;
  max-width:52ch;
  color:var(--ibh-ink-soft);
  font-size:16px;
  line-height:1.65;
}
.ibh-cta .btn-row{margin-top:30px;display:flex;gap:18px;justify-content:center;align-items:center;flex-wrap:wrap;}
/* .btn-ember comes from the global stylesheet; provide a safe fallback */
.ibh-cta .btn-ember{
  display:inline-block;background:var(--ember);color:#fff;text-decoration:none;
  font-weight:600;font-size:14px;letter-spacing:.05em;padding:16px 36px;border-radius:100px;
  box-shadow:0 0 0 0 rgba(229,37,44,.5);transition:box-shadow .4s var(--ibh-ease),transform .3s var(--ibh-ease);
}
.ibh-cta .btn-ember:hover{box-shadow:0 0 44px 4px rgba(229,37,44,.45);transform:translateY(-1px);}
.ibh-cta .btn-quiet{
  color:var(--bone);text-decoration:none;font-size:14px;font-weight:500;
  border-bottom:1px solid rgba(237,235,228,.3);padding-bottom:3px;transition:border-color .3s var(--ibh-ease);
}
.ibh-cta .btn-quiet:hover{border-color:var(--ember);}
.ibh-cta .fine{
  margin-top:22px;font-size:11px;letter-spacing:.04em;color:var(--bone-dim);line-height:1.5;
}

/* =====================================================================
   12. CARD GRID (related posts, archive, search)
   ===================================================================== */
.ibh-section-head{
  max-width:1180px;
  margin:0 auto;
}
.ibh-related{
  max-width:1180px;
  margin:88px auto 0;
}
.ibh-related__head,
.ibh-grid-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  padding-bottom:24px;
  margin-bottom:8px;
  border-bottom:1px solid var(--hairline);
  flex-wrap:wrap;
}
.ibh-related__head .k,
.ibh-grid-head .k{
  font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--bone-dim);
}
.ibh-related__head h2,
.ibh-grid-head h2{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(24px,3vw,34px);
  line-height:1.1;
  color:var(--bone);
  font-variation-settings:"opsz" 100,"SOFT" 40;
}

.ibh-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px;
}
.ibh-grid.cols-2{grid-template-columns:repeat(2,1fr);}
.ibh-grid.cols-4{grid-template-columns:repeat(4,1fr);}

.ibh-card{
  position:relative;
  display:flex;
  flex-direction:column;
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius);
  background:var(--ibh-surface);
  overflow:hidden;
  transition:transform .4s var(--ibh-ease),border-color .4s var(--ibh-ease),background .4s var(--ibh-ease);
}
.ibh-card:hover{
  transform:translateY(-5px);
  border-color:rgba(237,235,228,.28);
  background:var(--ibh-surface-2);
}
.ibh-card__media{
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:linear-gradient(135deg,var(--deep),var(--obsidian));
  border-bottom:1px solid var(--hairline);
}
.ibh-card__media img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s var(--ibh-ease),opacity .4s var(--ibh-ease);
  opacity:.9;
}
.ibh-card:hover .ibh-card__media img{transform:scale(1.04);opacity:1;}
.ibh-card__media--placeholder{
  position:relative;
}
.ibh-card__media--placeholder::after{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(90% 120% at 50% 0%, rgba(22,36,122,.4), transparent 60%);
}
.ibh-card__body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}
.ibh-card__kicker{
  font-size:10.5px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--ember-glow);
  font-weight:600;
  margin-bottom:12px;
}
.ibh-card__kicker a{color:inherit;text-decoration:none;}
.ibh-card__title{
  font-family:"Fraunces",serif;
  font-weight:450;
  font-size:20px;
  line-height:1.22;
  color:var(--bone);
  font-variation-settings:"opsz" 60,"SOFT" 30;
  margin-bottom:10px;
}
.ibh-card__title a{
  color:inherit;
  text-decoration:none;
  background-image:linear-gradient(var(--ember),var(--ember));
  background-size:0% 1px;
  background-position:0 100%;
  background-repeat:no-repeat;
  transition:background-size .35s var(--ibh-ease),color .25s var(--ibh-ease);
  padding-bottom:2px;
}
.ibh-card:hover .ibh-card__title a{color:var(--bone);background-size:100% 1px;}
.ibh-card__excerpt{
  font-size:14.5px;
  line-height:1.6;
  color:var(--ibh-ink-soft);
  margin-bottom:18px;
}
.ibh-card__foot{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  color:var(--bone-dim);
}
.ibh-card__read{
  color:var(--bone);
  text-decoration:none;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.02em;
  display:inline-flex;
  align-items:center;
  gap:7px;
  transition:gap .3s var(--ibh-ease),color .25s var(--ibh-ease);
}
.ibh-card__read .arw{color:var(--ember);transition:transform .3s var(--ibh-ease);}
.ibh-card:hover .ibh-card__read{color:var(--ember-glow);}
.ibh-card:hover .ibh-card__read .arw{transform:translateX(4px);}
/* full-card click target */
.ibh-card__link-overlay{
  position:absolute;inset:0;z-index:1;
  text-indent:-9999px;overflow:hidden;
}
.ibh-card__body a:not(.ibh-card__link-overlay){position:relative;z-index:2;}

/* =====================================================================
   13. ARCHIVE / HUB HEADER
   ===================================================================== */
.ibh-archive-head{
  max-width:820px;
  margin:0 auto 8px;
  text-align:center;
  padding-bottom:44px;
  border-bottom:1px solid var(--hairline);
}
.ibh-archive-head .k{
  font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--bone-dim);
  display:block;margin-bottom:22px;
}
.ibh-archive-head h1{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(34px,5.4vw,60px);
  line-height:1.04;
  letter-spacing:-0.015em;
  color:var(--bone);
  font-variation-settings:"opsz" 144,"SOFT" 40;
  text-wrap:balance;
}
.ibh-archive-head h1 em{font-style:italic;color:var(--ember-glow);font-weight:360;}
.ibh-archive-head .intro{
  margin:20px auto 0;
  max-width:62ch;
  color:var(--ibh-ink-soft);
  font-size:17px;
  line-height:1.7;
}
.ibh-archive-head .count{
  margin-top:20px;
  font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--bone-dim);
}
.ibh-archive-grid{
  max-width:1180px;
  margin:44px auto 0;
}

/* =====================================================================
   14. PAGINATION
   ===================================================================== */
.ibh-pagination{
  max-width:1180px;
  margin:64px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.ibh-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 14px;
  border:1px solid var(--hairline);
  border-radius:100px;
  color:var(--ibh-ink-soft);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  letter-spacing:.02em;
  transition:all .25s var(--ibh-ease);
}
.ibh-pagination a.page-numbers:hover{
  color:var(--bone);
  border-color:rgba(237,235,228,.35);
  background:var(--ibh-surface-2);
}
.ibh-pagination .page-numbers.current{
  background:var(--ember);
  border-color:var(--ember);
  color:#fff;
  font-weight:600;
}
.ibh-pagination .page-numbers.dots{border-color:transparent;background:none;}
.ibh-pagination .page-numbers.prev,
.ibh-pagination .page-numbers.next{
  font-size:13px;letter-spacing:.08em;text-transform:uppercase;font-weight:600;
}

/* single-post prev/next nav */
.ibh-postnav{
  max-width:var(--ibh-measure);
  margin:56px auto 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.ibh-postnav a{
  flex:1 1 240px;
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius-sm);
  padding:16px 20px;
  text-decoration:none;
  transition:border-color .3s var(--ibh-ease),background .3s var(--ibh-ease);
  background:var(--ibh-surface);
}
.ibh-postnav a:hover{border-color:rgba(237,235,228,.3);background:var(--ibh-surface-2);}
.ibh-postnav .lbl{font-size:10.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--bone-dim);}
.ibh-postnav .ttl{margin-top:8px;color:var(--bone);font-family:"Fraunces",serif;font-size:16px;line-height:1.25;}
.ibh-postnav .next-post{text-align:right;}

/* =====================================================================
   15. SEARCH RESULTS HEADER + SEARCH FORM
   ===================================================================== */
.ibh-search-head{
  max-width:820px;
  margin:0 auto 8px;
  text-align:center;
  padding-bottom:40px;
  border-bottom:1px solid var(--hairline);
}
.ibh-search-head .k{
  font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--bone-dim);
  display:block;margin-bottom:20px;
}
.ibh-search-head h1{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(28px,4.4vw,46px);
  line-height:1.08;
  color:var(--bone);
  font-variation-settings:"opsz" 120,"SOFT" 40;
}
.ibh-search-head h1 em{font-style:italic;color:var(--ember-glow);font-weight:360;}
.ibh-search-head .count{margin-top:16px;font-size:14px;color:var(--ibh-ink-soft);}

.ibh-searchform{
  display:flex;
  gap:10px;
  max-width:480px;
  margin:26px auto 0;
}
.ibh-searchform input[type="search"],
.ibh-searchform input[type="text"]{
  flex:1 1 auto;
  background:var(--ibh-surface-2);
  border:1px solid var(--hairline);
  border-radius:100px;
  padding:13px 22px;
  color:var(--bone);
  font-family:"Archivo",sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .25s var(--ibh-ease);
}
.ibh-searchform input::placeholder{color:var(--bone-dim);}
.ibh-searchform input:focus{border-color:var(--ember);}
.ibh-searchform button{
  background:var(--ember);
  color:#fff;
  border:0;
  border-radius:100px;
  padding:0 26px;
  font-family:"Archivo",sans-serif;
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  cursor:pointer;
  transition:box-shadow .35s var(--ibh-ease),transform .3s var(--ibh-ease);
}
.ibh-searchform button:hover{box-shadow:0 0 30px 2px rgba(229,37,44,.4);transform:translateY(-1px);}

/* empty state (no results / empty archive) */
.ibh-empty{
  max-width:var(--ibh-measure);
  margin:48px auto 0;
  text-align:center;
  padding:48px 24px;
  border:1px solid var(--hairline);
  border-radius:var(--ibh-radius);
  background:var(--ibh-surface);
}
.ibh-empty p{color:var(--ibh-ink-soft);font-size:16px;line-height:1.7;margin-bottom:8px;}
.ibh-empty .hint{color:var(--bone-dim);font-size:14px;}

/* =====================================================================
   16. 404
   ===================================================================== */
.ibh-404{
  min-height:calc(100vh - 132px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 24px 100px;
  position:relative;
}
.ibh-404 .code{
  font-family:"Fraunces",serif;
  font-weight:340;
  font-style:italic;
  font-size:clamp(80px,18vw,190px);
  line-height:.9;
  letter-spacing:-0.02em;
  color:transparent;
  background:linear-gradient(100deg,var(--bone) 30%, #F6C6C8 55%, var(--ember-glow) 80%);
  -webkit-background-clip:text;background-clip:text;
  font-variation-settings:"opsz" 144,"SOFT" 60,"WONK" 1;
}
.ibh-404 .k{
  margin-top:8px;
  font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--bone-dim);
}
.ibh-404 h1{
  font-family:"Fraunces",serif;
  font-weight:440;
  font-size:clamp(28px,4.2vw,44px);
  line-height:1.1;
  color:var(--bone);
  margin-top:18px;
  max-width:20ch;
  text-wrap:balance;
  font-variation-settings:"opsz" 120,"SOFT" 40;
}
.ibh-404 h1 em{font-style:italic;color:var(--ember-glow);font-weight:360;}
.ibh-404 p{
  margin-top:18px;
  max-width:52ch;
  color:var(--ibh-ink-soft);
  font-size:17px;
  line-height:1.7;
}
.ibh-404 .row{margin-top:34px;display:flex;gap:18px;justify-content:center;align-items:center;flex-wrap:wrap;}
.ibh-404 .btn-ember{
  display:inline-block;background:var(--ember);color:#fff;text-decoration:none;
  font-weight:600;font-size:14px;letter-spacing:.05em;padding:16px 36px;border-radius:100px;
  transition:box-shadow .4s var(--ibh-ease),transform .3s var(--ibh-ease);
}
.ibh-404 .btn-ember:hover{box-shadow:0 0 44px 4px rgba(229,37,44,.45);transform:translateY(-1px);}
.ibh-404 .btn-quiet{
  color:var(--bone);text-decoration:none;font-size:14px;font-weight:500;
  border-bottom:1px solid rgba(237,235,228,.3);padding-bottom:3px;transition:border-color .3s var(--ibh-ease);
}
.ibh-404 .btn-quiet:hover{border-color:var(--ember);}
.ibh-404 .ibh-searchform{margin-top:34px;}

/* =====================================================================
   17. RESPONSIVE
   ===================================================================== */
@media(max-width:1024px){
  .ibh-grid,
  .ibh-grid.cols-4{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:860px){
  .ibh-main{padding:104px 20px 0;}
  .ibh-prose{font-size:17px;}
  .ibh-cta{padding:40px 26px;margin-top:60px;}
  .ibh-related{margin-top:64px;}
  .ibh-prose .alignleft,
  .ibh-prose .alignright{float:none;margin:1.6em auto;max-width:100%;}
  .ibh-prose figure.alignwide,
  .ibh-prose .alignwide{width:100%;margin-left:0;transform:none;}
}
@media(max-width:640px){
  .ibh-grid,
  .ibh-grid.cols-2,
  .ibh-grid.cols-4{grid-template-columns:1fr;max-width:440px;margin-left:auto;margin-right:auto;}
  .ibh-author{flex-direction:column;gap:16px;}
  .ibh-postnav .next-post{text-align:left;}
  .ibh-hero h1,
  .ibh-title h1{font-size:clamp(28px,8vw,40px);}
}

/* =====================================================================
   18. MOTION SAFETY
   ===================================================================== */
@media(prefers-reduced-motion:reduce){
  .ibh-card,
  .ibh-card__media img,
  .ibh-card__title a,
  .ibh-card__read,
  .ibh-card__read .arw,
  .btn-ember,
  .ibh-searchform button{transition:none;}
  .ibh-card:hover{transform:none;}
  .ibh-card:hover .ibh-card__media img{transform:none;}
}

/* ==========================================================================
   Author pages (designed) — added 2026-08-16
   ========================================================================== */
.ibh-authorpage{
  max-width:var(--ibh-measure,720px);
  margin:8px auto 0;
  display:flex;gap:28px;align-items:center;
  padding:28px 30px;
  border:1px solid var(--hairline);
  border-radius:20px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(22,36,122,.22), transparent 60%),
    rgba(237,235,228,.025);
  position:relative;overflow:hidden;
}
.ibh-authorpage::before{
  content:"";position:absolute;inset:0 auto 0 0;width:3px;
  background:linear-gradient(180deg,var(--ember-glow),transparent);opacity:.8;
}
.ibh-ap-photo{
  flex:0 0 auto;width:118px;height:118px;border-radius:16px;overflow:hidden;
  border:1px solid rgba(237,235,228,.22);
  box-shadow:0 12px 40px rgba(5,7,15,.6);
}
.ibh-ap-photo img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.02) contrast(1.02);}
.ibh-ap-id{min-width:0;}
.ibh-ap-role{
  font-family:"Fraunces",serif;font-style:italic;font-weight:420;
  font-size:clamp(16px,1.7vw,20px);line-height:1.3;color:var(--bone);
  font-variation-settings:"opsz" 60,"SOFT" 30;margin-bottom:14px;
}
.ibh-ap-role em{color:var(--ember-glow);font-style:normal;}
.ibh-chips{display:flex;flex-wrap:wrap;gap:9px;}
.ibh-chip{
  display:inline-flex;align-items:center;gap:7px;
  font-size:11.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:var(--bone);padding:7px 13px;border-radius:100px;
  border:1px solid rgba(237,235,228,.18);background:rgba(237,235,228,.03);
}
.ibh-chip::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--ember-glow);flex:0 0 auto;}
.ibh-ap-link{
  display:inline-flex;align-items:center;gap:8px;margin-top:16px;
  font-size:13px;letter-spacing:.04em;color:var(--bone-dim);text-decoration:none;
  border-bottom:1px solid rgba(237,235,228,.25);padding-bottom:2px;transition:color .25s,border-color .25s;
}
.ibh-ap-link:hover{color:var(--bone);border-color:var(--ember);}

/* At-a-glance spec panel */
.ibh-spec{
  max-width:var(--ibh-measure,720px);margin:40px auto 0;
  border:1px solid var(--hairline);border-radius:18px;overflow:hidden;
  background:rgba(237,235,228,.02);
}
.ibh-spec > h2{
  font-family:"Fraunces",serif;font-weight:440;font-size:15px;letter-spacing:.02em;
  padding:16px 24px;margin:0;border-bottom:1px solid var(--hairline);
  color:var(--bone);text-transform:uppercase;letter-spacing:.16em;font-size:12px;
}
.ibh-spec dl{margin:0;}
.ibh-spec dl > div{
  display:grid;grid-template-columns:minmax(140px,220px) 1fr;gap:18px;
  padding:14px 24px;border-bottom:1px solid rgba(237,235,228,.07);
}
.ibh-spec dl > div:last-child{border-bottom:0;}
.ibh-spec dt{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--bone-dim);}
.ibh-spec dd{margin:0;color:var(--bone);font-size:15px;}
.ibh-spec dd a{color:var(--ember-glow);text-decoration:none;}

/* Areas of focus grid */
.ibh-focus{max-width:var(--ibh-measure,720px);margin:44px auto 0;}
.ibh-focus > h2{
  font-family:"Fraunces",serif;font-weight:440;font-size:clamp(20px,2vw,26px);
  margin-bottom:18px;font-variation-settings:"opsz" 80,"SOFT" 30;
}
.ibh-focus-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
.ibh-focus-grid li{
  position:relative;padding:15px 18px 15px 40px;
  border:1px solid var(--hairline);border-radius:12px;background:rgba(237,235,228,.02);
  color:var(--bone);font-size:14.5px;line-height:1.4;transition:border-color .3s,transform .3s;
}
.ibh-focus-grid li:hover{border-color:rgba(237,235,228,.28);transform:translateY(-2px);}
.ibh-focus-grid li::before{
  content:"";position:absolute;left:16px;top:50%;transform:translateY(-50%);
  width:8px;height:8px;border-radius:2px;
  background:linear-gradient(135deg,var(--ember-glow),var(--navy));
}

/* Author "bio" paragraphs get a touch more room */
.ibh-ap-bio{max-width:var(--ibh-measure,720px);margin:32px auto 0;}

/* ==========================================================================
   Legal / policy document header + polish
   ========================================================================== */
.ibh-hero.ibh-title .ibh-kicker{
  display:block;font-size:12px;letter-spacing:.28em;text-transform:uppercase;
  color:var(--bone-dim);margin-bottom:18px;
}
.ibh-doc-meta{
  max-width:var(--ibh-measure,720px);margin:0 auto 8px;
  font-size:12.5px;letter-spacing:.04em;color:var(--bone-dim);
}
.ibh-doc-meta .ibh-badge{
  display:inline-block;margin-left:10px;padding:3px 10px;border-radius:100px;
  border:1px solid var(--hairline);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--bone);
}

@media(max-width:720px){
  .ibh-authorpage{flex-direction:column;text-align:center;gap:20px;padding:26px 22px;}
  .ibh-authorpage::before{inset:0 0 auto 0;width:auto;height:3px;background:linear-gradient(90deg,var(--ember-glow),transparent);}
  .ibh-chips{justify-content:center;}
  .ibh-ap-photo{width:104px;height:104px;}
  .ibh-focus-grid{grid-template-columns:1fr;}
  .ibh-spec dl > div{grid-template-columns:1fr;gap:4px;}
}

/* ==========================================================================
   About / Who We Are page (page-about.php) — added 2026-08-16
   ========================================================================== */
.about-main{max-width:1120px;}
.about-hero{max-width:820px;margin:6px auto 0;text-align:center;}
.about-hero h1{font-family:"Fraunces",serif;font-size:clamp(38px,6.4vw,84px);font-weight:480;line-height:1.02;letter-spacing:-0.015em;font-variation-settings:"opsz" 144,"SOFT" 40;}
.about-hero h1 .l2{display:block;font-style:italic;font-weight:340;color:transparent;background:linear-gradient(100deg,var(--bone) 30%,#F6C6C8 55%,var(--ember-glow) 78%);-webkit-background-clip:text;background-clip:text;}
.about-dek{margin:28px auto 0;max-width:60ch;color:var(--ibh-ink,#DAD8D0);font-size:18px;line-height:1.72;}

.about-video{margin:52px auto 0;max-width:900px;}
.about-video__frame{position:relative;padding-top:56.25%;border-radius:18px;overflow:hidden;border:1px solid var(--hairline);box-shadow:0 30px 80px rgba(5,7,15,.6);background:#000;}
.about-video__frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.about-video figcaption{margin-top:16px;text-align:center;color:var(--bone-dim);font-size:14px;line-height:1.6;max-width:60ch;margin-left:auto;margin-right:auto;}

.about-section{max-width:960px;margin:76px auto 0;}
.about-section__head{text-align:center;max-width:720px;margin:0 auto 34px;}
.about-section__head h2{font-family:"Fraunces",serif;font-size:clamp(26px,3.4vw,42px);font-weight:420;line-height:1.16;font-variation-settings:"opsz" 100,"SOFT" 40;text-wrap:balance;}
.about-section__head h2 em{font-style:italic;color:var(--ember-glow);}

.about-story__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;max-width:960px;margin:0 auto;}
.about-story__cols p{margin:0;color:var(--ibh-ink,#DAD8D0);font-size:15.5px;line-height:1.72;}
.about-story__cols p::before{content:"";display:block;width:34px;height:2px;background:linear-gradient(90deg,var(--ember),transparent);margin-bottom:16px;}

.about-team__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;}
.about-card{display:flex;gap:22px;align-items:center;padding:24px 26px;border:1px solid var(--hairline);border-radius:20px;background:radial-gradient(120% 160% at 0% 0%,rgba(22,36,122,.22),transparent 60%),rgba(237,235,228,.025);text-decoration:none;position:relative;overflow:hidden;transition:transform .4s ease,border-color .4s ease,background .4s ease;}
.about-card::before{content:"";position:absolute;inset:0 auto 0 0;width:3px;background:linear-gradient(180deg,var(--ember-glow),transparent);opacity:.8;}
.about-card:hover{transform:translateY(-4px);border-color:rgba(237,235,228,.3);background:radial-gradient(120% 160% at 0% 0%,rgba(22,36,122,.3),transparent 60%),rgba(237,235,228,.045);}
.about-card__photo{flex:0 0 auto;width:104px;height:104px;border-radius:16px;overflow:hidden;border:1px solid rgba(237,235,228,.22);box-shadow:0 12px 40px rgba(5,7,15,.6);}
.about-card__photo img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.02) contrast(1.02);}
.about-card__id{min-width:0;display:block;}
.about-card__name{display:block;font-family:"Fraunces",serif;font-size:23px;font-weight:460;color:var(--bone);line-height:1.1;}
.about-card__role{display:block;margin:6px 0 12px;font-size:13px;color:var(--ember-glow);font-style:italic;font-family:"Fraunces",serif;}
.about-card__more{display:inline-flex;gap:7px;margin-top:14px;font-size:12.5px;letter-spacing:.03em;color:var(--bone-dim);transition:color .25s;}
.about-card:hover .about-card__more{color:var(--bone);}
.about-card .ibh-chip{font-size:10.5px;padding:5px 11px;}

.about-oath{max-width:1040px;}
.about-oath__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.about-promise{position:relative;border:1px solid var(--hairline);border-radius:18px;padding:26px 24px 24px;background:rgba(237,235,228,.02);transition:transform .45s ease,border-color .45s ease,background .45s ease;}
.about-promise:hover{transform:translateY(-5px);border-color:rgba(237,235,228,.28);background:rgba(237,235,228,.04);}
.about-promise__n{display:block;font-family:"Fraunces",serif;font-style:italic;font-size:15px;color:var(--ember-glow);letter-spacing:.08em;margin-bottom:12px;}
.about-promise h3{font-family:"Fraunces",serif;font-size:22px;font-weight:450;line-height:1.15;font-variation-settings:"opsz" 60,"SOFT" 30;color:var(--bone);}
.about-promise p{margin-top:11px;color:var(--bone-dim);font-size:14.5px;line-height:1.62;}

.about-cta{max-width:760px;margin:80px auto 40px;text-align:center;padding:52px 30px;border:1px solid var(--hairline);border-radius:22px;background:radial-gradient(120% 140% at 50% 0%,rgba(229,37,44,.14),transparent 62%),rgba(237,235,228,.02);}
.about-cta h2{font-family:"Fraunces",serif;font-size:clamp(24px,3vw,36px);font-weight:430;line-height:1.15;}
.about-cta > p{margin:14px auto 26px;color:var(--bone-dim);font-size:16px;max-width:48ch;}
.about-cta__legal{margin-top:22px;font-size:11.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--bone-dim);line-height:1.8;}
.about-cta__legal small{text-transform:none;letter-spacing:0;font-size:11px;color:#5E5F6E;}

@media(max-width:860px){
  .about-story__cols{grid-template-columns:1fr;gap:20px;max-width:560px;}
  .about-oath__grid{grid-template-columns:1fr;max-width:520px;margin:0 auto;}
}
@media(max-width:720px){
  .about-team__grid{grid-template-columns:1fr;max-width:520px;margin:0 auto;}
  .about-card{flex-direction:column;text-align:center;align-items:center;}
  .about-card::before{inset:0 0 auto 0;width:auto;height:3px;background:linear-gradient(90deg,var(--ember-glow),transparent);}
  .about-card .ibh-chips{justify-content:center;}
}
@media(prefers-reduced-motion:reduce){
  .about-card,.about-promise{transition:none;}
  .about-card:hover,.about-promise:hover{transform:none;}
}

/* ============================================================
   OATH INNER-PAGE DEPTH + ATMOSPHERE  (v1.0.3 override layer)
   Fixes: flat-black void + ragged/off-center section widths.
   article.css loads on inner pages only; atmosphere is scoped
   to body:not(.home) so the homepage keeps its own hero.
   ============================================================ */
:root{
  --ibh-rail:1080px;   /* single shared section rail */
  --ibh-read:720px;    /* reading / text column */
}

/* --- Fixed page-level atmosphere behind all inner pages --- */
body:not(.home)::before{
  content:""; position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    radial-gradient(72% 55% at 50% -10%, rgba(22,36,122,.42), transparent 60%),
    radial-gradient(95% 60% at 50% 114%, rgba(229,37,44,.13), transparent 62%),
    linear-gradient(180deg,#080D1F 0%, var(--obsidian) 46%, #04060E 100%);
}
/* subtle tiled starfield */
body:not(.home)::after{
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.38;
  background-image:
    radial-gradient(1px 1px at 25% 22%, rgba(237,235,228,.55), transparent 100%),
    radial-gradient(1px 1px at 68% 42%, rgba(237,235,228,.4), transparent 100%),
    radial-gradient(1px 1px at 46% 76%, rgba(237,235,228,.32), transparent 100%),
    radial-gradient(1.4px 1.4px at 86% 84%, rgba(237,235,228,.42), transparent 100%),
    radial-gradient(1.3px 1.3px at 14% 62%, rgba(255,64,70,.4), transparent 100%);
  background-size:280px 280px;
}
@media(prefers-reduced-motion:reduce){ body:not(.home)::after{opacity:.28;} }
.ibh-main{position:relative; z-index:1;}
.ft{position:relative; z-index:1;}

/* --- Unify centering: one shared axis for every About section --- */
.about-main{max-width:none; padding-left:0; padding-right:0;}
.about-hero,
.about-video,
.about-section,
.about-oath,
.about-cta{
  max-width:var(--ibh-rail);
  margin-left:auto; margin-right:auto;
  padding-left:24px; padding-right:24px; box-sizing:border-box;
}
.about-hero{max-width:calc(var(--ibh-read) + 48px);}
.about-video{max-width:calc(920px + 48px);}
.about-section__head{max-width:660px; margin-left:auto; margin-right:auto;}
.about-story__cols,
.about-team__grid,
.about-oath__grid{max-width:var(--ibh-rail); margin-left:auto; margin-right:auto;}

/* --- Full-bleed layered bands: section rhythm, not one flat sheet --- */
.about-story,
.about-oath{
  position:relative; max-width:none; width:100vw;
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  padding-top:78px; padding-bottom:78px;
  border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(22,36,122,.20), transparent 62%),
    linear-gradient(180deg, rgba(10,18,48,.6), rgba(5,7,15,.15));
}
.about-story > *,
.about-oath > *{
  max-width:var(--ibh-rail); margin-left:auto; margin-right:auto;
  padding-left:24px; padding-right:24px; box-sizing:border-box;
}
.about-cta{
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(229,37,44,.16), transparent 60%),
    linear-gradient(180deg, rgba(22,36,122,.14), rgba(237,235,228,.02));
  box-shadow:0 30px 80px -40px rgba(229,37,44,.35);
}
/* lift the team cards off the void */
.about-card{box-shadow:0 24px 60px -40px rgba(0,0,0,.9);}

/* ============================================================
   Depth for AUTHOR + LEGAL/GENERIC pages (single.php / page.php)
   ============================================================ */
/* elevate the article title zone so it reads as a header, not floating text */
.ibh-hero{position:relative;}
.ibh-hero::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  bottom:-2px; width:min(100%, var(--ibh-rail)); height:1px;
  background:linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}
/* a soft full-bleed reading band behind long-form so prose isn't on raw black */
.ibh-article{position:relative;}
.ibh-article::before{
  content:""; position:absolute; z-index:-1; top:-40px; bottom:-40px;
  left:calc(50% - 50vw); width:100vw;
  background:radial-gradient(60% 40% at 50% 0%, rgba(22,36,122,.10), transparent 65%);
  pointer-events:none;
}
/* author spec/at-a-glance + focus cards get a touch more elevation */
.ibh-authorcard, .ibh-glance, .ibh-focus li, .about-promise{
  box-shadow:0 24px 60px -46px rgba(0,0,0,.95);
}

/* --- Mobile overflow guards (v1.0.4): media + full-bleed must never exceed viewport --- */
html, body{ overflow-x:hidden; max-width:100%; }
.about-main iframe, .about-video__frame iframe, .ibh-prose iframe,
.about-main img, .ibh-article img, .ibh-prose img{ max-width:100%; }
.about-video__frame iframe{ width:100%; height:auto; aspect-ratio:16/9; display:block; }
/* safer full-bleed: viewport-edge margins, never 100vw (avoids scrollbar overflow) */
.about-story, .about-oath{
  width:auto; max-width:100vw;
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
}
@media(max-width:640px){
  .about-hero, .about-video, .about-section, .about-oath, .about-cta{ padding-left:20px; padding-right:20px; }
  .about-story > *, .about-oath > *{ padding-left:20px; padding-right:20px; }
}

/* --- v1.0.5 mobile overflow hardening --- */
html{ overflow-x:clip; }
@media(max-width:640px){
  /* drop full-bleed on small screens: no 100vw math, no overflow */
  .about-story, .about-oath{ width:auto; max-width:100%; margin-left:0; margin-right:0; padding-left:20px; padding-right:20px; border-radius:0; }
  .about-hero h1, .about-hero .serif{ font-size:clamp(30px,8.4vw,46px); }
  .about-story__cols, .about-team__grid, .about-oath__grid{ grid-template-columns:1fr; }
}

/* ==================================================================
   BlogForge plugin article structure (bf-*) → OATH styling
   The plugin owns the article head/byline/toc/cluster/cta inside
   the_content(); the theme styles those classes. Single title only.
   ================================================================== */
.ibh-article-body .bf-article{max-width:none;}
.ibh-article-body .bf-article-head{padding-bottom:30px;margin:0 0 40px;border-bottom:1px solid var(--hairline);}
.ibh-article-body .bf-kicker{display:inline-block;font-size:11.5px;letter-spacing:.28em;text-transform:uppercase;color:var(--ember-glow);font-weight:600;margin-bottom:20px;}
.ibh-article-body .bf-title{font-family:"Fraunces",serif;font-weight:440;font-size:clamp(33px,5.4vw,60px);line-height:1.05;letter-spacing:-0.015em;font-variation-settings:"opsz" 144,"SOFT" 40,"WONK" 0;color:var(--bone);text-wrap:balance;margin:0;}
.ibh-article-body .bf-article-meta{margin-top:22px;display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;font-size:13px;color:var(--bone-dim);letter-spacing:.02em;}
/* Writer + reviewer E-E-A-T byline with photos + expertise */
.ibh-article-body .bf-byline{margin:0 0 44px;display:grid;grid-template-columns:1fr 1fr;gap:20px 26px;padding:24px 26px;border:1px solid var(--hairline);border-radius:16px;background:linear-gradient(180deg,rgba(22,36,122,.12),rgba(237,235,228,.02));position:relative;}
.ibh-article-body .bf-byline-person{display:flex;gap:15px;align-items:center;}
.ibh-article-body .bf-byline-avatar{width:58px;height:58px;border-radius:50%;object-fit:cover;flex:0 0 auto;border:1px solid rgba(237,235,228,.22);}
.ibh-article-body .bf-byline-role{display:block;font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--bone-dim);margin-bottom:4px;}
.ibh-article-body .bf-byline-name{display:block;font-family:"Fraunces",serif;font-size:18px;color:var(--bone);line-height:1.15;}
.ibh-article-body .bf-byline-cred{display:block;font-size:12.5px;color:var(--ibh-ink-soft);margin-top:3px;line-height:1.4;}
.ibh-article-body .bf-byline-check{color:var(--ember-glow);font-weight:700;margin-left:2px;}
.ibh-article-body .bf-byline-updated{grid-column:1 / -1;font-size:12px;color:var(--bone-dim);border-top:1px solid var(--hairline);padding-top:14px;letter-spacing:.02em;}
/* Lead paragraph */
.ibh-article-body .bf-lead{font-size:20px;line-height:1.62;color:var(--bone);}
/* Table of contents */
.ibh-article-body .bf-toc{margin:0 0 40px;padding:22px 26px;border:1px solid var(--hairline);border-radius:14px;background:linear-gradient(180deg,rgba(22,36,122,.12),rgba(10,18,48,.16));}
.ibh-article-body .bf-toc-title{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--bone-dim);margin-bottom:12px;}
.ibh-article-body .bf-toc ol{margin:0;padding-left:1.3em;color:var(--ibh-ink);}
.ibh-article-body .bf-toc li{margin:7px 0;}
.ibh-article-body .bf-toc a{color:var(--ibh-ink);text-decoration:none;border-bottom:1px solid transparent;}
.ibh-article-body .bf-toc a:hover{color:var(--bone);border-bottom-color:var(--ember);}
/* Table wrap */
.ibh-article-body .bf-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:28px 0;}
/* Cluster index (hub -> spokes) */
.ibh-article-body .bf-cluster-index{margin:56px 0 0;padding:30px 32px;border:1px solid var(--hairline);border-radius:16px;background:linear-gradient(180deg,rgba(10,18,48,.35),rgba(5,7,15,.12));}
.ibh-article-body .bf-cluster-index h2,.ibh-article-body .bf-cluster-index .bf-cluster-title,.ibh-article-body .bf-cluster-index-title{font-family:"Fraunces",serif;font-size:22px;color:var(--bone);margin:0 0 16px;}
.ibh-article-body .bf-cluster-index ul{list-style:none;margin:0;padding:0;}
.ibh-article-body .bf-cluster-index li{border-bottom:1px solid var(--hairline);}
.ibh-article-body .bf-cluster-index a{display:block;color:var(--ibh-ink);text-decoration:none;padding:12px 0;transition:color .2s,padding-left .2s;}
.ibh-article-body .bf-cluster-index a:hover{color:var(--ember-glow);padding-left:6px;}
/* Conversion CTA */
.ibh-article-body .bf-cta{margin:56px 0 0;padding:52px 32px;border-radius:20px;text-align:center;background:radial-gradient(90% 130% at 50% 0%,rgba(22,36,122,.5),transparent 60%),linear-gradient(180deg,#0A1230,#05070F);border:1px solid var(--hairline);}
.ibh-article-body .bf-cta a,.ibh-article-body .bf-cta [data-blogforge-article-cta] a{display:inline-block;background:var(--ember);color:#fff;text-decoration:none;font-weight:600;font-size:14px;letter-spacing:.05em;padding:16px 36px;border-radius:100px;}
@media(max-width:640px){ .ibh-article-body .bf-byline{grid-template-columns:1fr;gap:16px;} }

/* =====================================================================
   ATLAS — article 3-column shell: sticky TOC rail + floating quote card.
   The BlogForge plugin emits the bf-* article internals (styled above);
   this only re-flows the container and adds the two rails. Scoped to
   .ibh-article-main so standard pages are untouched.
   ===================================================================== */
/* The global body uses overflow-x:hidden, which the browser promotes to
   overflow-y:auto and turns <body> into a scroll container — that breaks
   position:sticky for the TOC and quote rails. overflow-x:clip prevents the
   same horizontal overflow WITHOUT creating a scroll container, so the rails
   pin correctly. Scoped to single posts. */
body.single{overflow-x:clip;}
.ibh-article-main{max-width:1180px;margin:0 auto;padding:132px 24px 96px;}
.ibh-article-main .ibh-crumb{max-width:none;margin:0 0 26px;}
.at-article{display:grid;grid-template-columns:190px minmax(0,1fr) 264px;gap:0 44px;align-items:start;}
.at-prose{grid-column:2;min-width:0;max-width:720px;margin:0;}
.at-prose .ibh-article-body{max-width:none !important;margin:0;}
/* sticky left TOC rail — built client-side from the article's H2 headings */
.at-toc{grid-column:1;position:sticky;top:130px;align-self:start;font-size:13px;}
.at-toc[hidden]{display:none;}
.at-toc .t{font-size:10.5px;letter-spacing:.26em;text-transform:uppercase;color:var(--bone-dim);margin-bottom:14px;}
.at-toc ol{list-style:none;margin:0;padding:0;counter-reset:t;}
.at-toc li{counter-increment:t;margin:0;}
.at-toc a{display:block;padding:8px 0 8px 26px;position:relative;color:var(--bone-dim);text-decoration:none;border-left:1px solid var(--hairline);transition:color .2s,border-color .2s;line-height:1.35;}
.at-toc a::before{content:counter(t,decimal-leading-zero);position:absolute;left:0;top:8px;font-size:10px;color:rgba(154,153,166,.6);font-variant-numeric:tabular-nums;}
.at-toc a:hover,.at-toc a.on{color:var(--bone);border-left-color:var(--ember);}
/* sticky right quote card — floats down the page like the TOC rail */
.at-aside{grid-column:3;align-self:stretch;}
.at-keycard{position:sticky;top:130px;border:1px solid var(--hairline);border-radius:16px;padding:24px;background:radial-gradient(120% 90% at 50% 0%,rgba(22,36,122,.22),transparent 65%),rgba(237,235,228,.02);}
.at-keycard .t{font-size:10.5px;letter-spacing:.24em;text-transform:uppercase;color:var(--bone-dim);margin-bottom:14px;}
.at-keycard ul{list-style:none;margin:0 0 18px;padding:0;}
.at-keycard li{display:flex;gap:10px;align-items:flex-start;padding:9px 0;border-top:1px solid var(--hairline);font-size:14px;color:var(--ibh-ink);line-height:1.4;}
.at-keycard li:first-child{border-top:0;}
.at-keycard li::before{content:"";flex:0 0 auto;width:6px;height:6px;margin-top:6px;border-radius:50%;background:var(--ember);box-shadow:0 0 8px 1px rgba(229,37,44,.5);}
.at-keycard .q{display:block;text-align:center;background:var(--ember);color:#fff;text-decoration:none;font-weight:600;font-size:13.5px;letter-spacing:.04em;padding:14px;border-radius:100px;transition:box-shadow .3s;}
.at-keycard .q:hover{box-shadow:0 0 30px 2px rgba(229,37,44,.4);}
/* when the rail is present, hide the plugin's inline TOC to avoid duplicates */
.at-article .bf-toc{display:none;}
@media(max-width:980px){
  .ibh-article-main{padding-left:20px;padding-right:20px;}
  .at-article{grid-template-columns:1fr;gap:0;}
  .at-toc{display:none;}
  .at-prose{grid-column:1;max-width:none;}
  .at-aside{grid-column:1;align-self:auto;}
  .at-keycard{position:static;margin-top:36px;}
}

/* ATLAS: keep the two-up byline names on one line inside the narrower
   reading column (the 3-rail layout is tighter than a full-width article). */
.at-article .ibh-article-body .bf-byline{gap:16px 22px;padding:22px 24px;}
.at-article .ibh-article-body .bf-byline-person{gap:13px;}
.at-article .ibh-article-body .bf-byline-avatar{width:52px;height:52px;}
.at-article .ibh-article-body .bf-byline-name{font-size:16px;}

/* =====================================================================
   ABOUT · "The Network" — scale-forward, deliberately understated.
   Two named leads (real), a constellation that implies a wider bench
   without naming faces, and stats that are all true.
   ===================================================================== */
.about-network__lead{max-width:640px;margin:18px auto 0;text-align:center;color:var(--ibh-ink-soft);font-size:17px;line-height:1.62;}
.about-constellation{position:relative;max-width:var(--ibh-rail);margin:46px auto 0;height:230px;border:1px solid var(--hairline);border-radius:20px;overflow:hidden;
  background:radial-gradient(120% 140% at 50% 0%,rgba(22,36,122,.30),transparent 62%),linear-gradient(180deg,rgba(10,18,48,.55),rgba(5,7,15,.22));}
.about-constellation__svg{position:absolute;inset:0;width:100%;height:100%;display:block;}
.about-constellation .edge{stroke:rgba(237,235,228,.15);stroke-width:1;}
.about-constellation .dust circle,.about-constellation .dust{fill:rgba(237,235,228,.28);}
.about-constellation .node{fill:var(--bone);}
.about-constellation .node--ember{fill:var(--ember-glow);}
.about-constellation .glow{fill:var(--ember-glow);opacity:0;animation:ibhPulse 4.8s ease-in-out infinite;}
.about-constellation .glow--b{fill:#EDEBE4;animation-duration:6s;animation-delay:1.6s;}
.about-constellation .glow:nth-of-type(3){animation-delay:2.8s;}
@keyframes ibhPulse{0%,100%{opacity:0;}50%{opacity:.30;}}
.about-constellation__label{position:absolute;left:50%;bottom:16px;transform:translateX(-50%);font-size:10.5px;letter-spacing:.34em;text-transform:uppercase;color:var(--bone-dim);pointer-events:none;}
@media(prefers-reduced-motion:reduce){.about-constellation .glow{animation:none;opacity:.16;}}

.about-scale{max-width:var(--ibh-rail);margin:24px auto 0;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;padding:0 24px;box-sizing:border-box;}
.about-scale__stat{border:1px solid var(--hairline);border-radius:14px;padding:22px 18px;background:rgba(237,235,228,.02);text-align:center;}
.about-scale__stat .n{display:block;font-family:"Fraunces",serif;font-weight:500;font-size:34px;line-height:1;color:var(--bone);}
.about-scale__stat .n .plus{font-size:15px;color:var(--ember-glow);margin-left:3px;letter-spacing:.02em;}
.about-scale__stat .l{display:block;margin-top:11px;font-size:12px;letter-spacing:.02em;color:var(--ibh-ink-soft);line-height:1.35;}

.about-team__label{max-width:var(--ibh-rail);margin:48px auto 0;padding:0 24px;box-sizing:border-box;text-align:center;font-size:10.5px;letter-spacing:.28em;text-transform:uppercase;color:var(--bone-dim);}
.about-network .about-team__grid{margin-top:18px;}
@media(max-width:860px){ .about-scale{grid-template-columns:repeat(2,1fr);} .about-constellation{height:200px;} }


/* US coverage map — every covered state filled, NY left dark. */
.about-usmap{position:relative;max-width:var(--ibh-rail);margin:46px auto 0;height:440px;border:1px solid var(--hairline);border-radius:20px;overflow:hidden;
  background:radial-gradient(120% 140% at 50% 0%,rgba(22,36,122,.30),transparent 62%),linear-gradient(180deg,rgba(10,18,48,.55),rgba(5,7,15,.22));}
.about-usmap__svg{position:absolute;inset:0;width:100%;height:100%;display:block;}
.about-usmap .state{stroke-width:.7;stroke-linejoin:round;transition:fill-opacity .22s ease,stroke .22s ease,filter .22s ease;}
.about-usmap .state--on{fill:url(#ibhcov);fill-opacity:.28;stroke:rgba(255,120,124,.32);cursor:pointer;}
.about-usmap .state--on:hover,.about-usmap .state--on.is-hot{fill-opacity:.96;stroke:rgba(255,168,172,.95);filter:drop-shadow(0 0 9px rgba(240,52,58,.55));}
.about-usmap .state--off{fill:rgba(237,235,228,.02);stroke:rgba(154,153,166,.34);cursor:default;}
.about-usmap .state--off:hover,.about-usmap .state--off.is-hot{fill:rgba(237,235,228,.05);stroke:rgba(154,153,166,.6);}
.about-usmap .dc-dot{fill-opacity:.55;stroke:rgba(255,120,124,.6);stroke-width:1.2;}
.about-usmap__tip[hidden]{display:none;}
.about-usmap__tip{position:absolute;z-index:6;pointer-events:none;min-width:200px;background:rgba(9,12,24,.95);border:1px solid rgba(237,235,228,.16);border-top:2px solid rgba(237,28,36,.6);border-radius:10px;padding:12px 16px 11px;display:flex;flex-direction:column;box-shadow:0 12px 34px rgba(0,0,0,.5);}
.about-usmap__tip .t-n{font-family:"Fraunces",Georgia,serif;font-size:17px;font-weight:600;color:#EDEBE4;line-height:1.15;padding-bottom:7px;margin-bottom:7px;border-bottom:1px solid rgba(237,235,228,.12);}
.about-usmap__tip .t-row{display:flex;justify-content:space-between;gap:14px;font-family:"Archivo",sans-serif;font-size:12.5px;line-height:1.7;white-space:nowrap;}
.about-usmap__tip .t-lab{color:#9A99A6;}
.about-usmap__tip .t-val{color:#EDEBE4;font-weight:600;letter-spacing:.03em;font-variant-numeric:tabular-nums;}
.about-usmap__tip .t-lab.t-off{color:#9A99A6;font-style:italic;}
.about-usmap__cap{max-width:var(--ibh-rail);margin:16px auto 0;padding:0 24px;box-sizing:border-box;text-align:center;font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--bone-dim);}
@media(max-width:860px){ .about-usmap{height:300px;} }

/* Two-line quote CTA in the article keycard (2026-08-18) */
.at-aside .q{display:flex;flex-direction:column;align-items:center;gap:1px;line-height:1.2;padding:11px 14px;}
.at-aside .q .cta-note{font-size:10px;font-weight:500;letter-spacing:.06em;opacity:.82;white-space:nowrap;}

/* Hub pages publish as WP pages: page.php's generic hero would double the
   title above the plugin's bf-article head. When plugin decoration is
   present, the plugin owns the title. (2026-08-18) */
.ibh-article:has(.bf-article) .ibh-hero{display:none}

/* Legacy .com editorial components use light surfaces. Keep their text and
   links readable inside Oath's otherwise light-on-dark article palette. */
.ibh-prose .ibh-trust-box,
.ibh-prose .ibh-trust-box :where(p,strong,small,li),
.ibh-prose .ibh-bottom-line,
.ibh-prose .ibh-bottom-line :where(p,strong,small,li){color:#142033;}
.ibh-prose .ibh-trust-box a,
.ibh-prose .ibh-bottom-line a{color:#8f1d24;border-bottom-color:#c8292f;}
.ibh-prose .ibh-trust-box a:hover,
.ibh-prose .ibh-bottom-line a:hover{color:#68151a;border-bottom-color:#68151a;}

/* Gravity Forms' Orbital theme assumes a light page. The existing .com quote
   funnel remains unchanged; only restore readable labels on Oath's dark page. */
.ibh-prose .gform_wrapper .gfield_label,
.ibh-prose .gform_wrapper .gform-field-label,
.ibh-prose .gform_wrapper legend{color:var(--bone) !important;}
.ibh-prose .gform_wrapper .gf_progressbar_title,
.ibh-prose .gform_wrapper .gfield_description,
.ibh-prose .gform_wrapper .gform_fileupload_rules{color:var(--bone-dim) !important;}
.ibh-prose .gform_wrapper .gfield_required{color:#ff686d !important;}

/* Some legacy posts are not wrapped by BlogForge's full article decorator.
   single.php supplies their missing H1 without changing stored post content. */
.ibh-single-fallback-title{margin:0 0 34px;}
.ibh-single-fallback-title h1{margin:0;color:var(--bone);font-family:"Archivo",sans-serif;font-size:clamp(32px,4vw,42px);font-weight:750;line-height:1.38;letter-spacing:0;text-wrap:balance;}
