/**
 * Mapa web — readable HTML sitemap.
 */

body.page-sitemap,
body.page-sitemap #main {
  background: #f5f6f8;
  color: #1a1a1f;
}

body.page-sitemap .page-hero--sitemap {
  background: linear-gradient(135deg, #0d0d10 0%, #151820 55%, #0f1419 100%);
  border-bottom: 1px solid rgba(60, 183, 255, 0.18);
}

body.page-sitemap .page-hero--sitemap .page-hero__title,
body.page-sitemap .page-hero--sitemap .page-hero__lead {
  color: #fff;
}

body.page-sitemap .page-hero--sitemap .page-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

body.page-sitemap .section--sitemap {
  padding: 3rem 0 4rem;
}

body.page-sitemap .sitemap {
  display: grid;
  gap: 2.5rem;
}

body.page-sitemap .sitemap__section {
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

body.page-sitemap .sitemap__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #0b2b46;
}

body.page-sitemap .sitemap__list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 1;
  column-gap: 2rem;
}

body.page-sitemap .sitemap__list li {
  break-inside: avoid;
  margin: 0 0 0.55rem;
  line-height: 1.45;
}

body.page-sitemap .sitemap__list a {
  color: #0f5fa8;
  text-decoration: none;
  font-weight: 600;
}

body.page-sitemap .sitemap__list a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-sitemap .sitemap__empty {
  margin: 0;
  color: #5c5c66;
}

body.page-sitemap .interlink-block {
  background: #eef1f6;
}

body.page-sitemap .interlink-block .interlink,
body.page-sitemap .interlink-block .interlink__link {
  color: #1a1a1f;
}

@media (min-width: 768px) {
  body.page-sitemap .sitemap__list {
    columns: 2;
  }
}

@media (min-width: 1100px) {
  body.page-sitemap .sitemap__list {
    columns: 3;
  }
}
