/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   blog-detail.css  â€”  Blog Article Detail Page ONLY
   Completely separate from blog.css â€” zero class conflicts
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Article Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.article-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.article-hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  /* max-width: 820px; */
}

/* â”€â”€ Breadcrumb â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .375rem;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text-secondary); }

/* â”€â”€ Article hero meta bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 1.25rem;
}
.article-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  padding: .25rem .65rem;
  border-radius: 50px;
}
.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: .5;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
}

/* â”€â”€ Hero H1 & desc â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-hero h1 {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.article-hero-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 1.75rem;
}

/* â”€â”€ Author strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-author-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #B8860B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.author-title {
  font-size: .75rem;
  color: var(--text-muted);
}
.article-share {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
.share-label { font-size: .72rem; color: var(--text-muted); }
.share-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,.06);
}

/* â•â• ARTICLE LAYOUT (2-col: body + sidebar) â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* â”€â”€ Article body â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-body { min-width: 0; }

.article-feature-image {
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/7;
}
.article-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* â”€â”€ Table of contents â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg, 12px);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.toc-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.toc-list li { counter-increment: toc-counter; }
.toc-list li a {
  font-size: .83rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  gap: .6rem;
  align-items: baseline;
  transition: color .2s;
  line-height: 1.5;
}
.toc-list li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: .68rem;
  color: var(--gold);
  opacity: .6;
  flex-shrink: 0;
  font-weight: 700;
  min-width: 20px;
}
.toc-list li a:hover { color: var(--gold); }
.toc-list li.toc-sub a {
  padding-left: 1.75rem;
  font-size: .8rem;
}
.toc-list li.toc-sub a::before { display: none; }

/* â”€â”€ Prose (article body content) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prose {
  line-height: 1.85;
  color: var(--text-secondary);
  font-size: clamp(.875rem, 1.2vw, .9375rem);
}
.prose h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.75rem 0 1rem;
  line-height: 1.3;
  scroll-margin-top: 80px;
}
.prose h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 .75rem;
  scroll-margin-top: 80px;
}
.prose p { margin-bottom: 1.25rem; }
.prose strong { color: var(--text-primary); font-weight: 700; }
.prose em { color: var(--gold); font-style: italic; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: .8; }
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  padding-left: 1.25rem;
  position: relative;
}
.prose ul li::before {
  content: 'âœ¦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: .45em;
}
.prose ol { list-style: decimal; }
.prose ol li { padding-left: .25rem; }
.prose code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: .82em;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.15);
  padding: .15em .45em;
  border-radius: 4px;
  color: var(--gold);
}

/* â”€â”€ Callout boxes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.callout {
  background: rgba(212,175,55,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-secondary);
}
.callout p { margin: 0; }

/* â”€â”€ Stat callout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  margin: 2rem 0;
}
.stat-callout-item {
  background: var(--bg-card);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat-callout-val {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-callout-label {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* â”€â”€ FAQ block â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-block {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin: 1.5rem 0 2rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(212,175,55,.3); }
.faq-q {
  padding: 1.125rem 1.375rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-q::after {
  content: 'âˆ’';
}
.faq-a {
  padding: 0 1.375rem 1.125rem;
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}
.faq-a p { margin: .875rem 0 0; }

/* â”€â”€ Article tags â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: .3rem .75rem;
  border-radius: 50px;
  transition: border-color .2s, color .2s;
  cursor: default;
}
.article-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* â”€â”€ Author bio block (cs-block reuse) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-author-bio {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg, 12px);
  padding: 1.75rem;
  margin-top: 2.5rem;
}
.article-author-bio-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.article-author-bio-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.article-author-bio h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .35rem;
}
.article-author-bio .bio-role {
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: .625rem;
}
.article-author-bio p {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* â•â• SIDEBAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.article-sidebar { position: sticky; top: 2rem; }

.detail-sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 1.625rem;
  margin-bottom: 1.5rem;
}
.detail-sidebar-widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
}

/* CTA widget */
.detail-cta-widget {
  background: linear-gradient(135deg, var(--bg-card), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius-lg, 12px);
  padding: 1.625rem;
  margin-bottom: 1.5rem;
}
.detail-cta-widget h4 {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.detail-cta-widget p {
  font-size: .8rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

/* Sidebar categories */
.detail-sidebar-cats a {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .2s;
}
.detail-sidebar-cats a:hover { color: var(--gold); }
.detail-sidebar-cats a span {
  background: var(--bg-2, rgba(255,255,255,.04));
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: 50px;
  color: var(--text-muted);
}

/* Sidebar recent posts */
.detail-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.detail-sidebar-post {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  text-decoration: none;
}
.detail-sidebar-post-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  background: var(--bg-2, rgba(255,255,255,.04));
  overflow: hidden;
}
.detail-sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.detail-sidebar-post h5 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: .2rem;
  transition: color .2s;
}
.detail-sidebar-post:hover h5 { color: var(--gold); }
.detail-sidebar-post span {
  font-size: .7rem;
  color: var(--text-muted);
}

/* Sidebar related services */
.detail-related-services a {
  font-size: .875rem;
  color: var(--text-secondary);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
  text-decoration: none;
}
.detail-related-services a:last-child { border-bottom: none; }
.detail-related-services a:hover { color: var(--gold); }
.detail-related-services a .svc-dot {
  color: rgba(212,175,55,.5);
  font-size: .55rem;
  flex-shrink: 0;
}

/* â•â• RELATED ARTICLES SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.related-section { }
.related-section .eyebrow { display: block; margin-bottom: .5rem; }
.related-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Related / blog cards â€” scoped to detail page */
.detail-blog-card {
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}
.detail-blog-card:hover {
  border-color: rgba(212,175,55,.3);
  box-shadow: 0 4px 24px rgba(212,175,55,.08);
}
.detail-blog-card-thumb {
  height: clamp(120px, 14vw, 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  position: relative;
  overflow: hidden;
}
.detail-blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-blog-card-body { padding: 1.25rem; }
.detail-blog-card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.detail-blog-cat {
  color: var(--gold);
  font-weight: 700;
}
.detail-blog-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: .45rem;
}
.detail-blog-card-body p {
  font-size: .8rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.detail-read-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  transition: gap .2s;
  text-decoration: none;
}
.detail-blog-card:hover .detail-read-more { gap: .55rem; }

/* â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr 280px; gap: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .stat-callout { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stat-callout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-share { display: none; }
}