/*==================================================
            BLOG DETAILS
==================================================*/

.blog-details-section {
  padding: 150px 0;
  background: #fff;
}

.blog-details {
  padding-right: 20px;
}

/* Image */

.blog-feature-image img {
  width: 100%;
  height: 450px;
  object-fit: fill;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Title */

.blog-main-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  color: #0b2341;
  margin: 25px 0px ;
}

/* Meta */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
  font-size: 15px;
  color: #666;
}

.blog-meta i {
  color: #ff6b00;
  margin-right: 8px;
}

/*==================================================
            TABLE OF CONTENTS
==================================================*/

.blog-toc{
    background:#f8fbff;
    border:1px solid #dbe8f5;
    border-radius:10px;
    padding:22px 25px;
    margin:35px 0;
}

.blog-toc h2{
    margin:0 0 18px;
    font-size:22px;
    font-weight:700;
    color:#0b2341;
}

.blog-toc ul{
    margin:0;
    padding-left:20px;
}

.blog-toc li{
    margin-bottom:12px;
    line-height:24px;
}

.blog-toc li:last-child{
    margin-bottom:0;
}

.blog-toc a{
    color:#0d4ea6;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:all .3s ease;
}

.blog-toc a:hover{
    color:#ff6b00;
    padding-left:5px;
}

/* Smooth Scroll */

html{
    scroll-behavior:smooth;
}

/* Prevent Fixed Navbar Overlap */

.blog-content h2,
.blog-content h3{
    scroll-margin-top:120px;
}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px){

.blog-toc{
    padding:20px;
}

.blog-toc h2{
    font-size:20px;
}

.blog-toc a{
    font-size:15px;
}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:767px){

.blog-toc{
    padding:18px;
    margin:25px 0;
}

.blog-toc h2{
    font-size:19px;
    margin-bottom:15px;
}

.blog-toc ul{
    padding-left:18px;
}

.blog-toc li{
    margin-bottom:10px;
    line-height:22px;
}

.blog-toc a{
    font-size:14px;
    line-height:22px;
}

.blog-content h2,
.blog-content h3{
    scroll-margin-top:90px;
}

}


/* Content */
.blog-content {
  color: #444;
  font-size: 16px;
  line-height: 34px;
}

.blog-content h1 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2341;
  /* margin-top:45px; */
  margin: 30px 0px;
}
.blog-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0b2341;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 18px;
  line-height: 25px;
  text-align: justify;
  text-justify: inter-word;
  color: #444;
}
.blog-content ul,
.blog-content ol{
    padding-left:22px;
    margin-bottom:30px;
}

.blog-content li{
    margin-bottom:-8px;
}

/*==================================================
            SIDEBAR
==================================================*/

.blog-sidebar {
  position: sticky;
  top: 150px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2341;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Search */

.blog-search {
  display: flex;
  gap: 10px;
}

.blog-search input {
  flex: 1;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  outline: none;
}

.blog-search button {
  border: none;
  background: #0d4ea6;
  color: #fff;
  padding: 0 24px;
  border-radius: 6px;
  transition: 0.3s;
}

.blog-search button:hover {
  background: #ff6b00;
}

/*==================================================
            RECENT POSTS
==================================================*/

.recent-post {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-post:hover {
  text-decoration: none;
}

/* Thumbnail */

.recent-post-image {
  flex: 0 0 80px;
}

.recent-post-image img {
  width: 80px;
  height: 70px;
  object-fit: fill;
  border-radius: 8px;
  display: block;
  transition: 0.3s;
}

.recent-post:hover .recent-post-image img {
  transform: scale(1.05);
}

/* Content */

.recent-post-content {
  flex: 1;
  min-width: 0;
}

/* Title */

.recent-post-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #222;
  transition: 0.3s;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post:hover .recent-post-title {
  color: #0d4ea6;
}

/* Date */

.recent-date {
  margin-top: 8px;
  font-size: 13px;
  color: #888;
}

.recent-date i {
  color: #ff6b00;
  margin-right: 5px;
}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width: 991px) {
  .blog-details {
    padding-right: 0;
  }

  .blog-sidebar {
    position: static;
    margin-top: 50px;
  }

  .blog-feature-image img {
    height: 360px;
  }

  .blog-main-title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .blog-details-section {
    padding: 100px 0 0;
  }

  .blog-feature-image img {
    height: 240px;
  }

  .blog-main-title {
    font-size: 26px;
    line-height: 36px;
  }

  .blog-meta {
    gap: 12px;
    font-size: 14px;
  }

  .blog-content {
    font-size: 16px;
    line-height: 30px;
  }

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-content h3 {
    font-size: 20px;
  }
  .blog-content p {
    text-align: left;
    line-height: 28px;
  }
  .sidebar-widget {
    padding: 22px;
  }

  .sidebar-widget h3 {
    font-size: 22px;
  }

  .blog-search {
    flex-direction: column;
  }
  .blog-search input {
    padding: 10px;
  }

  .blog-search button {
    height: 40px;
  }

  /* Recent Posts */

  .recent-post {
    gap: 12px;
    padding: 12px 0;
  }

  .recent-post-image {
    flex: 0 0 70px;
  }

  .recent-post-image img {
    width: 70px;
    height: 60px;
  }

  .recent-post-title {
    font-size: 14px;
    line-height: 20px;
  }

  .recent-date {
    font-size: 12px;
  }
}


/* start  blog2 css */
/*=========================================
        COMPARISON TABLE
=========================================*/

.comparison-table{
    width:100%;
    margin:35px 0;
    border:1px solid #e4e4e4;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.comparison-header,
.comparison-row{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.comparison-header div{
    background:#0b4ea2;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:18px;
    text-align:center;
}

.comparison-row div{
    padding:18px;
    border-top:1px solid #ececec;
}

.comparison-row div:first-child{
    border-right:1px solid #ececec;
}

.comparison-row:nth-child(even){
    background:#fafafa;
}

@media(max-width:767px){

.comparison-header{
    display:none;
}

.comparison-row{
    grid-template-columns:1fr;
}

.comparison-row div{
    border-right:none;
    border-bottom:1px solid #ececec;
}

.comparison-row div:first-child{
    background:#f5f8fd;
    font-weight:600;
    color:#0b4ea2;
}

}
/* end  blog2 css */