.article-template__hero-container img {
  width: 100%;
  border-radius: 8px;
}
.article-template__title {
 
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
}
.circle-divider {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}
.article-template__content h2 {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 600;
}
.article-template__back {
  margin-top: 40px;
}
/* Sidebar styles */
.blog-sidebar {
  .blog-sidebar {
    height: 350px;
    overflow-y: auto;
    padding-right: 10px;
    position: sticky;
    top: 20px; /* distance from top when scrolling */
  }
  
}
.blog-sidebar::-webkit-scrollbar {
  width: 6px;
}
.blog-sidebar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.blog-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
}
.blog-card img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-card-content {
  padding: 10px;
  flex: 1;
}
.blog-card-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.blog-card-content .btn {
  font-size: 0.75rem;
  padding: 3px 8px;
}
.article-template__comment-wrapper {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
}