
/* TOC item container */
.guide__item {
  margin-bottom: 0.75rem;
}

/* Make entire row clickable */
.guide__item a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}

/* Hover effect */
.guide__item a:hover {
  background-color: #e9ecef;
  transform: translateX(4px);
}

/* Active click state */
.guide__item a:active {
  background-color: #dee2e6;
}

/* Optional subtle separator look */
.guide__item:not(:last-child) a {
  border-bottom: 1px solid #f1f1f1;
}

/* Improve spacing on smaller screens */
@media (max-width: 768px) {
  .guide__item a {
    padding: 1rem;
  }
}
