/* Change sidebar categories list styling */

.wp-block-categories-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-family: 'Inter', sans-serif;
}

.wp-block-categories-list li {
  margin-bottom: 6px; /* optional spacing between items */
}

.wp-block-categories-list li a {
  font-size: 16px;
  font-weight: 400;
  color: #162127; /* or #666666 for body text */
  text-decoration: none;
}

.wp-block-categories-list li a:hover {
  color: #e02b20; /* your brand highlight */
  text-decoration: underline;
}

