/* ── Page Banner ─────────────────────────────────────────────────────────── */
.page-banner {
  position: relative;
  background: var(--powder-blue);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner__inner {
  position: relative;
  z-index: 2;
  padding: var(--md-2) var(--sm-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sm-2);
}

.page-banner__title {
  font-size: var(--headline-lg-fs);
  line-height: var(--headline-lg-lh);
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
}

.page-banner__molecule {
  position: absolute;
  width: clamp(140px, 14vw, 200px);
  max-width: 40%;
  pointer-events: none;
  z-index: 1;
}

.page-banner__molecule--left  { left: 0;  bottom: 0; transform: translate(-10%, 10%); }
.page-banner__molecule--right { right: 0; bottom: 0; transform: translate(0, 10%); }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--xs-1);
  font-size: var(--breadcrumb-default-fs);
  line-height: var(--breadcrumb-default-lh);
  flex-wrap: wrap;
  justify-content: center;
}

.page-breadcrumb a { color: var(--dark-blue); }
.page-breadcrumb a:hover { color: var(--highlight-blue); }
.page-breadcrumb__sep { color: var(--dark-50); }
.page-breadcrumb__active { color: var(--body-blue); font-weight: 600; }

/* ── Sitemap Section ─────────────────────────────────────────────────────── */
.sitemap-section {
  padding: var(--lg-1) 0 var(--lg-2);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--md-2) var(--lg-1);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

/* ── List styles ─────────────────────────────────────────────────────────── */
.sitemap-col ul {
  list-style: disc;
  padding-left: var(--sm-2);
  margin: 0;
}

.sitemap-col ul ul {
  list-style: circle;
  margin-top: var(--xs-2);
}

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

.sitemap-col li {
  font-size: var(--body-md-fs);
  line-height: var(--body-md-lh);
  color: var(--body-blue);
  margin-bottom: var(--xs-2);
}

.sitemap-col a {
  color: var(--body-blue);
  transition: color 0.15s ease;
}

.sitemap-col a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
