@import url(https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/7.4.47/css/materialdesignicons.min.css);
.blog-detail-page {
  max-width: 1024px;
  margin: 60px auto;
}
@media (max-width: 1199px) {
  .blog-detail-page {
    margin: 50px auto;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .blog-detail-page {
    margin: 40px auto;
  }
}
@media (max-width: 767px) {
  .blog-detail-page {
    margin: 30px auto;
  }
}
.blog-detail-page .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.blog-detail-page .section-title h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .blog-detail-page .section-title h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .section-title h3 {
    font-size: 24px;
  }
}
.blog-detail-page .section-title h6 {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  text-transform: uppercase;
}
.blog-detail-page .section-info h3, .blog-detail-page .section-info h4, .blog-detail-page .section-info h5 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #171919;
}
@media (max-width: 991px) {
  .blog-detail-page .section-info h3, .blog-detail-page .section-info h4, .blog-detail-page .section-info h5 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .section-info h3, .blog-detail-page .section-info h4, .blog-detail-page .section-info h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.blog-detail-page .section-info ol {
  counter-reset: my-counter; /* Initialize the counter */
  list-style: none; /* Remove default numbers */
  margin: 0 0 30px;
  padding: 0 0 0 20px;
}
.blog-detail-page .section-info ol li {
  counter-increment: my-counter; /* Increase counter per <li> */
  position: relative;
  padding-left: 30px;
}
.blog-detail-page .section-info ol li:not(:first-child) {
  margin-top: 15px;
}
.blog-detail-page .section-info ol li::before {
  content: counter(my-counter) ") "; /* Display counter */
  position: absolute;
  left: 0;
  font-weight: bold;
}
.blog-detail-page .section-info ul {
  margin: 0 0 30px;
  padding: 0 0 0 20px;
  list-style: none;
}
.blog-detail-page .section-info ul li {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  color: #64748B;
  display: flex;
}
@media (max-width: 767px) {
  .blog-detail-page .section-info ul li {
    padding-left: 30px;
    font-size: 16px;
  }
}
.blog-detail-page .section-info ul li:not(:first-child) {
  margin-top: 15px;
}
.blog-detail-page .section-info ul li:before {
  content: "\e55e"; /* square-check-big lucid-icon code */
  font-family: lucide !important;
  position: absolute;
  left: 0;
  top: 2px;
}
.blog-detail-page .image-container {
  margin-bottom: 30px;
  padding: 60px;
  background-color: #EFF9FB;
  border-radius: 28px;
}
@media (max-width: 1199px) {
  .blog-detail-page .image-container {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .blog-detail-page .image-container {
    padding: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .image-container {
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
  }
}
.blog-detail-page .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .blog-detail-page .image-container img {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .image-container img {
    border-radius: 12px;
  }
}
.blog-detail-page .related-posts-section {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .blog-detail-page .related-posts-section {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .related-posts-section {
    margin-top: 40px;
  }
}
.blog-detail-page .related-posts-section .blog-listing .row {
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .blog-detail-page .related-posts-section .blog-listing .row {
    margin: 0 -10px;
  }
}
.blog-detail-page .related-posts-section .blog-listing .col {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .blog-detail-page .related-posts-section .blog-listing .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .related-posts-section .blog-listing .col {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .blog-detail-page .related-posts-section .blog-listing .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.blog-detail-page .related-posts-section .blog-listing .col-container {
  border: 1px solid #DDE4EE;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-detail-page .related-posts-section .blog-listing .col-container:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.blog-detail-page .related-posts-section .blog-listing .col-container figure {
  margin: 0;
}
.blog-detail-page .related-posts-section .blog-listing .col-container figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-page .related-posts-section .blog-listing .col-container .post-info {
  padding: 20px;
}
@media (max-width: 991px) {
  .blog-detail-page .related-posts-section .blog-listing .col-container .post-info {
    padding: 15px;
  }
}
.blog-detail-page .related-posts-section .blog-listing .col-container .post-info h4 {
  font-size: 18px;
  color: #64748B;
  margin: 0 0 10px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .blog-detail-page .related-posts-section .blog-listing .col-container .post-info h4 {
    font-size: 16px;
  }
}
.blog-detail-page .related-posts-section .blog-listing .col-container .post-info .post-meta {
  font-size: 14px;
}

.post-navigation {
  margin-top: 60px;
  border-top: 1px solid #DDE4EE;
  padding-top: 30px;
}
@media (max-width: 991px) {
  .post-navigation {
    margin-top: 50px;
    padding-top: 25px;
  }
}
@media (max-width: 767px) {
  .post-navigation {
    margin-top: 40px;
    padding-top: 20px;
  }
}
.post-navigation a {
  color: #64748B;
  text-decoration: none;
  display: block;
  padding: 15px;
  border: 1px solid #DDE4EE;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}
.post-navigation a:hover {
  background-color: #EFF9FB;
}
@media (max-width: 767px) {
  .post-navigation a {
    padding: 12px;
    border-radius: 8px;
  }
}
.post-navigation .btn-content-title {
  font-size: 14px;
  color: #12A493;
  margin-bottom: 5px;
}
.post-navigation .btn-content h4 {
  margin: 0;
  font-size: 18px;
  color: #171919;
}
@media (max-width: 991px) {
  .post-navigation .btn-content h4 {
    font-size: 16px;
  }
}
.post-navigation .next-col {
  text-align: right;
}
@media (max-width: 767px) {
  .post-navigation .next-col {
    margin-top: 15px;
  }
}

/* Modern Blog Banner Styles */
#blog-banner {
  position: relative;
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 32px;
  background-color: #EFF9FB;
  overflow: hidden;
}
#blog-banner:before {
  content: "";
  width: 129px;
  height: 190px;
  background: url(../images/square-left-pattern.svg) 0 0 no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#blog-banner:after {
  content: "";
  width: 129px;
  height: 190px;
  background: url(../images/square-right-pattern.svg) 0 0 no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#blog-banner .banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#blog-banner .banner-heading {
  margin-bottom: 40px;
}
#blog-banner .banner-heading h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #171919;
  text-transform: uppercase;
}
#blog-banner .banner-heading h1 span {
  color: #12A493;
  position: relative;
}
#blog-banner .banner-heading h1 span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #12A493;
  border-radius: 2px;
}
#blog-banner .banner-heading p {
  font-size: 20px;
  color: #64748B;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.85;
}
@media (max-width: 991px) {
  #blog-banner {
    padding: 60px 20px;
  }
  #blog-banner:before, #blog-banner:after {
    width: 80px;
    height: 120px;
    background-size: 80px auto;
  }
  #blog-banner .banner-heading h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  #blog-banner {
    padding: 50px 15px;
  }
  #blog-banner:before, #blog-banner:after {
    width: 60px;
    height: 90px;
    background-size: 60px auto;
  }
  #blog-banner .banner-heading h1 {
    font-size: 32px;
  }
}