

.blog-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin: 10px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.read-time {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 3px;
}

.blog-content {
  padding: 18px 16px 24px;
}

.blog-title {
  font-size: 14px;
  color: #1d1d1d;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-weight: bold;
  color: #e67e22;
  text-decoration: none;
  font-size: 15px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Blog details css start */

 body.blog-body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.7;
      color: #333;
      background-color: #fff;
      overflow-x: hidden;
    }

    .blog-container {
      display: flex;
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    .blog-main-content {
      flex: 1 1 65%;
      padding-right: 20px;
      overflow-y: auto;
      max-height: 100vh;
      scrollbar-width: none;
    }
    .blog-main-content::-webkit-scrollbar {
      display: none;
    }

    .blog-sidebar {
      flex: 0 0 30%;
      position: sticky;
      top: 20px;
      height: fit-content;
      align-self: flex-start;
    }

    .blog-image {
      width: 100%;
      border-radius: 10px;
      margin: 20px 0;
    }

    .blog-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #222;
    }

    .blog-subtitle {
      font-size: 22px;
      font-weight: 600;
      margin: 30px 0 15px;
    }

    .blog-text {
      font-size: 16px;
      margin-bottom: 16px;
    }

    /* Sidebar */
    .blog-sidebar-box {
      background: #f9f9f9;
      border: 1px solid #ddd;
      padding: 16px;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .blog-sidebar-box h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .blog-sidebar-box ul {
      list-style: none;
    }

    .blog-sidebar-box ul li {
      font-size: 14px;
      margin: 8px 0;
    }

    .blog-related-products img {
      width: 40px;
      min-width: 40px;
      height: 40px;
      max-height: 40px;
      border-radius: 6px;
      margin-right: 10px;
    }

    .blog-related-products li {
      display: flex;
      align-items: center;
      font-size: 14px;
      margin: 10px 0;
    }

    .blog-highlight {
      font-weight: 600;
    }

    .blog-graph-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin: 20px 0;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 992px) {
      .blog-container {
        flex-direction: column;
      }

      .blog-main-content {
        max-height: unset;
        padding-right: 0;
      }

      .blog-sidebar {
        position: relative;
        top: unset;
        width: 100%;
      }
    }
/* Blog details css end */