/**
 * Hub — Sidebar / TOC Styles
 * Боковое меню навигации и Table of Contents.
 */

/* ===== SIDEBAR CORE ===== */
.blog-sidebar p {
  margin-bottom: 10px;
}
.blog-sidebar a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-sidebar a:hover {
  color: #007bff;
}
.blog-sidebar a.current {
  color: #007bff;
  font-weight: bold;
}

/* ===== TOC TITLE ===== */
.blog-sidebar__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* ===== TOC NAVIGATION ===== */
.blog-sidebar__nav {
  position: sticky;
  top: 20px;
}
.blog-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar__nav li {
  margin-bottom: 8px;
}
.blog-sidebar__nav a {
  display: block;
  padding: 5px 0;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.blog-sidebar__nav a:hover {
  color: #007bff;
  padding-left: 5px;
}
.blog-sidebar__nav a.current {
  color: #007bff;
  font-weight: bold;
  padding-left: 5px;
}
