/* =========================================================================
   BiblePro — Blog (index + article)
   Built on the design tokens in styles.css (:root). Loaded after styles.css.
   Mobile-first. The articles are fully-static, crawlable HTML for SEO; the
   index renders its list from /blog/posts.json (Google renders JS).
   ========================================================================= */

/* ---------- Light page base for blog ---------- */
.blog-body { background: var(--paper); color: var(--ink); }

/* ---------- Slim sticky header (brand + back home + download) ---------- */
.blog-nav {
  position: sticky; top: 0; z-index: 50;
  padding-top: var(--safe-t, 0px);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.blog-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 64px; }
.blog-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 1.1rem; color: var(--ink); }
.blog-brand img { width: 34px; height: 34px; border-radius: 9px; }
.blog-brand b { color: var(--orange); }
.blog-nav-cta { padding: 9px 18px; font-size: .9rem; }

/* ---------- Article ---------- */
.article-wrap { max-width: 720px; margin-inline: auto;
  padding-left: max(20px, var(--safe-l, 0px)); padding-right: max(20px, var(--safe-r, 0px)); }
.article-head { padding-block: clamp(28px, 7vw, 48px) 0; }
.article-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-text, var(--orange)); }
.article h1 { font-size: clamp(1.7rem, 6vw, 2.5rem); font-weight: 850; letter-spacing: -.025em; line-height: 1.15; margin: 12px 0 0; color: var(--ink); text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 16px; color: var(--ink-3); font-size: .88rem; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }
.article-cover { margin: clamp(20px, 5vw, 30px) 0 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.article-cover img { width: 100%; height: auto; display: block; }

.article-body { padding-block: clamp(22px, 5vw, 32px) clamp(34px, 7vw, 52px); font-size: 1.06rem; line-height: 1.75; color: var(--ink-2); }
.article-body > * + * { margin-top: 1.15em; }
.article-body h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; color: var(--ink); margin-top: 1.8em; }
.article-body h3 { font-size: 1.12rem; font-weight: 750; color: var(--ink); margin-top: 1.5em; }
.article-body p { margin-top: 1.1em; }
.article-body a { color: var(--orange-text, var(--orange-deep)); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.article-body a:hover { color: var(--orange-deep); }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li { margin-top: .5em; }
.article-body li::marker { color: var(--orange); }
.article-body img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line); }

/* "Keep exploring" — curated internal links appended to every article body */
.article-body .bp-more { margin-top: clamp(30px, 6vw, 44px); padding-top: 20px; border-top: 1px solid var(--line); }
.article-body .bp-more h2 { font-size: 1.15rem; font-weight: 800; margin: 0 0 12px; }
.article-body .bp-more ul { padding-left: 1.2em; margin: 0; }
.article-body .bp-more li { margin-top: .4em; }

/* Scripture / pull quote */
.article-body blockquote, .verse {
  margin-top: 1.4em; padding: 16px 20px; border-radius: 14px;
  background: var(--peach); border: 1px solid rgba(255,90,44,.18); border-left: 3px solid var(--orange);
  color: var(--ink); font-size: 1.02rem; line-height: 1.65;
}
.verse cite, .article-body blockquote cite { display: block; margin-top: 6px; font-size: .85rem; color: var(--ink-3); font-style: normal; }

/* Download CTA box inside an article */
.article-cta {
  margin-top: 2em; padding: clamp(22px, 5vw, 30px); border-radius: 20px; text-align: center;
  color: var(--snow); background: linear-gradient(135deg, var(--hero-bg), var(--hero-bg-2));
  border: 1px solid rgba(255,255,255,.08);
}
.article-cta h3 { color: #fff; font-size: 1.25rem; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.article-cta p { margin: 10px 0 0; color: var(--snow-2); font-size: .96rem; }
.article-cta .cta-actions { margin-top: 18px; }
/* The Google Play badge is near-black — add a hairline so it doesn't vanish on the dark CTA */
.article-cta .store-badge.googleplay { border: 1px solid rgba(255,255,255,.16); }
/* The badges are <a> inside .article-body, so the generic article-link rule
   (underline + dark link colour) was leaking onto them — underlining the text and
   making the Google Play label invisible on its dark background. Reset it so the
   badges keep their own white, no-underline styling. */
.article-cta .store-badge { text-decoration: none; }
.article-cta .store-badge:hover { text-decoration: none; }
.article-cta .store-badge small,
.article-cta .store-badge strong { color: #fff; text-decoration: none; }

/* Author / share footer of an article */
.article-foot { border-top: 1px solid var(--line); padding-block: 22px clamp(40px, 8vw, 60px); }
.article-back { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-weight: 600; font-size: .92rem; }
.article-back:hover { color: var(--orange-deep); }
.article-back svg { width: 17px; height: 17px; }

/* ---------- Blog index ---------- */
.blog-hero { background: linear-gradient(180deg, var(--hero-bg), var(--hero-bg-2)); color: var(--snow); padding-block: clamp(48px, 10vw, 88px) clamp(40px, 8vw, 64px); text-align: center; }
.blog-hero .eyebrow { color: var(--orange-2); }
.blog-hero h1 { font-size: clamp(2rem, 7vw, 3rem); font-weight: 850; letter-spacing: -.03em; line-height: 1.1; margin: 12px 0 0; color: #fff; text-wrap: balance; }
.blog-hero p { max-width: 620px; margin: 14px auto 0; color: var(--snow-2); font-size: clamp(1rem, 1.4vw, 1.12rem); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-block: clamp(36px, 6vw, 56px); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
/* Homepage "latest articles": always 4-up so the four newest posts fill one
   clean row (3-up left an ugly orphan). Only 4 or 2 columns — both divide 4
   evenly, so no orphan at any width. ID beats .post-grid, so it needs its own
   breakpoint. */
#homeBlogGrid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { #homeBlogGrid { grid-template-columns: repeat(2, 1fr); } }
/* Phone: keep a 2-up magazine grid (not one giant card per row) with compact cards. */
@media (max-width: 600px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .post-card-body { padding: 12px 12px 14px; gap: 6px; }
  .post-card .tag { font-size: .64rem; letter-spacing: .05em; }
  .post-card h2 { font-size: .95rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .post-card p { display: none; }                       /* excerpt hidden in the tight 2-up grid */
  .post-grid .post-card .post-lang { display: none; }   /* filter chips already signal language */
  .post-card .post-meta { font-size: .72rem; padding-top: 4px; }
}
@media (max-width: 360px) { .post-grid { gap: 10px; } .post-card-body { padding: 10px 10px 12px; } }

.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(255,90,44,.3); }
.post-card-cover { aspect-ratio: 16/9; background: linear-gradient(140deg, var(--hero-bg-2), var(--hero-bg)); overflow: hidden; }
.post-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card .tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-text, var(--orange)); }
.post-card h2 { font-size: 1.12rem; font-weight: 750; letter-spacing: -.01em; line-height: 1.3; color: var(--ink); margin: 0; }
.post-card p { font-size: .9rem; color: var(--ink-2); margin: 0; line-height: 1.55; }
.post-card .post-meta { margin-top: auto; padding-top: 8px; font-size: .8rem; color: var(--ink-3); }
.blog-empty { text-align: center; color: var(--ink-3); padding-block: 40px; }

/* "Load more" pagination — every card is in the DOM (crawlable); overflow is capped
   with display:none so off-screen cover images are never fetched (fast first paint). */
.post-card.is-hidden { display: none; }
.blog-more { display: flex; justify-content: center; margin-top: clamp(22px, 4vw, 32px); }
.blog-more[hidden] { display: none; }
.blog-more-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 26px; border-radius: 999px;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); font-family: inherit; font-size: .95rem;
  font-weight: 700; cursor: pointer; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s, box-shadow .2s; }
.blog-more-btn:hover { border-color: var(--orange); color: var(--orange-text, var(--orange)); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-more-btn span { font-size: .82rem; font-weight: 650; color: var(--ink-3); }
.blog-more-btn:hover span { color: var(--orange-text, var(--orange)); }

/* ---------- Blog index: main + right sidebar (Editor's Picks / Latest / Topics) ---------- */
/* Full-bleed shell on the list page: content + sidebar span the whole viewport
   (fluid edge gutters), so the right sidebar hugs the screen edge on any width. */
.blog-body .container:has(> .blog-layout) {
  max-width: none;
  padding-inline: max(clamp(24px, 3.5vw, 72px), var(--safe-l, 0px)) max(clamp(24px, 3.5vw, 72px), var(--safe-r, 0px));
}
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) clamp(280px, 22vw, 340px); gap: clamp(28px, 3vw, 48px); align-items: start;
  padding-bottom: clamp(56px, 9vw, 100px); }
.blog-main { min-width: 0; }
.blog-main .post-grid { grid-template-columns: repeat(3, 1fr); }
/* Use the extra width on large monitors: 4 cards per row instead of 3. */
@media (min-width: 1560px) { .blog-main .post-grid { grid-template-columns: repeat(4, 1fr); } }
.blog-aside { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 18px; padding-top: clamp(36px, 6vw, 56px); }
@media (max-width: 1040px) {
  .blog-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-aside { position: static; padding-top: 8px; }
  .blog-main .post-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) { .blog-main .post-grid { grid-template-columns: repeat(2, 1fr); } }

.blog-widget { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 18px; box-shadow: var(--shadow-sm); }
.blog-widget h3 { font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 13px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.bw-list { display: flex; flex-direction: column; gap: 12px; }
.bw-item { display: flex; gap: 11px; align-items: flex-start; }
.bw-thumb { flex: none; width: 62px; height: 47px; border-radius: 9px; overflow: hidden; background: linear-gradient(140deg, var(--hero-bg-2), var(--hero-bg)); }
.bw-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bw-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bw-title { font-size: .9rem; font-weight: 650; color: var(--ink); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bw-item:hover .bw-title { color: var(--orange-text, var(--orange)); }
.bw-tag { font-size: .72rem; color: var(--ink-3); }
.bw-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bw-tag-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper-2); color: var(--ink-2); font-size: .86rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.bw-tag-btn:hover { border-color: var(--orange); color: var(--orange-text, var(--orange)); }
.bw-tag-btn span { font-size: .72rem; color: var(--ink-3); background: var(--paper-3); padding: 1px 8px; border-radius: 999px; }

/* Download-the-app card (sidebar) */
.bw-dl { background: linear-gradient(165deg, #fff 0%, rgba(255,122,69,.07) 100%); border-color: rgba(255,122,69,.28); }
.bw-dl h3 { color: var(--orange-text, var(--orange)); border-bottom-color: rgba(255,122,69,.22); }
.bw-dl-pitch { font-size: .86rem; color: var(--ink-2); line-height: 1.6; margin: 0 0 14px; }
.bw-dl-btns { display: grid; gap: 8px; }
.bw-dl-btn { display: flex; align-items: center; gap: 10px; padding: 9px 13px; border-radius: 11px;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); font-size: .84rem; font-weight: 650;
  text-decoration: none; transition: border-color .2s, transform .2s, box-shadow .2s; }
.bw-dl-btn:hover { border-color: var(--orange); transform: translateX(2px); box-shadow: var(--shadow-sm); }
.bw-dl-btn svg { flex: none; width: 19px; height: 19px; color: var(--ink-2); }
.bw-dl-btn:hover svg { color: var(--orange-text, var(--orange)); }
.bw-dl-cta { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px;
  border-radius: 12px; background: linear-gradient(180deg, var(--orange-2), var(--orange)); color: #fff; font-weight: 750;
  font-size: .95rem; text-decoration: none; box-shadow: 0 12px 24px -10px rgba(255,90,44,.6); transition: transform .2s, box-shadow .2s; }
.bw-dl-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255,90,44,.7); }

@media (prefers-reduced-motion: reduce) {
  .post-card { transition: border-color .2s; }
  .post-card:hover { transform: none; }
}

/* =========================================================================
   Injected blog modules (main.js): mid-article CTA · share bar · related
   ========================================================================= */
.article-mid-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 16px; margin: 2.2em 0; padding: 16px 20px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,122,69,.12), rgba(255,122,69,.04));
  border: 1px solid rgba(255,122,69,.35);
}
.article-mid-cta .amc-text { font-weight: 750; color: var(--ink); font-size: 1rem; }
.article-mid-cta .amc-btn {
  flex: none; display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange)); color: #fff; font-weight: 700;
  text-decoration: none; box-shadow: 0 8px 20px -8px rgba(255,90,44,.55); transition: transform .2s, box-shadow .2s;
}
.article-mid-cta .amc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(255,90,44,.65); }

.article-share { margin: 2.6em 0 0; padding-top: 1.8em; border-top: 1px solid var(--line); text-align: center; }
.article-share .share-h { font-weight: 750; color: var(--ink); margin: 0 0 14px; font-size: 1.02rem; }
/* Scoped to .share-btns so the blog's icon-only circular share buttons do NOT
   leak onto the homepage's pill+label share buttons (.share-row in download.css),
   which loads blog.css for its latest-posts widget. */
.share-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.share-btns .share-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer;
  text-decoration: none; transition: transform .18s, box-shadow .18s, color .18s, border-color .18s, background .18s;
}
.share-btns .share-btn svg { width: 20px; height: 20px; }
.share-btns .share-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(0,0,0,.25); color: #fff; border-color: transparent; }
.share-btns .share-btn.facebook:hover { background: #1877F2; }
.share-btns .share-btn.whatsapp:hover { background: #25D366; }
.share-btns .share-btn.telegram:hover { background: #229ED9; }
.share-btns .share-btn.x:hover { background: #000; }
.share-btns .share-btn.email:hover { background: var(--orange); }
.share-btns .share-btn.copy:hover { background: var(--ink); }
.share-btns .share-btn.copied { background: #1E5631; color: #fff; border-color: transparent; }

.article-related { margin: 2.6em 0 0; padding-top: 1.9em; border-top: 1px solid var(--line); }
.article-related .rel-h { font-weight: 800; color: var(--ink); font-size: 1.2rem; letter-spacing: -.01em; margin: 0 0 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.rel-card {
  display: block; text-decoration: none; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -12px rgba(0,0,0,.22); border-color: var(--line-2); }
.rel-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; background: var(--line); }
.rel-card .rel-body { padding: 13px 15px 16px; }
.rel-card .rel-tag { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-text, var(--orange)); }
.rel-card .rel-title { margin: 6px 0 0; font-weight: 750; color: var(--ink); line-height: 1.35; font-size: .98rem; }
@media (max-width: 520px) {
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rel-card .rel-title { font-size: .9rem; }
  .article-mid-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .article-mid-cta .amc-btn { justify-content: center; }
}

/* =========================================================================
   Article page — nav colour fix + desktop sidebar
   ========================================================================= */

/* An ARTICLE page is light from the very top (no dark blog-hero like the index),
   but the shared nav defaults to WHITE text — built for the homepage's dark hero
   — so the brand's plain "主内" was invisible until you scrolled. Give article
   pages the light-mode nav at all times. Scoped with :has(.article) so the blog
   INDEX (white text over its dark hero) is left untouched. */
.blog-body:has(.article) .nav {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px -20px rgba(16,23,38,.3);
}
.blog-body:has(.article) .nav .brand,
.blog-body:has(.article) .nav .lang-current { color: var(--ink); }
.blog-body:has(.article) .nav .nav-link { color: var(--ink-2); }
.blog-body:has(.article) .nav .nav-link:hover { color: var(--ink); background: var(--paper-2); }
.blog-body:has(.article) .nav .lang-btn { background: var(--paper-2); border-color: var(--line-2); color: var(--ink); }
.blog-body:has(.article) .nav .nav-toggle { border-color: var(--line-2); background: var(--paper-2); color: var(--ink); }

/* Desktop only: put the wide empty side margins to work with a sticky sidebar
   (app promo card + on-this-page table of contents). Injected by main.js. */
.article-aside { display: none; }
@media (min-width: 1080px) {
  .blog-body .article {
    display: grid; grid-template-columns: minmax(0, 1fr) clamp(280px, 22vw, 340px); gap: clamp(28px, 3vw, 60px);
    max-width: none; margin-inline: 0; align-items: start;
    padding-inline: max(clamp(24px, 3.5vw, 72px), var(--safe-l, 0px)) max(clamp(24px, 3.5vw, 72px), var(--safe-r, 0px));
  }
  /* Reading column fills the centre track (so on ≤1920px monitors there's no
     empty gap), capped so the line length stays readable on ultra-wide screens
     where it centres with symmetric breathing room. Grid still spans the whole
     viewport, so the rails hug the screen edges. */
  .blog-body .article > .article-wrap { max-width: min(1180px, 100%); margin-inline: auto; padding-inline: 0; }
  .article-aside { display: block; position: sticky; top: 84px; }
}

.aside-app { background: linear-gradient(135deg, var(--hero-bg), var(--hero-bg-2)); color: var(--snow); border-radius: 18px; padding: 20px; border: 1px solid rgba(255,255,255,.08); }
.aside-app-top { display: flex; align-items: center; gap: 12px; }
.aside-app-top img { width: 44px; height: 44px; border-radius: 11px; flex: none; }
.aside-app-top strong { display: block; color: #fff; font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.aside-app-top span { display: block; color: var(--snow-2); font-size: .84rem; margin-top: 1px; }
.aside-app-feats { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.aside-app-feats li { position: relative; padding-left: 22px; color: var(--snow-2); font-size: .87rem; line-height: 1.4; }
.aside-app-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange-2); font-weight: 800; }
.aside-app-btns { margin-top: 18px; display: grid; gap: 10px; }
.aside-app-btns .store-badge { width: 100%; justify-content: center; }
.aside-app-btns .store-badge.googleplay { border: 1px solid rgba(255,255,255,.16); }

.aside-toc { margin-top: 20px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.aside-toc .aside-h { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.aside-toc a { display: block; color: var(--ink-2); text-decoration: none; font-size: .9rem; line-height: 1.35; padding: 6px 0 6px 13px; border-left: 2px solid var(--line); transition: color .15s, border-color .15s; }
.aside-toc a:hover { color: var(--orange-deep); border-color: var(--orange); }

/* At ≥1280px, add a LEFT column listing every article (auto-updates from
   posts.json; current post highlighted). Below 1280px it's hidden and the
   layout stays the 2-column (article + right sidebar) from above. */
.article-nav-list { display: none; }
@media (min-width: 1280px) {
  .blog-body .article { grid-template-columns: clamp(210px, 15vw, 260px) minmax(0, 1fr) clamp(280px, 22vw, 340px); gap: clamp(28px, 2.6vw, 52px); max-width: none; }
  .article-nav-list { display: block; position: sticky; top: 84px; }
}
/* On wide screens the reading column grows toward 1180px, so nudge the type up a
   touch to keep the line comfortable to read at that width. */
@media (min-width: 1500px) {
  .blog-body .article .article-body { font-size: 1.12rem; line-height: 1.8; }
}
.article-nav-list .anl-h { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.anl-scroll { max-height: calc(100vh - 132px); overflow-y: auto; display: block; padding-right: 4px; }
.anl-scroll::-webkit-scrollbar { width: 6px; }
.anl-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.anl-scroll::-webkit-scrollbar-track { background: transparent; }
/* Each article is a clearly separated row: hairline divider at rest so the
   titles don't merge into one block, a left accent bar + tint on hover, and a
   distinct highlight for the article you're reading. */
.anl-item { display: block; position: relative; padding: 11px 10px 11px 14px; color: var(--ink-2); text-decoration: none;
  font-size: .875rem; line-height: 1.45; font-weight: 500; border-radius: 8px;
  border-left: 2px solid transparent; transition: background .15s, color .15s, border-color .15s; }
.anl-item + .anl-item { border-top: 1px solid var(--line); }
.anl-item:hover { background: var(--paper-2); color: var(--orange-deep); border-left-color: var(--orange-2, var(--orange)); }
.anl-item.is-current { background: var(--peach); color: var(--orange-deep); font-weight: 750; border-left-color: var(--orange); border-top-color: transparent; }
.anl-item.is-current + .anl-item { border-top-color: transparent; }

/* Desktop (Windows / macOS) download buttons under the mobile store badges */
.aside-os { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.aside-os-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 8px; border-radius: 11px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; text-decoration: none; font-weight: 650; font-size: .85rem; transition: background .15s, border-color .15s; }
.aside-os-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.aside-os-btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }

/* Today's-verse card injected at the bottom of each article (main.js) → /bible/daily */
.article-daily { margin: 2.8em 0 0; padding: 24px 26px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,122,69,.1), rgba(255,122,69,.03)); border: 1px solid rgba(255,90,44,.22); }
.article-daily .ad-head { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-text, var(--orange)); margin-bottom: 12px; }
.article-daily .ad-verse { display: block; font-size: 1.2rem; line-height: 1.6; font-weight: 600; color: var(--ink); text-decoration: none; }
.article-daily .ad-verse::before { content: "\201C"; }
.article-daily .ad-verse::after { content: "\201D"; }
.article-daily .ad-verse:hover { color: var(--orange-deep); }
.article-daily .ad-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; margin-top: 16px; }
.article-daily .ad-ref { color: var(--ink-3); font-size: .9rem; font-weight: 650; }
.article-daily .ad-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-deep); font-weight: 700; font-size: .92rem; text-decoration: none; transition: gap .2s; }
.article-daily .ad-cta svg { width: 16px; height: 16px; }
.article-daily .ad-cta:hover { gap: 10px; }
