.blog-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px;
  border-radius: 16px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.blog-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar-heading {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin: 0;
}

.blog-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-category-link {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-category-link:hover,
.blog-category-link.active {
  color: var(--blog-sidebar-active-color, #d23197) !important;
}

.trending-posts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trending-post-item {
  display: flex;
}

.trending-post-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  width: 100%;
}

.trending-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.trending-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trending-post-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.trending-post-title {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-post-date {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

/* Tablet and Mobile - Full Width */
@media (max-width: 1024px) {
  .blog-sidebar {
    position: static;
    max-height: none;
  }
}
