.anchor-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.anchor-content {
  flex: 1;
  min-width: 0;
}

.anchor-menu-container {
  width: 260px;
  position: sticky;
  top: 100px;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #fff3e0;
  border-left: 4px solid #ff6f00;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.anchor-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anchor-menu a {
  display: block;
  text-decoration: none;
  color: #ff6f00;
  margin-bottom: 10px;
  transition: 0.3s;
  padding-left: 4px;
  border-left: 3px solid transparent;
}

.anchor-menu a.h2 { padding-left: 16px; }
.anchor-menu a.h3 { padding-left: 28px; }

.anchor-menu a:hover,
.anchor-menu a.active {
  font-weight: bold;
  background-color: #ffe0b2;
  border-left-color: #ff6f00;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .anchor-menu-container {
    display: none;
  }
}
