/* Page Menu v2.1 - aligned with TOC design */
.buzl-learn-section {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: inherit;
}

.buzl-learn-section .sidebar-title {
  font-size: 16px;
  margin: 0 0 10px;
  color: #2e323c;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.buzl-learn-list {
  list-style: none;
  margin: 0;
  padding-left: 12px; /* Align list with TOC offset */
}

.buzl-learn-list li {
  margin: 6px 0;
  line-height: 1.5;
}

.buzl-learn-list a {
  color: var(--xc-theme-primary, #4E43FA);
  text-decoration: none;
  position: relative;
  transition: all .18s ease;
  padding-left: 8px;
}

.buzl-learn-list a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 1px;
  height: 16px;
  background: var(--xc-theme-primary, #4E43FA);
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
}

.buzl-learn-list a:hover::before {
  transform: translateY(-50%) scaleY(1);
  opacity: 1;
}
