/* Blog Article Professional Styles */
.blog-article-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 80px;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 18px;
}

/* Article hero header */
.blog-article-hero {
  background: #000;
  padding: 140px 0 60px;
  margin-bottom: 0;
}
.blog-article-hero .container {
  max-width: 780px;
}
.blog-article-hero .blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-article-hero .blog-category-badge {
  display: inline-block;
  background: #b5e126;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 999px;
}
.blog-article-hero .blog-date {
  color: rgba(255,255,255,0.6);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
}
.blog-article-hero .blog-reading-time {
  color: rgba(255,255,255,0.6);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
}
.blog-article-hero h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.blog-article-hero .blog-excerpt {
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  line-height: 1.6;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  max-width: 650px;
}

/* Author bar */
.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.blog-author-bar .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b5e126;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.blog-author-bar .author-info {
  color: #ccc;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}
.blog-author-bar .author-name {
  font-weight: 600;
  color: #fff;
}

/* Cover image */
.blog-cover-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-40px);
}
.blog-cover-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* Article content typography */
.blog-article-layout h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin: 48px 0 20px;
  line-height: 1.25;
  color: #111;
}
.blog-article-layout h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 48px 0 18px;
  line-height: 1.3;
  color: #111;
  padding-bottom: 12px;
  border-bottom: 3px solid #b5e126;
}
.blog-article-layout h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 36px 0 14px;
  color: #222;
}
.blog-article-layout p {
  margin: 0 0 24px;
  color: #FFFFFF;
}
.blog-article-layout strong {
  color: #111;
  font-weight: 700;
}
.blog-article-layout a {
  color: #4a7a00;
  text-decoration: underline;
  text-decoration-color: #b5e126;
  text-underline-offset: 3px;
  transition: color .2s;
}
.blog-article-layout a:hover {
  color: #b5e126;
}
.blog-article-layout ul, .blog-article-layout ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
.blog-article-layout li {
  margin-bottom: 10px;
}
.blog-article-layout blockquote {
  border-left: 4px solid #b5e126;
  margin: 32px 0;
  padding: 20px 24px;
  background: #f8fae8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}
.blog-article-layout img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

/* Table of contents */
.blog-toc {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 40px;
}
.blog-toc h4 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 14px;
}
.blog-toc ol {
  margin: 0;
  padding-left: 20px;
}
.blog-toc li {
  margin-bottom: 8px;
  font-size: 15px;
}
.blog-toc a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}
.blog-toc a:hover {
  color: #b5e126;
}

/* CTA box at end of article */
.blog-article-cta {
  background: #000;
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.blog-article-cta h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}
.blog-article-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin: 0 0 24px;
}
.blog-article-cta a.btn-cta {
  display: inline-block;
  background: #b5e126;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

/* Share bar */
.blog-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 40px 0;
}
.blog-share-bar span {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* FAQ in article */
.blog-article-layout .faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #b5e126;
}
.blog-article-layout .faq-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

/* Progress bar at top */
.blog-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #b5e126;
  z-index: 9999;
  transition: width .1s linear;
  width: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .blog-article-hero { padding: 120px 0 40px; }
  .blog-article-hero h1 { font-size: 28px; }
  .blog-article-hero .blog-excerpt { font-size: 16px; }
  .blog-article-layout { font-size: 16px; padding: 0 16px 60px; }
  .blog-article-layout h2 { font-size: 22px; }
  .blog-article-cta { padding: 28px 20px; }
}
