/* ===================================================================
   BLOG CSS — Baptist Digitek /blog/ subdirectory
   Standalone stylesheet (does NOT depend on styles.css)
   =================================================================== */

/* ------ Design tokens (matches main site brand) ------ */
:root {
  --plum: #4B2138;
  --plum-2: #6B3A5F;
  --plum-3: #8B5A7F;
  --cream: #FAF6F1;
  --cream-2: #F5EDE4;
  --cream-3: #EFE4D6;
  --gold: #B28A4A;
  --gold-soft: #C9A876;
  --ink: #2A1420;
  --ink-2: #4A3040;
  --ink-3: #6B5060;
  --line: rgba(75, 33, 56, 0.12);
  --line-strong: rgba(75, 33, 56, 0.22);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono: "Space Mono", "SF Mono", Menlo, Consolas, monospace;

  --max: 1200px;
  --prose: 720px;
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------ Reset + base ------ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold); }

/* ------ Skip link (WCAG 2.4.1) ------ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--plum);
  color: var(--cream);
  padding: 12px 20px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
  color: var(--cream);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ------ Focus rings (WCAG 2.4.7) ------ */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(178, 138, 74, 0.15);
  border-radius: 2px;
}

/* ------ prefers-reduced-motion ------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ------ Layout ------ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

/* ------ Buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: transparent;
}
.btn--primary { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.btn--primary:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-1px); }
.btn--ghost { border-color: var(--plum); color: var(--plum); }
.btn--ghost:hover { background: var(--plum); color: var(--cream); }
.btn--text {
  padding: 8px 0;
  min-height: auto;
  border: none;
  color: var(--plum);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  border-radius: 0;
}
.btn--text:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ===================================================================
   NAV (blog pages)
   =================================================================== */
.bnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.bnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.bnav__brand { display: flex; align-items: center; }
.bnav__brand img { width: 150px; height: 40px; }
.bnav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 900px) {
  .bnav__links { display: flex; }
}
.bnav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}
.bnav__links a:hover, .bnav__links a.is-active { color: var(--plum); }
.bnav__cta {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* ===================================================================
   BREADCRUMBS
   =================================================================== */
.crumbs {
  padding: 20px 0 8px;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.crumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs li:not(:last-child)::after {
  content: "›";
  color: var(--ink-3);
  opacity: 0.6;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--plum); }
.crumbs [aria-current="page"] { color: var(--plum); font-weight: 500; }

/* ===================================================================
   BLOG INDEX PAGE — hero + card grid
   =================================================================== */
.blog-hero {
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--line);
}
.blog-hero__eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 20px;
}
.blog-hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0 0 20px;
  max-width: 900px;
}
.blog-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.blog-hero__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0;
}

/* Card grid */
.blog-grid {
  padding: 60px 0 100px;
}
.blog-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .blog-grid__list { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .blog-grid__list { grid-template-columns: repeat(3, 1fr); } }

.bcard {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.3s var(--ease-out);
}
.bcard:hover { transform: translateY(-4px); }
.bcard--soon { opacity: 0.55; pointer-events: none; }

.bcard__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  margin-bottom: 20px;
}
.bcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.bcard:hover .bcard__img img { transform: scale(1.04); }
.bcard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(75, 33, 56, 0.92);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.bcard__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.bcard__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: var(--ink-3);
  opacity: 0.5;
}
.bcard__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--plum);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.bcard__excerpt {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 16px;
  flex-grow: 1;
}
.bcard__more {
  align-self: flex-start;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum);
  border-bottom: 1.5px solid var(--plum);
  padding-bottom: 2px;
}
.bcard__more:hover { color: var(--gold); border-color: var(--gold); }

/* ===================================================================
   BLOG POST PAGE — hero + prose + FAQ + author bio
   =================================================================== */
.post-hero {
  padding: 32px 0 48px;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 24px;
}
.post-hero__meta span:not(:last-child)::after { content: "·"; margin-left: 12px; opacity: 0.5; }
.post-hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--plum);
  margin: 0 0 24px;
  max-width: var(--prose);
}
.post-hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.post-hero__lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: var(--prose);
  margin: 0 0 32px;
}
.post-hero__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: var(--prose);
  font-size: 0.92rem;
}
.post-hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}
.post-hero__author-info { display: flex; flex-direction: column; gap: 2px; }
.post-hero__author-info strong { color: var(--plum); font-weight: 600; }
.post-hero__author-info span { color: var(--ink-3); font-size: 0.82rem; }

.post-featured {
  margin: 0 auto 60px;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
}
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-featured__credit {
  display: block;
  margin-top: 10px;
  padding: 0 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ------ Prose (article body) ------ */
.prose {
  max-width: var(--prose);
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose > * + * { margin-top: 1.35em; }
.prose h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--plum);
  margin-top: 2.5em;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--plum);
  margin-top: 2em;
  margin-bottom: 0.4em;
}
.prose p { margin: 1.35em 0; }
.prose strong { color: var(--plum); font-weight: 600; }
.prose em { font-style: italic; }
.prose a {
  color: var(--plum);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: all 0.2s var(--ease);
}
.prose a:hover { color: var(--gold); border-color: var(--plum); }
.prose ul, .prose ol {
  padding-left: 1.5em;
  margin: 1.35em 0;
}
.prose li { margin: 0.5em 0; }
.prose ul li::marker { color: var(--gold); }
.prose ol li::marker { color: var(--plum); font-weight: 600; }
.prose blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--plum);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.prose blockquote p { margin: 0; }
.prose blockquote p + p { margin-top: 1em; }
.prose img {
  border-radius: var(--radius-lg);
  margin: 2em auto;
}
.prose figure { margin: 2em 0; }
.prose figcaption {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-align: center;
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 3em auto;
  max-width: 200px;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95rem;
}
.prose th, .prose td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.prose th {
  background: var(--cream-2);
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.01em;
}
.prose code {
  padding: 2px 8px;
  background: var(--cream-2);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 0.9em;
  color: var(--plum);
}

/* ------ Reviewed-by badge (E-E-A-T for health-adjacent posts) ------ */
.reviewed-by {
  max-width: var(--prose);
  margin: 2em auto;
  padding: 20px 24px;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.reviewed-by strong { color: var(--plum); font-weight: 600; }
.reviewed-by__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ------ FAQ block (inside blog posts) ------ */
.faq-block {
  max-width: var(--prose);
  margin: 3em auto;
}
.faq-block h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--plum);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.faq-block details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-block details[open] { padding-bottom: 24px; }
.faq-block summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--plum);
  padding: 4px 0;
  min-height: 44px;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: "+";
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-block details[open] summary::after { transform: rotate(45deg); }
.faq-block details p {
  margin-top: 12px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ------ Author bio card ------ */
.author-bio {
  max-width: var(--prose);
  margin: 4em auto 2em;
  padding: 32px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .author-bio { flex-direction: row; align-items: flex-start; gap: 28px; }
}
.author-bio__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.author-bio__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--plum);
  margin: 0 0 4px;
}
.author-bio__body .role {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.author-bio__body p {
  margin: 0 0 12px;
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 0.95rem;
}
.author-bio__more {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}
.author-bio__more:hover { color: var(--gold); }

/* ------ Related posts strip ------ */
.related {
  max-width: var(--max);
  margin: 60px auto 80px;
  padding: 0 24px;
}
.related__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--plum);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .related__grid { grid-template-columns: repeat(3, 1fr); } }

/* ===================================================================
   BLOG FOOTER
   =================================================================== */
.bfooter {
  background: var(--plum);
  color: var(--cream);
  padding: 60px 0 32px;
}
.bfooter__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .bfooter__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.bfooter__brand img {
  width: 160px;
  height: 42px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.bfooter__brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(250, 246, 241, 0.75);
  margin: 0 0 8px;
}
.bfooter__col h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 20px;
}
.bfooter__col a {
  display: block;
  color: rgba(250, 246, 241, 0.85);
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.bfooter__col a:hover { color: var(--gold-soft); }
.bfooter__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 241, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(250, 246, 241, 0.65);
}
.bfooter__bottom a { color: rgba(250, 246, 241, 0.75); }
.bfooter__bottom a:hover { color: var(--gold-soft); }

/* ===================================================================
   RESPONSIVE — mobile refinements
   =================================================================== */
@media (max-width: 640px) {
  .blog-hero { padding: 24px 0 40px; }
  .blog-grid { padding: 40px 0 60px; }
  .post-hero { padding: 24px 0 32px; }
  .post-featured { margin-bottom: 40px; border-radius: var(--radius); }
  .prose { font-size: 1rem; }
  .prose blockquote { padding: 20px 24px; font-size: 1.05rem; }
  .author-bio { padding: 24px; }
  .bfooter { padding: 48px 0 24px; }
}

/* ===================================================================
   BATCH 2 — Card grid enhancements
   (whole-card link, gradient placeholders, coming-soon overlays, reviewed pill)
   =================================================================== */

/* Whole-card clickable link — click anywhere in the card */
.bcard__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.bcard__link .bcard__title { transition: color 0.2s var(--ease); }
.bcard__link:hover .bcard__title { color: var(--gold); }

/* Default gradient on card image (shows if <img> fails or hasn't uploaded) */
.bcard__img {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-2) 100%);
}

/* Coming-soon gradient variants (6 brand-consistent palettes) */
.bcard__img--v1 { background: linear-gradient(135deg, #4B2138 0%, #6B3A5F 100%); }
.bcard__img--v2 { background: linear-gradient(135deg, #8B5A7F 0%, #B28A4A 100%); }
.bcard__img--v3 { background: linear-gradient(135deg, #4B2138 0%, #C9A876 100%); }
.bcard__img--v4 { background: linear-gradient(135deg, #6B3A5F 0%, #F5EDE4 100%); }
.bcard__img--v5 { background: linear-gradient(135deg, #B28A4A 0%, #4B2138 100%); }
.bcard__img--v6 { background: linear-gradient(135deg, #EFE4D6 0%, #B28A4A 100%); }

/* Coming-soon label — italic Fraunces centered on gradient */
.bcard--soon .bcard__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard--soon .bcard__soon-label {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: rgba(250, 246, 241, 0.92);
  text-align: center;
  padding: 24px;
  letter-spacing: -0.01em;
  z-index: 2;
  line-height: 1.15;
}
/* Darker text on lighter gradient variants (v4, v6) for contrast */
.bcard__img--v4 .bcard__soon-label,
.bcard__img--v6 .bcard__soon-label { color: var(--plum); }

/* Reviewed-by pill in card meta (e.g., skincare post reviewed by Angelin) */
.bcard__reviewed {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(178, 138, 74, 0.12);
  color: var(--plum);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid rgba(178, 138, 74, 0.3);
}

/* Allow meta row to wrap on mobile */
.bcard__meta { flex-wrap: wrap; }

/* ===================================================================
   PRINT (readable article export)
   =================================================================== */
@media print {
  .bnav, .bfooter, .related, .crumbs, .btn { display: none; }
  body { background: white; color: black; }
  .prose { max-width: 100%; font-size: 11pt; line-height: 1.6; }
  .post-hero__title, .prose h2, .prose h3 { color: black; }
  a { color: black; text-decoration: underline; }
}
/* Hide broken image fallback text until images upload */
.bcard__img img, .post-featured img { color: transparent; font-size: 0; }