/* =========================
   Title Section (full width gray bg + boxed content)
   ========================= */
   /* Container */
.blog-single-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
   
.blog-single-container .fullwidth-title {
    margin-top : 120px;
    margin-bottom: 15px;
    background-color: #f0f0f0; /* light gray full width */
    color: #333;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 85px 0; /* top-bottom padding */
    box-sizing: border-box;
}

.blog-single-container .fullwidth-title .title-inner {
    max-width: 1240px;      /* boxed width */
    font-size: 54px;
    margin: 0 auto;
    padding: 0 20px;       /* left-right padding inside box */
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.blog-single-container .post-date {
    position: relative;
    left: 0;
    top: 2px;
    font-size: 15px;      
    font-weight: normal;   
    background: transparent;
    color: #333;
  font-family: Helvetica ;
}

.blog-single-container .blog-title {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
   font-family: Helvetica ;
}

.blog-single-container .term-boxes {
    position: relative;
    left: 0;
    bottom: -10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-single-container .term-box {
    font-size: 15px;
    padding: 1px 10px;
    border-radius: 4px;            /* smooth corners */
    background: transparent;        /* transparent background */
    border: 1px solid #2e8b57;     /* green border */
    color: #2e8b57;                 /* green text */
    transition: all 0.3s ease;      /* smooth hover effect */
    cursor: pointer;
  font-family: Helvetica ;
}

.blog-single-container .term-box:hover {
    background: #2e8b57;            /* green background on hover */
    color: #fff;                    /* white text on hover */
    border-color: #2e8b57;          /* border matches background */
}

.blog-single-container .blog-banner {
  max-width: 1200px;
  margin: 40px auto 20px;
}

.blog-single-container .blog-content {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px; /* description er pore space */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  font-family : Helvetica;
}

.blog-single-container .photo-credit {
  font-size: 17px;
  color: #777;
  margin-top: 6px;
  margin-left: 2px;
   font-family : Helvetica;
}

/* =========================
   Subtitle & Description
   ========================= */
.blog-single-container .blog-subtitle {
  font-size: 20px;
  color: #555;
  margin: 10px auto 20px;
  max-width: 900px;
}


/* =========================
  Quote Section
   ========================= */
.blog-single-container .blog-quote-wrap {
  margin: 20px 0;
  max-width: 61%; 
}

.blog-single-container .blog-quote {
  position: relative;
  padding: 40px 20px 20px 0; /* top padding increased for icon */
  margin: 0;
  border-left: none; /* remove left black line */
  background: none; /* remove background if any */
}

.blog-single-container .blog-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px; /* icon right above text */
  width: 52px;
  height: 40px;
  background: url('https://prottyashi.mouliksolutions.com/wp-content/uploads/2025/09/quotes-icon.svg') no-repeat center center;
  background-size: contain;
}


.blog-single-container .quote-text {
  font-size: 32px; /* larger text */
  line-height: 1.4;
  color: #222;
  margin: 0 0 10px 0;
  font-style: normal; /* remove italic */
  text-align: justify; /* left aligned */
}

.blog-single-container .quote-author {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.blog-single-container .quote-author strong {
  font-weight: 600;
  display: inline; /* same line as designation */
 
}

.blog-single-container .quote-author .author-designation {
  display: inline;
  font-size: 14px;
  color: #888;
  margin-left: 8px; /* space between name & designation */
  font-style: normal; 
}

/* =========================
   Extra Image + Description
   ========================= */
.blog-single-container .blog-extra {
  max-width: 1200px;
  margin: 15px auto;
}

.blog-single-container .blog-extra img {
  width: 100%;
  border-radius: 6px;
}

.blog-single-container .blog-extra-description {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-family:Helvetica;
    font-style: italic;
}


/* =========================
   Gallery
   ========================= */
.blog-single-container .blog-gallery {
  max-width: 1200px;
  margin: 20px auto;
}

.blog-single-container .blog-gallery img {
  max-width: 30%;
  margin: 5px;
  border-radius: 5px;
}

/* =========================
   Related posts
   ========================= */
 .blog-single-container .related-posts {
  max-width: 1200px;
  margin: 30px auto;
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
}

   /*===============
   Social Media Share New
   ==================*/
/* Green line */
.blog-single-container .green-line {
    width: 100%;
    height: 2px;
    background-color: #28a745; /* Green */
    margin: 20px 0 12px;
}


/* Social button container */

.blog-single-container .green-line-share {
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
 }
.green-line-share .share-buttons {
    display: flex; /* buttons in row */
    gap: 8px;
    margin-left : auto;
}
.green-line-share .share-buttons .share-text {
    font-size: 14px;
    color: #28a745;
}

/* Individual social button */
.green-line-share .share-buttons .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #000;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.green-line-share .share-buttons .share-btn:hover {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

   
   
   /*================
   Releted Post
   =====================
   */
   
/* Related Posts Title */
.related-posts-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  max-width: 1200px;
}

.related-posts-title .line {
  flex: 1;
  height: 1px;
  background: #000;
  margin: -2px 8px -4px 6px;
}

.related-posts-title h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: #000;
  font-family:Helvetica;
}

/* Related Cards */
.related-list-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.related-card {
  width: calc(33.333% - 13.33px); /* 3 cards per row */
  background: #fff;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.related-card-img img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

.related-card-content {margin-top: 14px;}

.related-card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.related-card-title a {
  color: #222;
  text-decoration: none;
}

.related-card-title a:hover {
  color: #12A652;
}

.related-card-date {
  font-size: 13px;
  color: #888;
}
/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .blog-single-container .post-date {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 8px;
  }

  .blog-single-container .term-boxes {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 10px;
  }

  .blog-single-container .blog-quote-wrap {
    max-width: 100%;
  }

  .blog-single-container .green-line-share {
    padding-right: 0;
  }

  .blog-single-container .share-buttons {
    position: relative;
    top: 10px;
    right: 0;
    justify-content: flex-start;
  }