/* ── Blog Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #2563EB; }

h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

/* ── Blog Nav ──────────────────────────────────────────────────────────────── */
.blog-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1.5rem;
}

.blog-nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-nav-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.blog-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.blog-nav-link {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
}

.blog-nav-link:hover { color: #111827; }

.blog-nav-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #2563EB;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.blog-nav-cta:hover { background: #1d4ed8; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.fc-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.fc-hero { padding: 3rem 0 2.5rem; }

.fc-hero-backlink {
  display: inline-block;
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.fc-hero-backlink:hover { text-decoration: underline; }

.fc-hero-tagrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fc-hero-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border: 1px solid;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fc-hero-meta { font-size: 0.875rem; }

.fc-hero-h1 {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.fc-hero-lede {
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .fc-hero-h1 { font-size: 1.5rem; }
  .fc-hero-lede { font-size: 1rem; }
}

/* ── Body ──────────────────────────────────────────────────────────────────── */
.fc-body { padding: 2.5rem 0 4rem; }

/* ── Sections ──────────────────────────────────────────────────────────────── */
.fc-section { margin-bottom: 2.5rem; }

.fc-section--region {
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* ── Headings ──────────────────────────────────────────────────────────────── */
.fc-h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.fc-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── Prose ─────────────────────────────────────────────────────────────────── */
.fc-prose p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.125rem;
  color: #374151;
}

.fc-prose p:last-child { margin-bottom: 0; }

.fc-prose ul,
.fc-prose ol {
  margin-bottom: 1.125rem;
  padding-left: 1.5rem;
}

.fc-prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 0.4rem;
}

/* ── Answer Box ────────────────────────────────────────────────────────────── */
.fc-answerbox {
  border-left: 4px solid;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.fc-answerbox-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.fc-answerbox-body {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ── Comparison Table ──────────────────────────────────────────────────────── */
.fc-comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.fc-comparison th {
  background: #f9fafb;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
}

.fc-comparison td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fc-comparison tr:last-child td { border-bottom: none; }

/* ── Stat Callout ──────────────────────────────────────────────────────────── */
.fc-statcallout {
  border-left: 4px solid;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.fc-statcallout-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
  display: block;
}

.fc-statcallout-body {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── Step List ─────────────────────────────────────────────────────────────── */
.fc-steplist {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.fc-steplist li {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 0.875rem;
  padding-left: 0.25rem;
}

/* ── Pull Quote ────────────────────────────────────────────────────────────── */
.fc-pullquote {
  border-left: 4px solid;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}

.fc-pullquote p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 0.375rem;
}

.fc-pullquote-attribution {
  font-size: 0.8125rem;
  font-style: normal;
  display: block;
}

/* ── Author ────────────────────────────────────────────────────────────────── */
.fc-author { display: flex; gap: 1rem; align-items: flex-start; }

.fc-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
  display: block;
}

.fc-author-role {
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  display: block;
}

.fc-author-bio {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Related Grid ──────────────────────────────────────────────────────────── */
.fc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 640px) { .fc-grid-3 { grid-template-columns: 1fr; } }
@media (min-width: 641px) and (max-width: 860px) { .fc-grid-3 { grid-template-columns: repeat(2, 1fr); } }

/* ── Card ──────────────────────────────────────────────────────────────────── */
.fc-card {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}

.fc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.fc-card-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
  display: block;
}

.fc-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.375rem;
  display: block;
}

.fc-card-body {
  font-size: 0.8125rem;
  line-height: 1.55;
  display: block;
}

/* ── CTA Block ─────────────────────────────────────────────────────────────── */
.fc-cta {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.fc-cta-title {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  display: block;
}

.fc-cta-body {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: block;
}

.fc-cta-button {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.fc-cta-button:hover { opacity: 0.88; }

/* ── Sub-heading ───────────────────────────────────────────────────────────── */
.fc-h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.fc-faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.fc-faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.fc-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.fc-faq-a {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #374151;
}

/* ── Blog Index ────────────────────────────────────────────────────────────── */
.blog-index-hero {
  background: #f9fafb;
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.blog-index-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.blog-index-sub {
  font-size: 1rem;
  color: #6b7280;
}

.blog-index-body { padding: 2.5rem 0 4rem; }

.blog-category-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2563EB;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
}

.blog-post-card:last-child { border-bottom: none; }
.blog-post-card:hover .blog-post-title { color: #2563EB; }

.blog-post-meta { font-size: 0.8125rem; color: #9ca3af; }

.blog-post-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  transition: color 0.1s;
}

.blog-post-excerpt {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.blog-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.blog-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-footer p { font-size: 0.8125rem; color: #9ca3af; margin: 0; }
.blog-footer a { color: #9ca3af; text-decoration: none; }
.blog-footer a:hover { color: #6b7280; }
