/* ==========================================================================
   Blog Detail Page Stylesheet (css/blog-detail.css)
   100% Pixel Matching "blog detail.png" Reference Design
   ========================================================================== */

.blog-detail-container {
  padding: 40px 0 80px 0;
  background: linear-gradient(to right, #fde8ef 0%, #fff2f6 30%, #ffffff 65%, #f1e4fc 100%) !important;
  position: relative;
}

.blog-article-main-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 42px;
  border: 1.5px solid #fce4ec;
  box-shadow: 0 10px 35px rgba(224, 30, 90, 0.05);
}

@media (max-width: 767px) {
  .blog-article-main-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

/* Category Pill Badge (Mint Green Tag) */
.blog-tag-pill-mint {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-detail-title {
  font-size: 30px;
  font-weight: 600;
  color: #1e1b4b;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.blog-detail-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Author & Meta Bar */
.blog-author-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.blog-author-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 2px;
}

.blog-author-sub {
  font-size: 12px;
  color: #64748b;
}

.blog-meta-right {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.blog-meta-right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-right i {
  color: #64748b;
}

/* Featured Hero Image */
.blog-detail-hero-img-wrapper {
  width: 100%;
  max-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(31, 20, 53, 0.04);
}

.blog-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   In-Guide Table of Contents Box ("In this guide")
   -------------------------------------------------------------------------- */
.in-guide-toc-box {
  background: #fcfcfd;
  border-radius: 20px;
  padding: 26px 30px;
  border: 1.5px solid #f1f5f9;
  margin: 30px 0 35px 0;
}

.toc-box-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 18px;
}

.toc-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 0.2s ease;
  margin-bottom: 14px;
}

.toc-item-link:hover {
  color: #16a34a;
}

.toc-num-pill {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Article Body Typography */
.blog-article-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1e1b4b;
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-article-content p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Callout Box Mint Tint */
.blog-callout-mint {
  background: #f0fdf4;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1.5px solid #bbf7d0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0;
}

.callout-mint-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.callout-mint-text {
  font-size: 14px;
  color: #166534;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Key Legal Points Box */
.blog-key-points-box {
  background: #f0fdf4;
  border-radius: 18px;
  padding: 24px 28px;
  border: 1.5px solid #bbf7d0;
  margin: 22px 0 30px 0;
}

.key-points-title {
  font-size: 15px;
  font-weight: 600;
  color: #166534;
  margin-bottom: 14px;
}

.key-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #166534;
  margin-bottom: 10px;
  font-weight: 600;
}

.key-points-list li:last-child {
  margin-bottom: 0;
}

.key-points-list i {
  color: #16a34a;
  margin-top: 3px;
}

/* In-Article CTA Banner ("Not sure if you are eligible for surrogacy?") */
.blog-in-article-cta {
  background: #fdf3f6;
  border-radius: 20px;
  padding: 22px 28px;
  border: 1.5px solid #fce4ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 35px 0;
}

.in-article-cta-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e01e5a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(224, 30, 90, 0.25);
}

.in-article-cta-title {
  font-size: 16.5px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 4px;
}

.in-article-cta-desc {
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 0;
}

/* Disclaimer Box */
.blog-disclaimer-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px 20px;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}

.blog-disclaimer-box i {
  color: #0284c7;
  font-size: 16px;
  flex-shrink: 0;
}

/* Medically Reviewed By Bottom Badge Card */
.medically-reviewed-badge-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 6px 20px rgba(31, 20, 53, 0.03);
  margin-top: 40px;
}

.stat-badge-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f8fafc;
}

.stat-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #fecdd3;
  color: #e01e5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Sticky Sidebar Widgets (100% Matching Screenshot)
   -------------------------------------------------------------------------- */
.blog-sidebar-widget {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 28px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 6px 22px rgba(31, 20, 53, 0.03);
  margin-bottom: 24px;
}

.widget-title {
  font-size: 17px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 18px;
}

.author-widget-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-share-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none !important;
  transition: transform 0.2s ease;
}

.social-share-btn:hover {
  transform: translateY(-3px);
}

.social-share-btn.fb { background-color: #3b5998; }
.social-share-btn.tw { background-color: #38bdf8; }
.social-share-btn.li { background-color: #0284c7; }
.social-share-btn.link { background-color: #f1f5f9; color: #475569; }

/* Related Articles List Item */
.related-article-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none !important;
}

.related-article-item:last-child {
  margin-bottom: 0;
}

.related-article-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-article-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e1b4b;
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-article-item:hover .related-article-title {
  color: #e01e5a;
}

.related-article-date {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}

/* Need Personalized Guidance CTA Widget */
.sidebar-guidance-card {
  background: #fdf3f6;
  border-radius: 22px;
  padding: 28px 28px;
  border: 1.5px solid #fce4ec;
  margin-bottom: 24px;
}

.guidance-title {
  font-size: 18px;
  font-weight: 600;
  color: #e01e5a;
  line-height: 1.25;
  margin-bottom: 8px;
}

.guidance-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.guidance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.guidance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 10px;
}

.guidance-list li i {
  color: #e01e5a;
  font-size: 14px;
}
