/* ==========================================================================
   RHA Blog Conversion Upgrade — styles
   Scope: every class is prefixed .rha-  → cannot collide with Webflow/Designer.
   Brand: navy #141a32, gold #c79810 (hover #e0b53d). Lexend headings, Inter body.
   ========================================================================== */

.rha-cta *, .rha-modal *, .rha-np * { box-sizing: border-box; }

/* ---------- shared form primitives ---------- */
.rha-f { display: grid; gap: 10px; }
.rha-f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rha-in {
  width: 100%; padding: 13px 15px; font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 15px; line-height: 1.3; color: #141a32; background: #fff;
  border: 1.5px solid #d7dae3; border-radius: 6px; -webkit-appearance: none; appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rha-in::placeholder { color: #8b90a3; }
.rha-in:focus { outline: none; border-color: #c79810; box-shadow: 0 0 0 3px rgba(199,152,16,.18); }
.rha-in.rha-err { border-color: #c0392b; background: #fff6f5; }

.rha-btn {
  display: block; width: 100%; cursor: pointer; border: 0; border-radius: 6px;
  padding: 15px 22px; font-family: Lexend, Inter, system-ui, sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: .01em; color: #141a32; background: #c79810;
  transition: background .15s ease, transform .1s ease;
}
.rha-btn:hover { background: #e0b53d; }
.rha-btn:active { transform: translateY(1px); }
.rha-btn[disabled] { opacity: .65; cursor: default; }

.rha-fine { font-family: Inter, sans-serif; font-size: 11.5px; line-height: 1.45; color: #6f7488; margin: 2px 0 0; }
.rha-cta .rha-fine { color: rgba(255,255,255,.62); }
.rha-msg { font-family: Inter, sans-serif; font-size: 14px; line-height: 1.5; border-radius: 6px; padding: 12px 14px; margin: 0; }
.rha-msg-ok { background: #eaf8f0; color: #16713c; border: 1px solid #b6e3c9; }
.rha-msg-bad { background: #fdecea; color: #a5281b; border: 1px solid #f3c3bd; }

/* stars / social proof */
.rha-proof { display: flex; align-items: center; gap: 8px; font-family: Inter, sans-serif; font-size: 13px; }
.rha-stars { color: #ffc53d; letter-spacing: 1px; font-size: 14px; }

/* ==========================================================================
   1. Bottom-of-article CTA panel
   ========================================================================== */
.rha-cta {
  position: relative; overflow: hidden; margin: 56px 0 8px; padding: 40px;
  background: #141a32; border-radius: 14px; color: #fff;
  font-family: Inter, system-ui, sans-serif;
}
.rha-cta::before { /* gold top rule */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, #c79810, #e0b53d 55%, #c79810);
}
.rha-cta::after { /* subtle radial depth, never intercepts clicks */
  content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -240px;
  background: radial-gradient(circle, rgba(199,152,16,.16), transparent 68%);
  pointer-events: none;
}
.rha-cta-grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.rha-eyebrow {
  display: inline-block; font-family: Lexend, sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #c79810; margin: 0 0 12px;
}
.rha-cta h2, .rha-cta-title {
  font-family: Lexend, Inter, sans-serif; font-weight: 700; font-size: 30px; line-height: 1.2;
  color: #fff; margin: 0 0 12px; letter-spacing: -.01em;
}
.rha-cta-sub { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0 0 20px; }
.rha-ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.rha-ul li { position: relative; padding-left: 27px; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.9); }
.rha-ul li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(199,152,16,.18);
  /* gold check drawn with a mask so no image request is needed */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c79810' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px 12px; background-repeat: no-repeat; background-position: center;
}
.rha-cta .rha-proof { color: rgba(255,255,255,.72); }

/* cover art */
.rha-cover-wrap { display: flex; justify-content: center; margin: 0 0 18px; }
.rha-cover {
  display: block; width: 168px; max-width: 100%; height: auto; border-radius: 3px;
  box-shadow: 0 18px 38px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.09);
  transform: perspective(900px) rotateY(-11deg); transform-origin: right center;
}
.rha-formcard { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 10px; padding: 22px; }
.rha-formcard h3, .rha-formcard-title {
  font-family: Lexend, sans-serif; font-size: 16px; font-weight: 700; color: #fff;
  margin: 0 0 4px; text-align: center;
}
.rha-formcard .rha-sub2 { font-size: 13px; color: rgba(255,255,255,.6); margin: 0 0 16px; text-align: center; }

@media (max-width: 860px) {
  .rha-cta { padding: 28px 20px; margin: 40px 0 4px; border-radius: 12px; }
  .rha-cta-grid { grid-template-columns: 1fr; gap: 26px; }
  .rha-cta h2, .rha-cta-title { font-size: 23px; }
  .rha-cta-sub { font-size: 14.5px; }
  .rha-cover { width: 128px; transform: none; }
  .rha-formcard { padding: 18px; }
  .rha-f-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   2. Exit-intent modal
   ========================================================================== */
.rha-modal {
  position: fixed; inset: 0; z-index: 2147483000; display: flex; align-items: center;
  justify-content: center; padding: 22px; font-family: Inter, system-ui, sans-serif;
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.rha-modal.rha-open { opacity: 1; visibility: visible; }
.rha-modal-bg { position: absolute; inset: 0; background: rgba(10,13,26,.76); backdrop-filter: blur(3px); }
.rha-modal-box {
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: calc(100vh - 44px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: #141a32; color: #fff; border-radius: 14px; padding: 34px 30px 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); text-align: center;
  transform: translateY(16px) scale(.96); opacity: 0;
  transition: transform .34s cubic-bezier(.16,1,.3,1), opacity .28s ease;
}
.rha-modal.rha-open .rha-modal-box { transform: translateY(0) scale(1); opacity: 1; }
.rha-modal-box::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #c79810, #e0b53d 55%, #c79810);
}
.rha-x {
  position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; border: 0; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.55); font-size: 26px; line-height: 1;
  border-radius: 50%; transition: color .15s ease, background .15s ease;
}
.rha-x:hover { color: #fff; background: rgba(255,255,255,.1); }
.rha-modal-box h2, .rha-modal-title { font-family: Lexend, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.22; margin: 0 0 10px; color: #fff; }
.rha-modal-box .rha-cta-sub { font-size: 14.5px; margin: 0 0 18px; }
.rha-modal-box .rha-f { text-align: left; }
.rha-modal-box .rha-proof { justify-content: center; margin-top: 14px; }
.rha-modal-box .rha-cover { width: 116px; transform: none; margin: 0 auto 16px; }
.rha-modal-box .rha-ul { text-align: left; margin-bottom: 18px; }
.rha-no {
  display: block; width: 100%; margin-top: 10px; padding: 6px; background: none; border: 0;
  cursor: pointer; font-family: Inter, sans-serif; font-size: 12.5px; color: rgba(255,255,255,.45);
  text-decoration: underline;
}
.rha-no:hover { color: rgba(255,255,255,.72); }
html.rha-lock, html.rha-lock body { overflow: hidden; }

@media (max-width: 520px) {
  .rha-modal { padding: 12px; align-items: flex-start; padding-top: 20px; }
  .rha-modal-box { padding: 28px 20px 20px; border-radius: 12px; }
  .rha-modal-box h2, .rha-modal-title { font-size: 20px; }
  .rha-modal-box .rha-cover { width: 96px; margin-bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .rha-modal, .rha-modal-box { transition: none; }
}

/* ==========================================================================
   3. AFR-style newspaper front page — /resources/blog  (v2, 2026-08-04)
   ==========================================================================
   The live page renders on a DARK navy background (#141a32). The paper reads
   best as a light "printed sheet", so we lay our own white surface over the
   dark section rather than fighting inherited colours.
   Hierarchy comes from POSITION + TYPE SCALE + RULES — not from cards/shadows.
   ========================================================================== */

/* The Designer hero is hidden by JS. Top padding is set INLINE by newspaper.js
   to the measured height of the fixed navbar (so the masthead is never behind
   the nav) — deliberately no !important here, or that measurement is ignored. */

.rha-np2 {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: #fff; color: #10142a;
  border-radius: 4px;
  padding: 0 30px 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  --rule: #d8dbe3;
  --rule-strong: #10142a;
  --ink: #10142a;
  --ink-2: #4a4f66;
  --gold: #c79810;
}
.rha-np2 a { text-decoration: none; color: inherit; }
.rha-np2 h2, .rha-np2 h3, .rha-np2 h4 {
  font-family: Lexend, Inter, sans-serif; margin: 0; color: var(--ink);
  letter-spacing: -.018em; font-weight: 700;
}
.rha-np2 h2 a:hover, .rha-np2 h3 a:hover, .rha-np2 h4 a:hover { color: var(--gold); }
.rha-np2 img { display: block; }

/* ---------- masthead strip ---------- */
.rha-mast {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline;
  gap: 14px; padding: 16px 0 10px;
  border-bottom: 3px solid var(--rule-strong);
  margin: 0 0 20px;
}
.rha-mast-l, .rha-mast-r {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #737893; font-weight: 600;
}
.rha-mast-r { text-align: right; }
.rha-mast-c {
  font-family: Lexend, sans-serif; font-weight: 700; font-size: 21px;
  letter-spacing: -.02em; color: var(--ink); white-space: nowrap;
}

/* ---------- kickers / category labels (small, gold, uppercase) ---------- */
.rha-np2 .rha-kicker {
  display: block; font-family: Lexend, sans-serif; font-weight: 700;
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 6px;
}
.rha-deck { font-size: 15.5px; line-height: 1.45; color: var(--ink-2); margin: 10px 0 0; }
.rha-deck-s { font-size: 14px; line-height: 1.45; margin: 8px 0 0; }
.rha-readmore {
  display: inline-block; margin-top: 14px; font-family: Lexend, sans-serif;
  font-weight: 600; font-size: 13px; color: var(--ink);
  border-bottom: 2px solid var(--gold); padding-bottom: 1px;
}
.rha-readmore:hover { color: var(--gold); }

/* ==========================================================================
   opening grid: text-led major | image lead | headline-only rail
   ========================================================================== */
.rha-top {
  display: grid; grid-template-columns: 0.95fr 1.4fr 0.78fr;
  gap: 0 32px; padding-bottom: 26px; margin-bottom: 26px;
  border-bottom: 3px solid var(--rule-strong);
}
.rha-top-c { border-left: 1px solid var(--rule); border-right: 1px solid var(--rule); padding: 0 32px; }
.rha-top-r { padding-left: 0; }

/* AFR pattern 1: dominant image lead.
   NOTE: the CMS artwork is 16:9 / 1.9:1 with the headline BAKED INTO the image.
   Anything squarer than 16/9 crops that text off — keep 16/9 everywhere. */
.rha-lead-media {
  display: block; overflow: hidden; background: #eef0f4;
  aspect-ratio: 16/9; margin: 0 0 12px;
}
.rha-lead-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rha-lead2 h2 { font-size: 31px; line-height: 1.08; margin: 0; }
.rha-lead2 .rha-deck { font-size: 16px; }

/* AFR pattern 2: text-only major headline (no image, competes on scale) */
.rha-major h3 { font-size: 26px; line-height: 1.1; }
/* text stories stacked under the major keep the left column full-height */
.rha-top-l .rha-tstory { padding: 14px 0 0; margin-top: 14px; border-top: 1px solid var(--rule); }
.rha-top-l .rha-tstory h4 { font-size: 18px; line-height: 1.18; }
.rha-top-l .rha-tstory .rha-kicker { font-size: 9.5px; margin-bottom: 4px; }

/* AFR pattern 3: rail — headline-only, thin rules between */
.rha-top-r .rha-sech { margin-bottom: 12px; }
.rha-rail-i { padding: 12px 0; border-top: 1px solid var(--rule); }
.rha-rail-i:first-of-type { border-top: 0; padding-top: 0; }
.rha-rail-i h4 { font-size: 16.5px; line-height: 1.19; }
.rha-rail-i .rha-kicker { font-size: 9.5px; margin-bottom: 4px; }

/* ==========================================================================
   section breaks — thick rule + small uppercase label (AFR)
   ========================================================================== */
.rha-sec { margin: 0 0 30px; }
.rha-sec:last-child { margin-bottom: 14px; }
.rha-sech {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  border-top: 3px solid var(--rule-strong); padding-top: 9px; margin: 0 0 16px;
}
.rha-sech h3 {
  font-family: Lexend, sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.rha-sech span {
  font-size: 11.5px; color: #737893; letter-spacing: .02em; text-align: right;
}

/* ---------- AFR pattern 5: equal image cards, up to 4-up ---------- */
.rha-icards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.rha-icards.rha-cols-1 { grid-template-columns: minmax(0, 420px); }
.rha-icards.rha-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rha-icards.rha-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rha-icard-media { display: block; overflow: hidden; background: #eef0f4; aspect-ratio: 16/9; margin: 0 0 9px; }
.rha-icard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.rha-icard:hover .rha-icard-media img { transform: scale(1.04); }
.rha-icard h4 { font-size: 17px; line-height: 1.2; }

/* ---------- AFR pattern 4: dense two-column text inventory ---------- */
.rha-t2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.rha-t2 .rha-tstory { padding: 15px 0; border-top: 1px solid var(--rule); }
.rha-t2 .rha-tstory:nth-child(1), .rha-t2 .rha-tstory:nth-child(2) { border-top: 0; padding-top: 0; }
.rha-tstory h4 { font-size: 20px; line-height: 1.15; }

/* ---------- compact rows: two columns so the list doesn't sprawl ---------- */
.rha-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.rha-row {
  display: grid; grid-template-columns: 104px 1fr; gap: 14px;
  padding: 13px 0; border-top: 1px solid var(--rule); align-items: start;
}
.rha-row:nth-child(1), .rha-row:nth-child(2) { border-top: 0; padding-top: 0; }
/* odd counts would leave a ragged half-row, so run them as one column */
.rha-rows-odd { grid-template-columns: minmax(0, 1fr); gap: 0; }
.rha-rows-odd .rha-row:nth-child(2) { border-top: 1px solid var(--rule); padding-top: 13px; }
.rha-row-media { overflow: hidden; background: #eef0f4; aspect-ratio: 16/9; }
.rha-row-media img { width: 100%; height: 100%; object-fit: cover; }
.rha-row h4 { font-size: 16px; line-height: 1.2; }
/* dense lists: the gold kicker becomes visual noise when repeated 12x, so it
   drops to a small inline label rather than a full-width bar */
.rha-row .rha-kicker, .rha-rail-i .rha-kicker, .rha-top-l .rha-tstory .rha-kicker {
  display: inline-block; font-size: 9.5px; letter-spacing: .1em;
  color: #a8822a; margin-bottom: 4px;
}

/* ==========================================================================
   DATA POINTS — big gold stat + one-line context
   ========================================================================== */
.rha-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.rha-stat {
  display: flex; flex-direction: column; gap: 7px;
  padding: 4px 22px 6px; border-left: 1px solid var(--rule);
}
.rha-stat:first-child { border-left: 0; padding-left: 0; }
.rha-stat-n {
  font-family: Lexend, sans-serif; font-weight: 700; font-size: 42px; line-height: 1;
  letter-spacing: -.035em; color: var(--gold); font-variant-numeric: tabular-nums;
}
.rha-stat-n em { font-style: normal; font-size: 21px; color: #b9932c; }
.rha-stat-c { font-size: 14px; line-height: 1.35; color: var(--ink); font-weight: 500; }
.rha-stat-l {
  margin-top: auto; font-family: Lexend, sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #8b90a3;
}
.rha-stat:hover .rha-stat-c { color: var(--gold); }

/* ==========================================================================
   RESEARCH SHOWDOWNS
   ========================================================================== */
.rha-sds { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rha-sd {
  display: grid; grid-template-columns: 168px 1fr; gap: 16px; align-items: start;
  padding: 16px; background: #f7f8fb; border-left: 3px solid var(--gold);
}
.rha-sd:hover { background: #f2f3f8; }
.rha-sd-media { display: block; overflow: hidden; background: #e6e9f0; aspect-ratio: 16/9; }
.rha-sd-media img { width: 100%; height: 100%; object-fit: cover; }
.rha-sd-body { display: block; min-width: 0; }
.rha-sd-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 5px 7px; margin: 0 0 8px; }
.rha-sd-chip {
  font-family: Lexend, sans-serif; font-size: 11px; font-weight: 700; color: #10142a;
  background: #fff; border: 1px solid #d8dbe3; border-radius: 3px; padding: 3px 8px;
}
.rha-sd-v { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.rha-sd-t {
  display: block; font-family: Lexend, sans-serif; font-weight: 700; font-size: 17px;
  line-height: 1.18; letter-spacing: -.015em; color: var(--ink);
}
.rha-sd:hover .rha-sd-t { color: var(--gold); }
.rha-sd-s {
  margin-top: 7px; font-size: 13px; line-height: 1.45; color: var(--ink-2);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}

/* ==========================================================================
   PODCAST  (v3, 2026-08-04)
   ==========================================================================
   Same newsprint vocabulary as the rest of the paper: thin rules, no shadows,
   gold accents. The only new visual idea is the play glyph over the artwork,
   which is the one cue that says "this is audio/video, not another article".
   NOTE: every thumbnail is 1280x720 with the episode title BAKED INTO the
   artwork, so the ratio is locked to 16/9 everywhere — 3/2 or 4/3 slices the
   first word off. Same trap as the blog card images. */
.rha-pods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; align-items: start; }
.rha-pods-2 { grid-template-columns: repeat(2, 1fr); }
.rha-pod { display: block; min-width: 0; }
.rha-pod-media {
  position: relative; display: block; overflow: hidden;
  background: #e6e9f0; aspect-ratio: 16/9; margin: 0 0 10px;
}
.rha-pod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.rha-pod:hover .rha-pod-media img { transform: scale(1.04); }
/* subtle play glyph: gold disc, dark triangle, bottom-left so it never covers
   the baked-in headline in the middle of the artwork */
/* The 1px navy ring is not decoration: some thumbnails (e.g. the negative-
   gearing artwork) are gold in the bottom-left corner, and a gold disc on a
   gold field disappears. The ring keeps the glyph legible on ANY artwork. */
.rha-pod-play {
  position: absolute; left: 12px; bottom: 12px; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(199,152,16,.94);
  border: 1px solid rgba(20,26,50,.55);
  box-shadow: 0 2px 10px rgba(16,20,42,.4);
  transition: transform .2s ease, background .2s ease;
}
.rha-pod-play::before {
  content: ''; position: absolute; top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #141a32;
}
.rha-pod:hover .rha-pod-play { transform: scale(1.09); background: #c79810; }
.rha-pod-body { display: block; min-width: 0; }
.rha-pod-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; margin: 0 0 7px; }
.rha-pod-badge {
  font-family: Lexend, sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 2px;
  background: #10142a; color: #fff;
}
/* the two shows read as two mastheads: flagship navy, interview show gold */
.rha-pod-tind { background: var(--gold); color: #141a32; }
/* desktop shows the full show name; the short form is swapped in at mobile */
.rha-pod-short { display: none; }
.rha-pod-ep {
  font-family: Lexend, sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #737893;
}
.rha-pod-t {
  display: block; font-family: Lexend, sans-serif; font-weight: 700; font-size: 17px;
  line-height: 1.2; letter-spacing: -.015em; color: var(--ink);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.rha-pod:hover .rha-pod-t { color: var(--gold); }
.rha-pod-s {
  margin-top: 6px; font-size: 13px; line-height: 1.45; color: var(--ink-2);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
/* header right slot: grey count note + gold "More episodes" link on one line */
.rha-sech-r { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.rha-sech-n { font-size: 11.5px; color: #737893; letter-spacing: .02em; }
.rha-pod-more {
  display: inline-block; font-family: Lexend, sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  white-space: nowrap;
}
.rha-pod-more:hover { color: var(--gold); }
.rha-pod-more span { margin-left: 4px; }

/* ==========================================================================
   gold ebook banner
   ========================================================================== */
.rha-banner {
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  background: linear-gradient(100deg, #c79810 0%, #e0b53d 100%);
  padding: 20px 24px; margin: 0 0 30px;
}
.rha-banner-t { font-family: Lexend, sans-serif; font-weight: 700; font-size: 19px; line-height: 1.25; color: #141a32; margin: 0 0 4px; }
.rha-banner-s { font-family: Inter, sans-serif; font-size: 13.5px; line-height: 1.5; color: rgba(20,26,50,.82); margin: 0; }
.rha-banner-btn {
  display: inline-block; background: #141a32; color: #fff !important;
  font-family: Lexend, sans-serif; font-weight: 600; font-size: 14px;
  padding: 13px 22px; border-radius: 4px; white-space: nowrap;
  transition: background .18s ease;
}
.rha-banner-btn:hover { background: #232c50; }

/* ==========================================================================
   responsive — 390px is a HARD requirement (single column, no overflow)
   ========================================================================== */
@media (max-width: 1100px) {
  .rha-top { grid-template-columns: 1fr 0.8fr; gap: 0 26px; }
  .rha-top-c { order: -1; grid-column: 1 / -1; border: 0; padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid var(--rule); }
  .rha-top-l { border-right: 1px solid var(--rule); padding-right: 26px; }
  .rha-icards, .rha-icards.rha-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .rha-icards.rha-cols-1 { grid-template-columns: minmax(0, 1fr); }
  .rha-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .rha-stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .rha-sds { grid-template-columns: 1fr; }
  /* 3-up podcast strip is too tight below 1100 — drop to 2-up for both
     variants so the 16:9 artwork keeps a readable width. */
  .rha-pods, .rha-pods-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .rha-rows { grid-template-columns: 1fr; gap: 0; }
  .rha-row:nth-child(2) { border-top: 1px solid var(--rule); padding-top: 13px; }
}

@media (max-width: 720px) {
  .rha-np2 { padding: 0 18px 10px; }
  .rha-row { grid-template-columns: 92px 1fr; gap: 12px; }
  .rha-mast { grid-template-columns: 1fr; gap: 4px; text-align: left; padding: 14px 0 9px; }
  .rha-mast-c { font-size: 18px; white-space: normal; }
  .rha-mast-r { text-align: left; }
  .rha-top { grid-template-columns: 1fr; gap: 0; padding-bottom: 20px; margin-bottom: 20px; }
  .rha-top-l { border-right: 0; padding-right: 0; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--rule); }
  .rha-top-c { padding-bottom: 18px; margin-bottom: 18px; }
  .rha-lead2 h2 { font-size: 25px; }
  .rha-major h3 { font-size: 23px; }
  .rha-t2 { grid-template-columns: 1fr; gap: 0; }
  .rha-t2 .rha-tstory:nth-child(2) { border-top: 1px solid var(--rule); padding-top: 15px; }
  .rha-tstory h4 { font-size: 19px; }
  .rha-icards, .rha-icards.rha-cols-1, .rha-icards.rha-cols-2, .rha-icards.rha-cols-3 { grid-template-columns: 1fr; gap: 0; }
  .rha-icard { display: grid; grid-template-columns: 118px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-top: 1px solid var(--rule); }
  .rha-icard:first-child { border-top: 0; padding-top: 0; }
  .rha-icard-media { grid-row: 1 / span 2; margin: 0; aspect-ratio: 16/9; }
  .rha-icard .rha-kicker { align-self: end; margin-bottom: 3px; }
  .rha-icard h4 { font-size: 16.5px; }
  .rha-banner { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .rha-banner-t { font-size: 17px; }
  .rha-banner-s { font-size: 14px; }
  .rha-banner-btn { width: 100%; text-align: center; padding: 15px 22px; }
  /* Data Points: the stat sits ABOVE its context so a long context line can
     never squeeze into a narrow column or make rows wildly uneven. */
  .rha-stats { grid-template-columns: 1fr; gap: 0; }
  .rha-stat { flex-direction: column; align-items: flex-start; gap: 6px; padding: 15px 0; border-left: 0; border-top: 1px solid var(--rule); }
  .rha-stat:first-child { border-top: 0; padding-top: 4px; }
  .rha-stat-n { font-size: 36px; }
  .rha-stat-c { font-size: 15px; line-height: 1.42; }
  .rha-stat-l { display: block; margin-top: 2px; font-size: 10px; }
  /* Showdowns go full-width-image at mobile: side-by-side thumb + 3 chips +
     headline + deck in 390px was the densest, least readable block. */
  .rha-sd { grid-template-columns: 1fr; gap: 12px; padding: 15px; }
  .rha-sd-media { aspect-ratio: 16/9; }
  .rha-sd-t { font-size: 17px; }
  .rha-sd-chips { gap: 6px 8px; margin-bottom: 9px; }
  .rha-sd-chip { font-size: 12px; padding: 4px 9px; }
  .rha-sd-v { font-size: 11px; }
  .rha-sd-s { font-size: 13.5px; -webkit-line-clamp: 2; }
  /* Podcast at mobile: single column, thumb-left rows (same treatment as the
     image cards) so six episodes don't cost six screens of scroll. */
  .rha-pods, .rha-pods-2 { grid-template-columns: 1fr; gap: 0; }
  .rha-pod {
    display: grid; grid-template-columns: 128px 1fr; gap: 14px; align-items: start;
    padding: 14px 0; border-top: 1px solid var(--rule);
  }
  .rha-pod:first-child { border-top: 0; padding-top: 0; }
  .rha-pod-media { margin: 0; }
  .rha-pod-play { left: 7px; bottom: 7px; width: 26px; height: 26px; }
  .rha-pod-play::before { border-width: 5px 0 5px 8px; }
  .rha-pod-meta { gap: 5px 6px; margin-bottom: 5px; }
  .rha-pod-badge { font-size: 9px; padding: 2px 6px; letter-spacing: .08em; }
  /* short show label at mobile so the badge + "Ep N" always fit one line and
     both shows get the SAME meta-row shape (see podCardHTML for why). */
  .rha-pod-full { display: none; }
  .rha-pod-short { display: inline; }
  .rha-pod-meta { flex-wrap: nowrap; }
  .rha-pod-t { font-size: 16px; -webkit-line-clamp: 3; }
  /* the deck is what pushes these rows past a comfortable height at 390px, and
     the headline already carries the episode — hide it, don't shrink it. */
  .rha-pod-s { display: none; }
  /* at mobile the header stacks: label on top, then count + link on one row */
  .rha-sech-r { justify-content: flex-start; gap: 12px; }
  .rha-pod-more { font-size: 11.5px; }
  .rha-sech h3 { font-size: 13px; }
  .rha-sech span { font-size: 11px; color: #6b7089; }
  .rha-np2 .rha-kicker { font-size: 11px; letter-spacing: .1em; }
  .rha-row .rha-kicker, .rha-rail-i .rha-kicker, .rha-top-l .rha-tstory .rha-kicker { font-size: 10.5px; color: #9c7a26; }
}

@media (max-width: 420px) {
  .rha-np2 { padding: 0 14px 8px; border-radius: 0; }
  /* a touch more line-height so long bold headlines don't crowd at 390px */
  .rha-lead2 h2 { font-size: 23px; line-height: 1.16; }
  .rha-major h3 { font-size: 21px; line-height: 1.18; }
  .rha-tstory h4, .rha-icard h4, .rha-rail-i h4, .rha-row h4 { line-height: 1.26; }
  .rha-pod-t { line-height: 1.26; }
  .rha-mast-c { font-size: 17px; }
  .rha-stat-n { font-size: 33px; }
  .rha-icard { grid-template-columns: 104px 1fr; gap: 12px; }
  .rha-row { grid-template-columns: 84px 1fr; gap: 11px; }
  .rha-pod { grid-template-columns: 112px 1fr; gap: 12px; }
}
