.blog_list {
  position: relative;
}
.blog_list .loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  /* z-index: 9999; */
}
/* 
  .loader {
      width: 40px;
      height: 40px;
      border: 4px solid #ccc;
      border-top-color: #000;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
  } */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.blog_category_content {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  gap: 16px;
  padding: 60px 0px 40px;
}

.blog_category_content .blog_select_item {
  max-width: 460px;
  width: 100%;
}

.blog_category_content #category-dropdown {
  position: relative;
  padding: 16px 80px 16px 32px;
  border: 1px solid var(--dark-gray);
  border-radius: 30px;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-gray);
  background-color: transparent !important;
  appearance: none;
  cursor: pointer;
  margin-left: auto;
  outline: none;
  background-image: url("/wp-content/uploads/2025/10/chevron-left.svg");
  background-size: 16px;
  background-position: 90% center;
  background-repeat: no-repeat;
  width: 100%;
}

.blog-search .search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.blog-search .search-input {
  width: 100%;
  padding: 16px 50px 16px 32px;
  border: 1px solid var(--dark-gray);
  border-radius: 50px;
  font-size: 16px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-gray);
}

.blog-search .search-input::placeholder {
  color: var(--grayish-blue);
}

.blog-search .search-button {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grass-green);
  padding: 8px;
  transition: color 0.3s;
}

.blog_list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.blog_list .inner_article_card {
  width: 100%;
  max-width: calc((100% / 2) - 10px);
  height: 100%;
    justify-content: space-around;
    min-height: -webkit-fill-available;
}

.inner_article_card {
  padding: 30px;
  background-color: var(--white);
  box-shadow: 0px 4px 16px 0px #00000014;
  display: flex !important;
  gap: 20px;
  border-radius: 20px;
  height: 100%;
}

.main_article_card .slick-slide > div {
  display: flex
;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.inner_article_card .article_card_left {
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}

.inner_article_card .article_card_right {
  width: 100%;
  position: relative;
  padding-top: 38.77%;
}

.inner_article_card .article_card_right img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.article_category {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}

.article_category span {
  padding: 8px 16px;
  background-color: #5cad2f52;
  border-radius: 100px;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--dark-gray);
}


.article_info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.article_info > a.article_heading_content{
  display: flex;
  flex-direction: column;
  align-items: start !important;
  gap: 10px;
  
}

.article_info > a.article_heading_content::after{
display: none !important;
}

.article_info > a.article_heading_content p{
  font-size: 14px;
  line-height: 20px;
  color: var(--grass-green);
}


.article_info h3 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--dark-charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 108px;
}

.article_info p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--grayish-blue);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inner_article_card .article_card_left a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--grass-green);
}

.inner_article_card .article_card_left a::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/10/Chevron_Right_Duo_green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}

/* Blog detail page */

.blog_detail_wrapper {
  padding: 40px 0px;
}

.blog_detail_wrapper .section_heading {
  margin-bottom: 24px;
}
.blog_detail_wrapper .section_heading,
.blog_detail_wrapper .section_heading h2 {
  text-align: start;
}

.blog_author_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 0px 16px;
  border-bottom: 1px solid var(--ghost-white);
}

.blog_author_main .blog_author_detail {
  display: flex;
  gap: 8px;
}

.blog_author_main .blog_author_detail .author_image {
  display: flex;
}
.blog_author_main .blog_author_detail .author_image img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.blog_author_main .blog_author_detail .author_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blog_author_main .blog_author_detail .author_info p {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--coco-black);
}

.blog_author_main .blog_author_detail .author_info span {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--grayish-blue);
}

.post_meta-detail {
  display: flex;
  align-items: center;
  gap: 40px;
}

.post_meta-detail .post_meta_item span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--dark-gray);
}

.post_meta-detail .post_meta_item span img {
  width: 20px;
  height: 20px;
}

.blog_article_main {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.blog_article_main .blog_container .blog_feature_image {
  box-shadow: 0px 4px 7px 0px #0000000d;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog_article_main .blog_container .blog_feature_image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  min-height: 600px;
  border-radius: 20px;
  object-fit: cover;
}

.blog_summary {
  border-radius: 20px;
  padding: 32px 24px;
  background-color: var(--cultured-white);
}

.blog_summary_title {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.blog_summary_title h3 {
  width: 100%;
  max-width: max-content;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: var(--black);
}

.blog_summary_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--grayish-blue);
}

.blog_summary_title::after {
  content: "";
  border-bottom: 1px dashed var(--dark-charcoal);
  width: 100%;
}

.blog_inner_details {
  padding: 40px 0px 40px;
}

.blog_inner_details h3 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.blog_inner_details h3 b{
  text-transform: capitalize;
  
}

.blog_inner_details h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.25;
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.blog_inner_details h5 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.blog_inner_details h6 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--dark-gray);
  margin-bottom: 12px;
}



.blog_inner_details p,
.blog_inner_details span,
.blog_inner_details li {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--grayish-blue);
}

.blog_inner_details ul,
.blog_inner_details p {
  margin-bottom: 32px;
}
.blog_inner_details p b , .blog_inner_details li b , .blog_inner_details span b {
  font-weight: 700;
  color: #333333;
}

.blog_inner_details ul , .blog_inner_details ol {
  padding-left: 30px;
}
.blog_inner_details ul li  {
  margin-bottom: 10px;
  list-style-type: disc !important;
}

.blog_inner_details ol li{
  list-style-type: decimal ;
  margin-bottom: 10px;

} 


.blog_inner_details p strong,
.blog_inner_details li strong {
  color: var(--dark-gray);
}
.blog_inner_details img{
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}


.blog_inner_details h1 {
  font-size: 48px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--dark-charcoal);
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: 1px solid var(--dark-charcoal);
}

.pagination span.current {
  border: 1px solid var(--grass-green);
  color: var(--grass-green);
  background-color: #5cad2f52;
}

a.prev.page-numbers {
  transform: rotate(180deg);
}

@media screen and (max-width: 1199px) {
  .inner_article_card {
    padding: 20px;
  }

  .article_info h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .article_info h3{
    min-height: unset;
  }
  .blog_category_content #category-dropdown,
  .blog-search .search-input {
    padding: 10px 40px 10px 22px;
    font-size: 16px;
    line-height: 20px;
  }

  .blog_category_content .blog_select_item {
    max-width: 250px;
  }
  .blog_inner_details h1{
    font-size: 38px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1024px) {
  .article_info h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .article_category span {
    font-size: 14px;
    padding: 8px;
  }

  /* Blog details */

  .blog_author_main .blog_author_detail .author_info p {
    font-size: 18px;
    line-height: 28px;
  }

  .post_meta-detail {
    gap: 20px;
  }

  .post_meta-detail .post_meta_item span {
    font-size: 16px;
  }
  .blog_summary {
    padding: 20px;
  }
  .blog_summary_desc p {
    font-size: 18px;
  }

  .blog_inner_details h3 {
    font-size: 30px;
    line-height: 1.25;
  }

  .blog_inner_details h4 {
    font-size: 26px;
    line-height: 1.25;
  }
  .blog_inner_details h5 {
    font-size: 22px;
    line-height: 1.25;
  }
  .blog_inner_details h6 {
    font-size: 18px;
    line-height: 1.25;
  }
  .blog_inner_details p,
  .blog_inner_details span,
  .blog_inner_details li {
    font-size: 18px;
    line-height: 1.75;
  }
  .blog_inner_details p {
    margin-bottom: 16px;
  }
  .blog_inner_details h1 {
    font-size: 35px;
    line-height: 1.5;
}
}

@media screen and (max-width: 991px) {
  .inner_article_card {
    flex-direction: column-reverse;
  }
  .inner_article_card .article_card_right {
    padding-top: 58.77%;
  }

  .inner_article_card .article_card_left {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .blog_category_content {
    padding: 40px 0px 20px;
  }

  /* blog_detail */

  .blog_summary_desc p {
    font-size: 16px;
  }

  .blog_summary_desc span {
    font-size: 14px;
  }

  .blog_inner_details h3 {
    font-size: 28px;
    line-height: 1.25;
  }

  .blog_inner_details h4 {
    font-size: 24px;
    line-height: 1.25;
  }
  .blog_inner_details h5 {
    font-size: 20px;
    line-height: 1.25;
  }
  .blog_inner_details h6 {
    font-size: 16px;
    line-height: 1.25;
  }
  .blog_inner_details p,
  .blog_inner_details span,
  .blog_inner_details li {
    font-size: 16px;
    line-height: 1.75;
  }
  .blog_inner_details p {
    margin-bottom: 12px;
  }
  .post_meta-detail {
    width: 100%;
    justify-content: space-between;
  }
  .blog_inner_details {
    padding: 20px 0px;
  }
  .blog_inner_details h1 {
    font-size: 30px;
    line-height: 1.5;
}
}

@media screen and (max-width: 575px) {
  .inner_article_card {
    max-width: 100% !important;
  }
  .blog_category_content .blog_select_item {
    max-width: 200px;
  }
  .blog-search {
    width: 100%;
  }
  .blog-search .search-form {
    max-width: 250px;
    width: 100%;
    margin-left: auto;
  }

  .blog_inner_details h3 {
    font-size: 24px;
  }

  .blog-search .search-form{
    max-width: 100%;
  }
  .blog_category_content .blog_select_item{
    max-width: 100%;
  }
  .pagination a, .pagination span {
    height: 46px;
    width: 46px;
  
  }
  .blog_inner_details ul, .blog_inner_details ol {
    padding-left: 20px;
}

}
