/* ============================================
   BLOG SINGLE POST SPECIFIC STYLES
   (Strictly for Article Content, Bio, Share, & Comments)
   ============================================ */

/* ============================================
   1. SINGLE SECTION LAYOUT
   ============================================ */
  *{
  text-decoration: none;
   }
.blog-single-section {
  padding: 80px 0;
  background-color: var(--blog-bg, #ffffff);
}

.blog-single-content {
  background-color: var(--blog-bg, #ffffff);
  animation: contentFadeIn 0.6s ease-out;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Specific Article Title */
.blog-title {
  color: var(--blog-heading, #273d4e);
  font-family: "Google Sans", "Saira", sans-serif;
  font-size: 2.8rem;
  font-weight: 750;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

/* ============================================
   2. SINGLE POST META (Article Specific)
   ============================================ */

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 32px 0;
  border-top: 2px solid var(--blog-border, #e8e8e8);
  border-bottom: 2px solid var(--blog-border, #e8e8e8);
  margin-bottom: 48px;
  color: var(--blog-meta-text, #888888);
  font-size: 0.95rem;
}

.meta-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.meta-label {
  color: var(--blog-meta-text, #888888);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.meta-author,
.meta-category {
  color: var(--blog-accent, #ff4a17);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.meta-author::after,
.meta-category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blog-accent, #ff4a17);
  transition: width 0.3s ease;
}

.meta-author:hover,
.meta-category:hover {
  color: var(--blog-heading, #273d4e);
}

.meta-author:hover::after,
.meta-category:hover::after {
  width: 100%;
}

/* ============================================
   3. FEATURED IMAGE (Large Banner)
   ============================================ */

.blog-featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.blog-featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(39, 61, 78, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.blog-featured-image:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.blog-featured-image:hover::after {
  opacity: 1;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-image:hover img {
  transform: scale(1.02);
}

/* ============================================
   4. ARTICLE BODY TYPOGRAPHY
   ============================================ */

.blog-single-body {
  color: var(--blog-text, #444444);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 400;
}

.blog-single-body p {
  margin-bottom: 28px;
}

.blog-single-body h2 {
  color: var(--blog-heading, #273d4e);
  font-family: "Google Sans", "Saira", sans-serif;
  font-size: 2rem;
  font-weight: 720;
  margin: 56px 0 28px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  padding-left: 20px;
}

.blog-single-body h2::before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: linear-gradient(180deg, var(--blog-accent, #ff4a17) 0%, var(--blog-accent-dark, #e63f0f) 100%);
  border-radius: 3px;
}

.blog-single-body h3 {
  color: var(--blog-heading, #273d4e);
  font-family: "Google Sans", "Saira", sans-serif;
  font-size: 1.5rem;
  font-weight: 680;
  margin: 40px 0 20px 0;
  letter-spacing: -0.3px;
}

.blog-single-body ul,
.blog-single-body ol {
  margin: 28px 0 28px 32px;
  padding: 0;
}

.blog-single-body li {
  margin-bottom: 14px;
  line-height: 1.9;
}

.blog-single-body li::marker {
  color: var(--blog-accent, #ff4a17);
  font-weight: 700;
}

/* Enhanced Blockquote */
.blog-single-body blockquote {
  border-left: 6px solid var(--blog-accent, #ff4a17);
  padding: 32px 36px;
  margin: 48px 0;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.06) 0%, rgba(255, 74, 23, 0.02) 100%);
  border-radius: 10px;
  font-style: italic;
  color: var(--blog-heading, #273d4e);
  font-size: 1.2rem;
  font-weight: 550;
  line-height: 1.85;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.blog-single-body blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 74, 23, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.blog-single-body blockquote:hover {
  box-shadow: 0 12px 32px rgba(255, 74, 23, 0.12);
  transform: translateX(6px);
}

.blog-single-body blockquote p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.blog-single-body blockquote footer {
  font-style: normal;
  color: var(--blog-meta-text, #888);
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   5. SHARE & AUTHOR MODULES
   ============================================ */

.share-post {
  margin: 70px 0;
  padding: 40px;
  background: linear-gradient(135deg, var(--blog-light-bg, #f8f9fa) 0%, #ffffff 100%);
  border-radius: 14px;
  border: 2px solid var(--blog-border, #e8e8e8);
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.share-post:hover {
  border-color: var(--blog-accent, #ff4a17);
  box-shadow: 0 12px 32px rgba(255, 74, 23, 0.12);
  transform: translateY(-4px);
}

.share-post h3 {
  margin-bottom: 28px;
  color: var(--blog-heading, #273d4e);
  font-size: 1.35rem;
  font-weight: 750;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid var(--blog-border, #e8e8e8);
  border-radius: 10px;
  background-color: white;
  color: var(--blog-text, #444);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.share-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blog-accent, #ff4a17) 0%, var(--blog-accent-dark, #e63f0f) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.share-btn:hover {
  color: white;
  border-color: var(--blog-accent, #ff4a17);
  transform: translateY(-2px);
}

.share-btn:hover::before {
  transform: scaleX(1);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 36px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 74, 23, 0.08) 0%, rgba(255, 74, 23, 0.03) 100%);
  border-radius: 14px;
  border: 2px solid var(--blog-border, #e8e8e8);
  margin-top: 70px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.author-bio:hover {
  border-color: var(--blog-accent, #ff4a17);
  box-shadow: 0 12px 32px rgba(255, 74, 23, 0.12);
  transform: translateY(-4px);
}

.author-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 5px solid var(--blog-accent, #ff4a17);
  box-shadow: 0 10px 32px rgba(255, 74, 23, 0.25);
  transition: all 0.35s ease;
}

.author-bio:hover .author-avatar {
  transform: scale(1.05) rotateZ(2deg);
}

.author-info h4 {
  color: var(--blog-heading, #273d4e);
  font-family: "Google Sans", "Saira", sans-serif;
  font-size: 1.4rem;
  font-weight: 750;
  margin-bottom: 12px;
}

.author-info p {
  color: var(--blog-text, #444);
  line-height: 1.75;
  margin: 0;
  font-size: 0.98rem;
}

/* ============================================
   6. RELATED POSTS SECTION (Bottom of Single)
   ============================================ */

.related-posts-section {
  padding: 80px 0;
  border-top: 2px solid var(--blog-border, #e8e8e8);
  /* margin-top: 50px; */
}

.related-posts-section h2 {
  color: var(--blog-heading, #273d4e);
  font-family: "Google Sans", "Saira", sans-serif;
  font-size: 2.2rem;
  font-weight: 750;
  margin-bottom: 52px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.related-posts-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blog-accent, #ff4a17) 0%, var(--blog-accent-dark, #e63f0f) 100%);
  border-radius: 2px;
}

/* ============================================
   7. RESPONSIVE ADJUSTMENTS (Single Specific)
   ============================================ */

@media (max-width: 992px) {
  .blog-title {
    font-size: 2.2rem;
  }

  .blog-single-body {
    font-size: 1.05rem;
  }

  .blog-single-body h2 {
    font-size: 1.75rem;
  }

  .related-posts-section h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .blog-single-section {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 1.9rem;
    margin-bottom: 24px;
  }

  .blog-single-meta {
    gap: 28px;
    padding: 24px 0;
    margin-bottom: 36px;
  }

  .blog-featured-image {
    margin-bottom: 48px;
    border-radius: 12px;
  }

  .blog-single-body {
    font-size: 1rem;
  }

  .blog-single-body h2 {
    font-size: 1.5rem;
    margin: 44px 0 22px 0;
    padding-left: 16px;
  }

  .blog-single-body h2::before {
    height: 24px;
  }

  .share-post {
    padding: 30px;
    margin: 50px 0;
  }

  .share-buttons {
    gap: 12px;
  }

  .share-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .author-bio {
    gap: 28px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-avatar {
    width: 130px;
    height: 130px;
  }

  .related-posts-section {
    padding: 60px 0;
    margin-top: 40px;
  }

  .related-posts-section h2 {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .blog-single-section {
    padding: 40px 0;
  }

  .blog-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .blog-single-meta {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
    margin-bottom: 28px;
    font-size: 0.9rem;
  }

  .blog-featured-image {
    margin-bottom: 36px;
    border-radius: 10px;
  }

  .blog-single-body {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .blog-single-body p {
    margin-bottom: 22px;
  }

  .blog-single-body h2 {
    font-size: 1.3rem;
    margin: 36px 0 18px 0;
    padding-left: 16px;
  }

  .blog-single-body h2::before {
    width: 4px;
    height: 20px;
  }

  .blog-single-body blockquote {
    padding: 24px 28px;
    margin: 36px 0;
    font-size: 1.05rem;
  }

  .share-post {
    padding: 24px;
    margin: 40px 0;
  }

  .share-buttons {
    gap: 10px;
  }

  .share-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .author-bio {
    gap: 18px;
    padding: 24px;
    margin-top: 48px;
  }

  .author-avatar {
    width: 110px;
    height: 110px;
  }

  .author-info h4 {
    font-size: 1.15rem;
  }

  .related-posts-section {
    padding: 40px 0;
    margin-top: 32px;
  }

  .related-posts-section h2 {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
}