/* Passive Investments — static site stylesheet (Carson's Corner design: white / black / gold, system sans, rounded cards) */
/* masthead bar hidden site-wide (2026-09-11) */
.masthead { display: none; }
/* Blog link removed from main nav site-wide (2026-09-12); /blog/ URLs remain live */
.site-nav .nav-links a[href="/blog/"] { display: none; }
:root {
  --bg: #ffffff;
  --bg-2: #f4f4f4;
  --card: #fafafa;
  --ink: #0f0f0f;
  --ink-soft: #2a2a2a;
  --ink-mute: #5b5b5b;
  --paper: #ffffff;
  --paper-warm: #fafafa;
    --rule: #dcdcdc;
  --rule-faint: #ececec;
  --accent: #B8962E;
  --accent-2: #8A6F1F;
  --accent-soft: #8A6F1F;
  --gold: #B8962E;
  --gold-line: rgba(184,150,46,.30);
  --serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  --radius: 12px;
  --radius-lg: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #0f0f0f; }
img { max-width: 100%; height: auto; }
a { color: var(--accent-2); }
a:hover { text-decoration: underline; }

/* ---------- TOP NAV ---------- */
.site-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 5vw, 68px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--gold-line);
  position: sticky; top: 0; z-index: 50;
  font-family: var(--sans);
  -webkit-backdrop-filter: saturate(180%) blur(8px); backdrop-filter: saturate(180%) blur(8px);
}
.site-nav .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.site-nav .nav-logo:hover { text-decoration: none; }
.site-nav .nav-logo img { height: 30px; width: auto; display: block; }
.site-nav .nav-logo span { font-weight: 800; font-size: 16.8px; letter-spacing: .04em; }
.site-nav .nav-logo span em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: #55606e; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); text-decoration: none; border-bottom: 0; }
.nav-links a.nav-cta { background: var(--accent); color: #fff; padding: 8px 18px; border-radius: 4px; border: 0; }
.nav-links a.nav-cta:hover { color: #fff; opacity: .9; }
.nav-toggle { display: none; }
@media (max-width: 1180px) {
  .site-nav { flex-wrap: wrap; position: sticky; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; cursor: pointer; margin-left: auto; }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .nav-links { display: none; }
  .site-nav.nav-open .nav-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; border-top: 1px solid var(--gold-line); padding: 6px 0; }
  .site-nav.nav-open .nav-links a { display: block; width: 100%; padding: 14px 4px; border-bottom: 0; }
  .site-nav.nav-open .nav-links a.nav-cta { width: auto; margin: 12px 0; }
  .site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- MASTHEAD ---------- */
.masthead { border-bottom: 1px solid var(--rule); padding: 22px 0 18px; background: var(--bg); }
.masthead-inner { max-width: 1200px; margin: 0 auto; padding: 0 6vw; display: flex; align-items: baseline; justify-content: space-between; gap: 32px; }
.masthead-brand { font-weight: 800; font-size: 22px; letter-spacing: .02em; color: var(--ink); text-decoration: none; }
.masthead-brand:hover { text-decoration: none; }
.masthead-brand em { font-style: normal; font-weight: 800; color: var(--accent); }
.masthead-meta { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: #55606e; font-weight: 600; }
.masthead-meta span { margin: 0 10px; color: var(--accent); }

/* ---------- HERO ---------- */
.hero { max-width: 1200px; margin: 0 auto; padding: 56px 6vw 40px; border-bottom: 1px solid var(--rule); }
.kicker { font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.kicker::before { display: none; }
h1.hero-title { font-weight: 800; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; max-width: 26ch; }
h1.hero-title em { font-style: normal; font-weight: 800; color: var(--accent); }
.hero-deck { font-size: 18px; line-height: 1.65; color: var(--ink-mute); max-width: 74ch; margin-bottom: 26px; }
.hero-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-mute); padding: 4px 0 0; max-width: 100%; }
.hero-byline > * { display: inline-block; background: #f0f0f0; border: 1px solid var(--rule); color: var(--ink-mute); border-radius: 999px; padding: 3px 10px; font-size: 12px; }
.hero-byline strong { color: var(--ink); font-weight: 700; }
.hero-byline span { display: inline; background: none; border: 0; padding: 0 2px; color: var(--accent); }
.hero-image { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.hero-image img { width: 100%; display: block; margin-top: 32px; border-radius: var(--radius-lg); border: 1px solid var(--rule); }

/* ---------- ARTICLE LAYOUT ---------- */
.article { max-width: 1200px; margin: 0 auto; padding: 20px 6vw 80px; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 48px; }
.article.no-toc { grid-template-columns: minmax(0, 1fr); max-width: 960px; }
.article.wide { grid-template-columns: minmax(0, 1fr); max-width: 1200px; }
.toc { position: sticky; top: 84px; align-self: start; max-height: calc(100vh - 100px); overflow: auto; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 18px 20px; margin-top: 24px; }
.toc-label { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; padding-bottom: 0; border-bottom: 0; text-transform: none; letter-spacing: 0; }
.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; margin: 0; font-size: 15px; line-height: 1.4; }
.toc li a { color: var(--ink); text-decoration: none; display: flex; gap: 6px; padding: 4px 0; }
.toc li a::before { content: counter(toc) "."; font-size: 15px; color: var(--ink); flex: none; padding: 0; font-family: inherit; }
.toc li a:hover { color: var(--accent); text-decoration: none; }

/* ---------- PROSE ---------- */
.prose { min-width: 0; }
.prose p { margin-bottom: 20px; }
.prose p.lead { font-size: 18px; line-height: 1.65; font-weight: 400; color: var(--ink-mute); margin-bottom: 28px; max-width: 74ch; }
.prose h2 { font-weight: 700; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.2; letter-spacing: -0.01em; margin: 40px 0 14px; padding: 0 0 0 12px; border-top: 0; border-left: 4px solid var(--accent); scroll-margin-top: 90px; }
.prose h3 { font-weight: 700; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.3; margin: 28px 0 10px; }
.prose h4 { font-size: 18px; font-weight: 700; margin: 18px 0 8px; color: var(--accent-2); text-transform: none; letter-spacing: 0; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--accent-2); text-decoration: none; border-bottom: 0; }
.prose a:hover { text-decoration: underline; background: none; }
.prose ul, .prose ol { padding-left: 0; list-style: none; margin-bottom: 20px; }
.prose ul li { padding-left: 22px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prose ol { counter-reset: list; }
.prose ol li { counter-increment: list; padding-left: 32px; position: relative; margin-bottom: 10px; }
.prose ol li::before { content: counter(list); position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #0f0f0f; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: inherit; }
.prose ul ul, .prose ol ol, .prose ul ol, .prose ol ul { margin: 8px 0 0; }
.prose blockquote { margin: 24px 0; padding: 16px 20px; background: linear-gradient(180deg, rgba(184,150,46,.08), transparent); border: 1px solid #FAF6EA; border-left: 4px solid var(--accent); border-radius: var(--radius); font-style: normal; }
.prose img { display: block; margin: 28px auto; border-radius: var(--radius); }
.prose figure { margin: 28px 0; }
.prose figcaption { font-size: 13px; color: var(--ink-mute); margin-top: 10px; }
.prose hr { border: 0; border-top: 1px dashed var(--rule); margin: 30px 0; }
.prose iframe { max-width: 100%; }
.prose .video-wrap, .prose .embed { position: relative; padding-top: 56.25%; margin: 28px 0; background: var(--ink); border-radius: var(--radius); overflow: hidden; }
.prose .video-wrap iframe, .prose .embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 14px 0 28px; background: var(--card); border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; }
.prose thead th { text-align: left; padding: 10px 12px; font-weight: 700; border-bottom: 1px solid var(--rule); font-size: 15px; text-transform: none; letter-spacing: 0; background: #0f0f0f; color: #fff; }
.prose thead th:first-child, .prose tbody td:first-child { padding-left: 12px; }
.prose tbody td { padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; line-height: 1.5; }
.prose tbody tr:hover { background: var(--bg-2); }
.prose .table-wrap { overflow-x: auto; border-radius: 10px; }
.prose code { background: #f0f0f0; padding: 2px 6px; border-radius: 6px; color: var(--accent); font-size: 14px; }
.prose details { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 14px 18px; margin: 10px 0; }
.prose details[open] { background: var(--bg-2); }
.prose summary { cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.prose summary::-webkit-details-marker { display: none; }
.prose summary::before { content: "Q "; color: var(--accent); font-weight: 800; }

/* ---------- LEGACY CONTENT WRAPPER (.wpc) — sensible defaults for imported markup ---------- */
.wpc { min-width: 0; overflow-wrap: anywhere; }
.wpc > header, .wpc header.hero { margin: 0 0 32px; padding: 0 0 24px; border-bottom: 1px solid var(--rule); background: none; }
.wpc .wrap, .wpc main, .wpc .container { max-width: none; padding-left: 0; padding-right: 0; }
.wpc table { display: table; }
.wpc iframe[src*="vimeo"], .wpc iframe[src*="youtube"], .wpc iframe[src*="spotify"] { width: 100%; }
.wpc .pi-vid__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.wpc .pi-vid__card { margin: 0; }
.wpc .pi-vid__btn { display: block; width: 100%; border: 0; padding: 0; background: var(--ink); cursor: pointer; position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); }
.wpc .pi-vid__btn img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; border-radius: 0; }
.wpc .pi-vid__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.wpc .pi-vid__play svg { width: 26px; height: 26px; fill: #0f0f0f; }
.wpc .pi-vid__time { position: absolute; right: 10px; bottom: 10px; background: rgba(0,0,0,.75); color: #fff; font-size: 12px; padding: 2px 8px; border-radius: 3px; }
.wpc .pi-vid__cap { font-size: 14px; margin-top: 10px; }
.wpc .pi-vid__frame iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--radius); }

/* ---------- DIVI-CONVERTED PAGE SECTIONS ---------- */
.pi-section { padding: 36px 0; border-top: 1px dashed var(--rule); border-bottom: 0; }
.pi-section:first-of-type { border-top: 0; }
.pi-row { display: grid; gap: 40px; align-items: center; }
.pi-row.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pi-row.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pi-row.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pi-row + .pi-row { margin-top: 40px; }
.pi-col { min-width: 0; }
.pi-text h2 { margin-top: 0; }
.pi-text h3 { margin-top: 24px; }
.pi-text h4 { margin-top: 0; }
.pi-image img { display: block; width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--rule); }
.pi-btn-wrap { margin: 24px 0 8px; }
.pi-card { border: 1px solid var(--rule); background: var(--card); border-radius: var(--radius); display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.pi-card-img img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; margin: 0; border-radius: 0; }
.pi-card-body { padding: 18px 20px; }
.pi-card-title { font-weight: 700; font-size: 20px; margin: 0 0 8px; }
.pi-card-title a { text-decoration: none; border: 0; color: var(--ink); }
.pi-card-title a:hover { color: var(--accent); text-decoration: none; }
.pi-card-body p { font-size: 15px; margin-bottom: 10px; color: var(--ink-mute); }
.pi-card-body p:last-child { margin-bottom: 0; }
.pi-contact-box { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 30px 32px; }
.pi-contact-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--accent-2), var(--accent)); }
.pi-contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.pi-contact-box p:last-child { margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pi-platforms { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin: 12px 0 32px; }
.pi-platforms img { width: 110px; height: auto; display: block; border: 1px solid var(--rule); border-radius: 8px; }
@media (max-width: 900px) {
  .pi-row.cols-2, .pi-row.cols-3, .pi-row.cols-4 { grid-template-columns: 1fr; }
}

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 13px 24px; text-decoration: none; transition: all 0.2s; border: 1.5px solid var(--accent); border-radius: 999px; margin: 4px 6px 4px 0; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0f0f0f; border-color: var(--accent); }
.btn-primary:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.btn-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-secondary:hover { background: #0f0f0f; color: #fff; }

/* ---------- POST CARDS (blog / podcast / properties listings) ---------- */
.prose h2.post-list-heading, .post-list-heading { font-size: 12px; text-transform: uppercase; letter-spacing: .22em; font-weight: 800; color: var(--accent); margin: 40px 0 18px; padding: 0; border: 0; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin: 0 0 24px; padding: 0; list-style: none; }
.post-grid li { padding: 0; margin: 0; }
.post-grid li::before { display: none; }
.post-card { border: 1px solid var(--rule); border-radius: var(--radius); height: 100%; display: flex; flex-direction: column; background: var(--card); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--gold-line); }
.post-card a.thumb { display: block; aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; border-bottom: 1px solid var(--rule); border-top: 0; }
.post-card a.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; border-radius: 0; }
.post-card .thumb-placeholder { display: flex; align-items: center; justify-content: center; font-size: 42px; font-weight: 800; color: var(--accent); height: 100%; }
.post-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card .cat { display: inline-block; align-self: flex-start; background: var(--accent); color: #0f0f0f; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.post-card h3 { font-weight: 700; font-size: 19px; line-height: 1.3; letter-spacing: -0.01em; margin: 0; }
.post-card h3 a { text-decoration: none; border: 0; color: var(--ink); }
.post-card h3 a:hover { color: var(--accent); text-decoration: none; }
.post-card p { font-size: 15px; color: var(--ink-mute); margin: 0; line-height: 1.55; }
.post-card .date { font-size: 12px; color: var(--ink-mute); margin-top: auto; padding-top: 8px; }

/* ---------- CTA ---------- */
.cta-block { position: relative; overflow: hidden; background: var(--card); color: var(--ink); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 34px 30px; margin: 34px 0 0; text-align: center; }
.cta-block::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #0f0f0f, var(--accent)); }
.cta-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); font-weight: 800; margin-bottom: 10px; }
.cta-block h3 { font-weight: 700; font-size: clamp(22px, 3vw, 26px); line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin: 0 auto 10px; max-width: 30ch; border: 0; padding: 0; }
.cta-block h3 em { font-style: normal; color: var(--accent); font-weight: 700; }
.cta-block p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 600px; margin: 0 auto 22px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-block .btn-primary { background: var(--accent); color: #0f0f0f; border-color: var(--accent); }
.cta-block .btn-primary:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.cta-block .btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-block .btn-secondary:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }

/* ---------- AUTHOR / DISCLAIMER ---------- */
.author-bio { border-top: 1px dashed var(--rule); margin-top: 48px; padding: 32px 0 0; display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; }
.author-avatar { width: 110px; height: 110px; border-radius: 50%; background: var(--accent); color: #0f0f0f; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 40px; letter-spacing: -0.02em; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; margin: 0; border-radius: 0; }
.author-info h4 { font-weight: 700; font-size: 22px; margin-bottom: 4px; color: var(--ink); text-transform: none; }
.author-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.author-bio p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 10px; }
.author-contact { font-size: 14px; color: var(--ink-soft); margin-top: 12px; line-height: 2; }
.author-contact strong { display: inline-block; width: 80px; color: var(--ink-mute); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.author-contact a { color: var(--accent-2); text-decoration: none; border-bottom: 0; }
.author-contact a:hover { text-decoration: underline; }
.disclaimer { margin-top: 40px; padding: 16px 20px; background: linear-gradient(180deg, rgba(184,150,46,.08), transparent); border: 1px solid #FAF6EA; border-radius: var(--radius); font-size: 13px; line-height: 1.6; color: var(--ink-mute); font-style: normal; }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--rule); background: var(--bg); color: var(--ink-mute); font-size: 14px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 40px 6vw 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-inner h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; margin-bottom: 12px; color: var(--accent); }
.footer-inner p, .footer-inner li { font-size: 14px; color: var(--ink-mute); line-height: 1.7; }
.footer-inner ul { list-style: none; }
.footer-inner a { color: var(--ink); text-decoration: none; border-bottom: 0; }
.footer-inner a:hover { color: var(--accent); text-decoration: none; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; display: block; }
.footer-bottom { border-top: 1px solid var(--rule); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 18px 6vw; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: 13px; color: var(--ink-mute); }
.footer-bottom-inner a { color: var(--ink-mute); text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--accent); }

/* ---------- MISC ---------- */
.breadcrumbs { max-width: 1200px; margin: 0 auto; padding: 18px 6vw 0; font-size: 12px; letter-spacing: .06em; color: var(--ink-mute); }
.breadcrumbs a { color: var(--ink-mute); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.not-found { max-width: 760px; margin: 0 auto; padding: 100px 6vw; text-align: center; }
.not-found h1 { font-size: 96px; font-weight: 800; line-height: 1; color: var(--accent); }

@media (max-width: 900px) {
  body { font-size: 16px; }
  .article, .article.no-toc, .article.wide { grid-template-columns: minmax(0, 1fr); padding: 16px 20px 60px; gap: 0; }
  .toc { display: none; }
  .hero { padding: 36px 20px 28px; }
  .hero-image { padding: 0 20px; }
  .masthead-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-block { padding: 28px 20px; }
  .author-bio { grid-template-columns: 1fr; gap: 16px; }
  .author-avatar { width: 80px; height: 80px; font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; padding: 32px 20px 20px; gap: 24px; }
  .footer-bottom-inner, .breadcrumbs { padding-left: 20px; padding-right: 20px; }
  .prose table { font-size: 14px; }
  .prose h2 { scroll-margin-top: 70px; }
}

/* button colour must win over .prose a */
.prose a.btn, a.btn { border-bottom-width: 1.5px; }
.prose a.btn-primary, a.btn-primary { color: #0f0f0f; background: var(--accent); border-color: var(--accent); }
.prose a.btn-primary:hover { background: #0f0f0f; border-color: #0f0f0f; color: #fff; }
.prose a.btn-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.prose a.btn-outline:hover { background: #0f0f0f; border-color: #0f0f0f; color: #fff; }
.prose .cta-block a.btn-primary { background: var(--accent); color: #0f0f0f; border-color: var(--accent); }
.prose .cta-block a.btn-primary:hover { background: #0f0f0f; color: #fff; border-color: #0f0f0f; }
.prose .cta-block a.btn-secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.prose .cta-block a.btn-secondary:hover { background: #0f0f0f; color: #fff; }
.prose .post-card h3 a, .prose .pi-card-title a { border-bottom: 0; }
