/* ==================================
   ServBank Sitemap Styles
   Single-column hierarchical bullet list
   ================================== */

.servbank-sitemap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: inherit;
  color: #333;
}

/* Home Page link at top */
.sitemap-root {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sitemap-home a {
  font-size: 18px;
  font-weight: 600;
  color: #05293e;
  text-decoration: none;
}

.sitemap-home a:hover {
  color: #2271b1;
  text-decoration: underline;
}

/* Each top-level section */
.sitemap-section {
  margin-bottom: 28px;
}

/* Section title (top-level parent) */
.sitemap-section-title {
  display: block;
  font-size: 37px;
  font-weight: 700;
  color: #05293e;
  margin-bottom: 6px;
}

.sitemap-section-title a {
  color: #05293e;
  text-decoration: none;
}

.sitemap-section-title a:hover {
  color: #2271b1;
  text-decoration: underline;
}

/* Nested bullet lists */
.sitemap-list,
.sitemap-list ul {
  list-style: disc;
  margin: 4px 0 4px 24px;
  padding: 0;
}

.sitemap-list ul {
  list-style: circle;
}

.sitemap-list ul ul {
  list-style: square;
}

.sitemap-list li {
  margin: 3px 0;
  line-height: 1.6;
}

/* Parent labels (non-clickable category names) */
.sitemap-label {
  font-weight: 600;
  color: #333;
  font-size: 24px;
}

/* Links (leaf items) */
.sitemap-list a {
  color: #2271b1;
  text-decoration: none;
  font-size: 15px;
}

.sitemap-list a:hover {
  color: #05293e;
  text-decoration: underline;
}

/* ==================================
   Responsive
   ================================== */
@media (max-width: 768px) {
  .servbank-sitemap {
    padding: 24px 16px 40px;
  }

  .sitemap-section {
    margin-bottom: 22px;
  }

  .sitemap-section-title {
    font-size: 16px;
  }

  .sitemap-list,
  .sitemap-list ul {
    margin-left: 20px;
  }

  .sitemap-list a,
  .sitemap-label {
    font-size: 14px;
  }
}
