:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #0f2440;
  --color-primary-light: #2a5082;
  --color-accent: #c5953b;
  --color-accent-light: #d4a94e;
  --color-accent-dark: #a67b2c;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fb;
  --color-bg-card: #ffffff;
  --color-text: #2d3748;
  --color-text-light: #64748b;
  --color-text-heading: #1a2332;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-success: #22c55e;
  --color-info: #3b82f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
  --shadow-card: 0 2px 12px rgba(30,58,95,.07);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
  --font-sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Noto Serif KR', Georgia, serif;
  --max-width: 1200px;
  --content-width: 760px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
  word-break: keep-all;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-accent); }

/* ===== WORDPRESS OVERRIDE - KILL DEFAULT STYLES ===== */
.wp-site-blocks, .wp-block-group, .wp-block-template-part { max-width: none !important; padding: 0 !important; margin: 0 !important; }
.wp-block-post-content { max-width: none !important; }
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: none !important; margin-left: 0 !important; margin-right: 0 !important; }
header.wp-block-template-part, footer.wp-block-template-part { display: none !important; }

/* ===== SITE HEADER ===== */
.bc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base);
}
.bc-header.scrolled { box-shadow: var(--shadow-md); }
.bc-header-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.bc-logo { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; }
.bc-logo img { width: 40px; height: 40px; border-radius: var(--radius-sm); }
.bc-logo-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem;
  color: var(--color-primary-dark); letter-spacing: -0.02em;
}
.bc-nav { display: flex; gap: var(--space-lg); align-items: center; }
.bc-nav a {
  font-size: .9rem; font-weight: 500; color: var(--color-text);
  padding: var(--space-sm) 0; position: relative; transition: color var(--transition-fast);
}
.bc-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--color-accent); transition: width var(--transition-base);
}
.bc-nav a:hover { color: var(--color-primary); }
.bc-nav a:hover::after { width: 100%; }
.bc-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.bc-nav-toggle svg { width: 24px; height: 24px; stroke: var(--color-text); }

@media (max-width: 768px) {
  .bc-header-inner { height: 60px; padding: 0 var(--space-md); }
  .bc-nav { display: none; position: fixed; top: 60px; left: 0; right: 0; background: #fff; flex-direction: column; padding: var(--space-lg); gap: var(--space-md); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-lg); }
  .bc-nav.open { display: flex; }
  .bc-nav a { font-size: 1rem; padding: var(--space-sm) 0; }
  .bc-nav-toggle { display: block; }
}

/* ===== HERO SECTION ===== */
.bc-hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  overflow: hidden; margin-top: 72px;
}
.bc-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bc-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .18;
}
.bc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,.92) 0%, rgba(30,58,95,.85) 50%, rgba(42,80,130,.78) 100%);
  z-index: 1;
}
.bc-hero-content {
  position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto;
  padding: var(--space-5xl) var(--space-lg);
}
.bc-hero-label {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: rgba(197,149,59,.15); border: 1px solid rgba(197,149,59,.3);
  color: var(--color-accent-light); font-size: .85rem; font-weight: 500;
  padding: var(--space-xs) var(--space-md); border-radius: 100px; margin-bottom: var(--space-lg);
}
.bc-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.3; letter-spacing: -0.03em;
  margin-bottom: var(--space-lg); max-width: 640px;
}
.bc-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,.8);
  line-height: 1.8; max-width: 540px; margin-bottom: var(--space-2xl);
}
.bc-hero-stats {
  display: flex; gap: var(--space-2xl); flex-wrap: wrap;
}
.bc-hero-stat { text-align: left; }
.bc-hero-stat-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  color: var(--color-accent-light); line-height: 1.2;
}
.bc-hero-stat-label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px; }

@media (max-width: 768px) {
  .bc-hero { min-height: 480px; margin-top: 60px; }
  .bc-hero-content { padding: var(--space-3xl) var(--space-md); }
  .bc-hero-stats { gap: var(--space-xl); }
  .bc-hero-stat-num { font-size: 1.5rem; }
}

/* ===== SECTIONS ===== */
.bc-section {
  padding: var(--space-5xl) var(--space-lg);
}
.bc-section-alt { background: var(--color-bg-alt); }
.bc-section-inner {
  max-width: var(--max-width); margin: 0 auto;
}
.bc-section-header {
  text-align: center; margin-bottom: var(--space-3xl);
}
.bc-section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--color-text-heading); letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.bc-section-header p {
  font-size: 1.05rem; color: var(--color-text-light); max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}
.bc-section-divider {
  width: 48px; height: 3px; background: var(--color-accent);
  margin: var(--space-md) auto 0; border-radius: 2px;
}

/* ===== POST CARDS ===== */
.bc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 960px) { .bc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bc-grid { grid-template-columns: 1fr; } }

.bc-card {
  background: var(--color-bg-card); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-border-light);
}
.bc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bc-card-img {
  position: relative; padding-top: 62%; overflow: hidden;
}
.bc-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.bc-card:hover .bc-card-img img { transform: scale(1.04); }
.bc-card-badge {
  position: absolute; top: var(--space-md); left: var(--space-md); z-index: 2;
  background: var(--color-primary); color: #fff; font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; letter-spacing: .02em;
}
.bc-card-body { padding: var(--space-lg); }
.bc-card-title {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--color-text-heading); line-height: 1.5; margin-bottom: var(--space-sm);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bc-card-excerpt {
  font-size: .9rem; color: var(--color-text-light); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: var(--space-md);
}
.bc-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--color-primary);
  transition: gap var(--transition-base);
}
.bc-card-link:hover { gap: 10px; color: var(--color-accent); }
.bc-card-link svg { width: 16px; height: 16px; }

/* ===== CAROUSEL ===== */
.bc-carousel-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.bc-carousel-track { display: flex; transition: transform 600ms ease; }
.bc-carousel-slide {
  min-width: 100%; position: relative;
}
.bc-carousel-slide img { width: 100%; height: 400px; object-fit: cover; }
.bc-carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,36,64,.85) 0%, rgba(15,36,64,.3) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: var(--space-2xl);
}
.bc-carousel-text { color: #fff; max-width: 560px; }
.bc-carousel-text h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: var(--space-sm); }
.bc-carousel-text p { font-size: .95rem; opacity: .85; line-height: 1.6; }
.bc-carousel-dots {
  display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-md);
}
.bc-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--color-border);
  border: none; cursor: pointer; transition: all var(--transition-base); padding: 0;
}
.bc-carousel-dot.active { background: var(--color-accent); width: 28px; border-radius: 5px; }
@media (max-width: 768px) {
  .bc-carousel-slide img { height: 280px; }
  .bc-carousel-overlay { padding: var(--space-lg); }
  .bc-carousel-text h3 { font-size: 1.2rem; }
}

/* ===== COST BREAKDOWN ===== */
.bc-cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
@media (max-width: 960px) { .bc-cost-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bc-cost-grid { grid-template-columns: 1fr; } }
.bc-cost-item {
  background: #fff; border-radius: var(--radius-md); padding: var(--space-xl);
  border: 1px solid var(--color-border-light); text-align: center;
  transition: all var(--transition-base); position: relative; overflow: hidden;
}
.bc-cost-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--color-accent); transform: scaleX(0); transition: transform var(--transition-base);
}
.bc-cost-item:hover::before { transform: scaleX(1); }
.bc-cost-item:hover { box-shadow: var(--shadow-md); }
.bc-cost-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-md);
}
.bc-cost-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.5; }
.bc-cost-label { font-weight: 600; color: var(--color-text-heading); margin-bottom: var(--space-xs); }
.bc-cost-range { font-size: .85rem; color: var(--color-text-light); line-height: 1.6; }

/* ===== PROCESS STEPS ===== */
.bc-steps { display: flex; flex-direction: column; gap: var(--space-xl); position: relative; max-width: 720px; margin: 0 auto; }
.bc-steps::before {
  content: ''; position: absolute; left: 28px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
}
.bc-step { display: flex; gap: var(--space-lg); align-items: flex-start; position: relative; }
.bc-step-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem;
  position: relative; z-index: 1; border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.bc-step-content {
  background: #fff; border-radius: var(--radius-md); padding: var(--space-xl);
  border: 1px solid var(--color-border-light); flex: 1;
  box-shadow: var(--shadow-sm);
}
.bc-step-content h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-text-heading); margin-bottom: var(--space-sm); }
.bc-step-content p { font-size: .92rem; color: var(--color-text-light); line-height: 1.7; }
@media (max-width: 600px) {
  .bc-steps::before { left: 20px; }
  .bc-step-num { width: 40px; height: 40px; font-size: .9rem; }
  .bc-step-content { padding: var(--space-md); }
}

/* ===== INFO BANNER ===== */
.bc-info-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg); padding: var(--space-3xl); color: #fff;
  display: flex; align-items: center; gap: var(--space-3xl); overflow: hidden;
  position: relative;
}
.bc-info-banner::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(197,149,59,.1);
}
.bc-info-banner-img { flex-shrink: 0; width: 320px; border-radius: var(--radius-md); overflow: hidden; position: relative; z-index: 1; }
.bc-info-banner-img img { width: 100%; height: 240px; object-fit: cover; }
.bc-info-banner-text { flex: 1; position: relative; z-index: 1; }
.bc-info-banner-text h2 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: var(--space-md); }
.bc-info-banner-text p { opacity: .85; line-height: 1.8; margin-bottom: var(--space-lg); }
.bc-btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .92rem; transition: all var(--transition-base); border: none; cursor: pointer;
  text-decoration: none;
}
.bc-btn-accent { background: var(--color-accent); color: #fff; }
.bc-btn-accent:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }
.bc-btn-outline { border: 1.5px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.bc-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
@media (max-width: 768px) {
  .bc-info-banner { flex-direction: column; padding: var(--space-xl); gap: var(--space-xl); }
  .bc-info-banner-img { width: 100%; }
}

/* ===== FOOTER ===== */
.bc-footer {
  background: var(--color-primary-dark); color: rgba(255,255,255,.7); padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}
.bc-footer-inner { max-width: var(--max-width); margin: 0 auto; }
.bc-footer-top { display: flex; justify-content: space-between; gap: var(--space-2xl); margin-bottom: var(--space-2xl); flex-wrap: wrap; }
.bc-footer-brand { max-width: 360px; }
.bc-footer-brand-name { font-family: var(--font-serif); font-size: 1.15rem; color: #fff; font-weight: 700; margin-bottom: var(--space-md); }
.bc-footer-brand p { font-size: .85rem; line-height: 1.7; }
.bc-footer-links h4 { color: #fff; font-size: .9rem; margin-bottom: var(--space-md); }
.bc-footer-links a { display: block; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: var(--space-sm); transition: color var(--transition-fast); }
.bc-footer-links a:hover { color: var(--color-accent-light); }
.bc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--space-lg);
  font-size: .8rem; text-align: center; line-height: 1.8;
}
.bc-footer-legal { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: var(--space-md); line-height: 1.7; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== SINGLE POST ===== */
.bc-single-wrap { max-width: var(--content-width); margin: 0 auto; padding: var(--space-4xl) var(--space-lg) var(--space-3xl); }
.bc-single-wrap .entry-title, .bc-single-wrap h1.wp-block-post-title {
  font-family: var(--font-serif) !important; font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  font-weight: 700 !important; color: var(--color-text-heading) !important;
  line-height: 1.4 !important; letter-spacing: -0.02em !important; margin-bottom: var(--space-xl) !important;
}
.bc-single-wrap .entry-content, .bc-single-wrap .wp-block-post-content {
  font-size: 1.05rem; line-height: 1.85; color: var(--color-text);
}
.bc-single-wrap .entry-content h2, .bc-single-wrap .wp-block-post-content h2 {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700;
  color: var(--color-text-heading); margin: var(--space-2xl) 0 var(--space-md);
  padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-accent);
  letter-spacing: -0.01em;
}
.bc-single-wrap .entry-content h3, .bc-single-wrap .wp-block-post-content h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--color-primary); margin: var(--space-xl) 0 var(--space-md);
  padding-left: var(--space-md); border-left: 3px solid var(--color-accent);
}
.bc-single-wrap .entry-content p { margin-bottom: var(--space-md); }
.bc-single-wrap .entry-content img {
  border-radius: var(--radius-md); margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}
.bc-single-wrap .entry-content table {
  width: 100%; border-collapse: collapse; margin: var(--space-xl) 0;
  font-size: .92rem; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.bc-single-wrap .entry-content th {
  background: var(--color-primary); color: #fff; font-weight: 600;
  padding: 14px 16px; text-align: left; font-size: .85rem;
}
.bc-single-wrap .entry-content td {
  padding: 12px 16px; border-bottom: 1px solid var(--color-border-light);
}
.bc-single-wrap .entry-content tr:nth-child(even) td { background: var(--color-bg-alt); }
.bc-single-wrap .entry-content blockquote {
  background: var(--color-bg-alt); border-left: 4px solid var(--color-accent);
  padding: var(--space-lg) var(--space-xl); margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: normal;
}
.bc-single-wrap .entry-content blockquote p { margin-bottom: 0; color: var(--color-text); }
.bc-single-wrap .entry-content ul, .bc-single-wrap .entry-content ol {
  padding-left: var(--space-xl); margin: var(--space-md) 0 var(--space-lg);
}
.bc-single-wrap .entry-content li { margin-bottom: var(--space-sm); line-height: 1.7; }
.bc-single-wrap .entry-content ul li::marker { color: var(--color-accent); }

/* Legal/AI notices */
.legal-notice { font-size: .85em !important; }
.ai-notice { font-size: .85em !important; }
.bc-toc { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); margin-bottom: var(--space-xl); }
.bc-toc h4 { font-size: .95rem; font-weight: 600; color: var(--color-text-heading); margin-bottom: var(--space-md); }
.bc-toc ul { list-style: none; padding: 0; }
.bc-toc li { margin-bottom: var(--space-sm); }
.bc-toc a { font-size: .9rem; color: var(--color-primary); }
.bc-toc a:hover { color: var(--color-accent); }

/* Related posts */
.bc-related { margin-top: var(--space-3xl); padding-top: var(--space-2xl); border-top: 1px solid var(--color-border); }
.bc-related h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: var(--space-lg); color: var(--color-text-heading); }
.bc-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (max-width: 600px) { .bc-related-grid { grid-template-columns: 1fr; } }
.bc-related-item {
  display: flex; gap: var(--space-md); align-items: center;
  padding: var(--space-md); border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light); transition: all var(--transition-base);
}
.bc-related-item:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.bc-related-item img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.bc-related-item span { font-size: .9rem; font-weight: 500; color: var(--color-text-heading); line-height: 1.4; }

/* Featured image in single post */
.bc-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-xl); box-shadow: var(--shadow-md); }
.bc-featured-img img { width: 100%; height: auto; }

/* Mobile table scroll */
@media (max-width: 768px) {
  .bc-single-wrap .entry-content table { display: block; overflow-x: auto; white-space: nowrap; }
  .bc-single-wrap { padding: 88px var(--space-md) var(--space-2xl); }
}

/* Scroll animation */
.bc-fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.bc-fade-in.visible { opacity: 1; transform: translateY(0); }

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 2px;
}

/* Page template */
.bc-page-wrap { max-width: var(--content-width); margin: 0 auto; padding: var(--space-4xl) var(--space-lg) var(--space-3xl); }
.bc-page-wrap h1 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--color-text-heading); margin-bottom: var(--space-xl); }
.bc-page-wrap h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--color-text-heading); margin: var(--space-xl) 0 var(--space-md); }
.bc-page-wrap p { margin-bottom: var(--space-md); line-height: 1.8; }
