.anchor-menu {
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 8px;
  min-width: 320px;
}

.anchor-menu-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #919196;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.anchor-link {
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  text-transform: capitalize;
  display: inline-block;
  padding: 12px 0;
}

.anchor-link:hover {
  color: #c8a0f0;
}

.anchor-link:hover::after {
  content: '';
  position: absolute;
  left: -23px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #c8a0f0;
}

@media screen and (max-width: 1000px) {
  .anchor-menu {
    max-width: 600px;
    width: 100%;
  }
}
