/* =======================================
   BLOG DETAILS HERO
======================================= */
.blog-details-hero {
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.blog-details-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* center the image */
  filter: brightness(70%);
}

.blog-details-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75));
}

.blog-details-hero-content {
  position: absolute;
  bottom: 40px;
  color: #fff;
  max-width: 720px;
}

.blog-details-title {
  color: var(--color-surface);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.blog-details-meta {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-details-meta .dot {
  opacity: 0.7;
}

/* =======================================
   ARTICLE CONTENT
======================================= */
.blog-details-content-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.blog-details-content {
  max-width: 820px;
  margin: auto;
  font-size: 1.1rem;
  color: #333;
}

.blog-details-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #111827;
}

/* =======================================
   RELATED POSTS
======================================= */
.blog-related-section {
  padding-top: 0;
  padding-bottom: 4rem;
}
/* =======================================
   BLOG CARD STYLES (for Related Posts)
======================================= */
.blog-card {
  background-color: #ffffff;
  border-radius: var(--radius-mid, 18px);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s ease;
}

.blog-card-image-wrapper:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.25rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.blog-card-body {
  padding: 1.5rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.blog-card-title a {
  color: var(--color-text, #111827);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #5F7384;
}

.blog-card-excerpt {
  font-size: 0.98rem;
  color: #4b5563;
  margin: 0;
}

.blog-card-meta {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.h-section-subtitle{
  color: black !important;
}
/* ===============================
   HERO CATEGORY BADGE
=============================== */
.blog-hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ===============================
   BREADCRUMB STYLE (non-dynamic)
=============================== */
.blog-breadcrumb-section {
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #black;
}

.breadcrumb a {
  color: black;
  text-decoration: none;
}

.breadcrumb .sep {
  color: #9ca3af;
}

.breadcrumb .current {
  color: var(--blue);
  font-weight: 500;
}

/* ===============================
   SHARE BUTTONS
=============================== */
.blog-share {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  margin-top: 3rem;
}

.blog-share .social-icon {
  font-size: 1.25rem;
  color: #333;
  transition: color 0.3s ease;
}

.blog-share .social-icon:hover {
  color: #0752C5;
}
