/* Shared additions for every blog post: visible breadcrumbs, table of
   contents, and the "Updated" date in the byline. Linked once from each
   post alongside fonts.css/scroll-progress.css rather than duplicating
   these rules into every post's own inline <style> block. */

.crumbs {
  font-size: 13px;
  color: var(--muted, #778DA6);
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.crumbs a { color: var(--muted, #778DA6); text-decoration: none; }
.crumbs a:hover { color: var(--accent, #4F647A); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--body, #4A596B); }

.toc {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #E4DFD4);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 34px;
}
.toc .toc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #4F647A);
  margin-bottom: 12px;
}
.toc ul { margin: 0; padding: 0; list-style: none; }
.toc li { margin-bottom: 8px; }
.toc li:last-child { margin-bottom: 0; }
.toc a {
  font-size: 15px;
  color: var(--ink, #2C3743);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.toc a:hover { border-bottom-color: var(--accent, #4F647A); }

/* Mid-article CTA: a lighter-weight nudge partway through, distinct from
   the bigger gradient .cta box at the end of the post. */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cool, #E6EAEB);
  border: 1px solid var(--line, #E4DFD4);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 44px 0;
}
.cta-inline p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink, #2C3743);
  font-weight: 300;
  flex: 1 1 260px;
}
.cta-inline a.btn {
  flex: 0 0 auto;
  background: var(--navy2, #2C3743);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}
.cta-inline a.btn:hover { transform: translateY(-2px); background: var(--accent, #4F647A); }

/* End-of-post CTA's secondary "prefer email" line. */
.cta-alt {
  margin-top: 16px !important;
  font-size: 13px !important;
  color: #c7cedb !important;
}
.cta-alt a { color: #fff; text-decoration: underline; }

/* Sticky mobile "book a call" bar - mobile only, matches the site's
   existing 600px breakpoint. */
.sticky-cta { display: none; }
@media (max-width: 600px) {
  body { padding-bottom: 76px; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 25;
    background: var(--navy2, #2C3743);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(10, 15, 30, 0.18);
  }
  .sticky-cta a {
    display: block;
    text-align: center;
    background: var(--bone, #F3F0E9);
    color: var(--navy, #0a0f1e);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 13px;
    border-radius: 999px;
  }
}
