/* Blog Styles */

/* Blog Container */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Blog Sidebar */
.blog-sidebar {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: fit-content;
}

.blog-categories h3 {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.category-item:last-child {
  border-bottom: none;
}

/* Blog Content */
.blog-content {
  padding: 0 1rem;
}

.blog-list h2 {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.pinned-blogs, .new-blogs {
  margin-bottom: 2rem;
}

/* Blog Article */
.blog-article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-article {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.blog-intro {
  color: #495057;
  font-style: italic;
}

.blog-content {
  line-height: 1.8;
}

/* Related Products */
.related-products {
  margin-top: 3rem;
}

.blog-product {
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-sidebar, .blog-content {
    width: 100%;
  }

  .blog-sidebar {
    margin-bottom: 2rem;
  }

  .blog-content {
    padding: 0;
  }
}
