/* Root Node (Home) */
.sitemap .rootNode {
 font-family: 'Barlow-Regular';
  font-size: 20px;
  display: inline-block;
  margin-bottom: 6px;
  text-decoration: none;
  -webkit-text-fill-color: #0000;
  background: linear-gradient(to right, #f47627, #fca951);
  -webkit-background-clip: text;
}
.sitemap .rootNode:hover {
  color: #007bff;
}

/* Parent Nodes */
.sitemap .parentNode {
  font-family: 'Barlow-Regular';
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0 5px;
  -webkit-text-fill-color: #0000;
  background: linear-gradient(to right, #f47627, #fca951);
  -webkit-background-clip: text;
}
.sitemap .parentNode:hover {
  color: #007bff;
}

/* Sub-list */
.sitemap ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
.sitemap ul li {
  margin: 4px 0;
}

/* Child Links */
.sitemap ul li a {
  font-family: 'Barlow-Regular';
  font-size: 18px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sitemap ul li a:hover {
  color: #007bff;
}

.sitemap > ul > li:last-child {
  border-bottom: none;
}
