/**
 * Human sitemap page — polished filterable directory.
 * Scoped to html[data-daab-page-id="sitemap"].
 */

html[data-daab-page-id="sitemap"] body.sitemap-page {
  --sm-accent: var(--blue-700);
  --sm-accent-soft: rgba(0, 105, 180, 0.08);
  --sm-accent-line: rgba(0, 105, 180, 0.18);
  --sm-ink-muted: rgba(8, 38, 59, 0.66);
  --sm-card: #ffffff;
  --sm-panel: linear-gradient(165deg, #ffffff 0%, #f3f9fd 100%);
  --sm-tone: var(--blue-700);
  --sm-tone-soft: rgba(0, 105, 180, 0.1);
  --sm-tone-mid: rgba(0, 105, 180, 0.22);
  --sm-tone-deep: #004f8a;
}

/* Title left + summary panel right (same pattern as legal/content heroes) */
html[data-daab-page-id="sitemap"] .hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 20px !important;
}

html[data-daab-page-id="sitemap"] .hero-wrap > section {
  min-width: 0;
}

html[data-daab-page-id="sitemap"] .hero-wrap > section > h1 {
  margin: 0;
}

html[data-daab-page-id="sitemap"] .hero-wrap > section > .page-hero-subtitle {
  display: block;
  margin: 0.4rem 0 0;
  max-width: 36rem;
}

html[data-daab-page-id="sitemap"] .hero-panel {
  align-self: start !important;
  padding: 0 !important;
  max-width: none;
}

html[data-daab-page-id="sitemap"] .panel-card {
  padding: 16px 18px !important;
  border: 1px solid var(--sm-accent-line) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 10px 28px rgba(8, 38, 59, 0.06);
}

html[data-daab-page-id="sitemap"] .panel-title {
  margin: 0 0 8px !important;
  color: var(--color-heading-blue);
  text-align: left;
}

html[data-daab-page-id="sitemap"] .panel-copy,
html[data-daab-page-id="sitemap"] .panel-copy p {
  margin: 0 !important;
  color: var(--sm-ink-muted);
}

html[data-daab-page-id="sitemap"] .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Atmosphere behind main content */
html[data-daab-page-id="sitemap"] .sitemap-main {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: -12px auto 0;
  padding: 0 0 72px;
  z-index: 1;
}

html[data-daab-page-id="sitemap"] .sitemap-main::before {
  display: none;
}

html[data-daab-page-id="sitemap"] .sitemap-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(0, 105, 180, 0.045) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

/* Filter / jump controls — not sticky so section labels can dock under the nav */
html[data-daab-page-id="sitemap"] .sitemap-controls {
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  padding: 18px 20px 16px;
  border: 1px solid var(--sm-accent-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 36px rgba(8, 38, 59, 0.08);
  animation: sm-rise 0.45s ease both;
}

html[data-daab-page-id="sitemap"] .sitemap-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

html[data-daab-page-id="sitemap"] .sitemap-search {
  position: relative;
  min-width: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--blue-600);
  opacity: 0.75;
  pointer-events: none;
}

html[data-daab-page-id="sitemap"] .sitemap-search__input {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 46px 12px 46px;
  border: 1px solid var(--sm-accent-line);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #f7fbfe, #eef7fc);
  color: var(--ink);
  font: inherit;
  font-size: 15.5px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

html[data-daab-page-id="sitemap"] .sitemap-search__input::placeholder {
  color: rgba(8, 38, 59, 0.42);
}

html[data-daab-page-id="sitemap"] .sitemap-search__input:hover {
  border-color: rgba(0, 105, 180, 0.32);
}

html[data-daab-page-id="sitemap"] .sitemap-search__input:focus {
  border-color: var(--sm-accent);
  background: #fff;
  box-shadow: var(--shadow-focus);
}

html[data-daab-page-id="sitemap"] .sitemap-search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--sm-ink-muted);
  cursor: pointer;
}

html[data-daab-page-id="sitemap"] .sitemap-search__clear[hidden] {
  display: none !important;
}

html[data-daab-page-id="sitemap"] .sitemap-search__clear:hover,
html[data-daab-page-id="sitemap"] .sitemap-search__clear:focus-visible {
  background: var(--sm-accent-soft);
  color: var(--ink);
}

html[data-daab-page-id="sitemap"] .sitemap-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--sm-accent-soft);
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

html[data-daab-page-id="sitemap"] .sitemap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 14px 0 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid rgba(0, 105, 180, 0.1);
}

/* Match site section-nav chips (eldar / forum TOC): tint + blue text, not white-on-navy. */
html[data-daab-page-id="sitemap"] .sitemap-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--daab-touch-min, 44px);
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-surface-filter-chip);
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, font-weight 0.15s ease, box-shadow 0.15s ease;
}

html[data-daab-page-id="sitemap"] .sitemap-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(0, 105, 180, 0.1);
  font-size: 0.95rem;
  line-height: 1;
}

html[data-daab-page-id="sitemap"] .sitemap-chip:hover {
  background: var(--color-tint-blue);
  color: var(--blue-dark);
  border-color: var(--color-border-blue-subtle);
}

html[data-daab-page-id="sitemap"] .sitemap-chip:focus-visible {
  background: var(--color-tint-blue);
  color: var(--blue-dark);
  border-color: var(--color-border-blue-subtle);
  outline: 2px solid var(--color-border-focus);
  outline-offset: 2px;
}

html[data-daab-page-id="sitemap"] .sitemap-chip.is-active,
html[data-daab-page-id="sitemap"] .sitemap-chip[aria-current="true"] {
  background: var(--color-tint-blue);
  color: var(--blue-dark);
  border-color: var(--color-border-blue-light);
  box-shadow: inset 0 0 0 1px rgba(0, 105, 180, 0.08);
  font-weight: 700;
}

/* Sections */
html[data-daab-page-id="sitemap"] .sitemap-sections {
  display: grid;
  gap: 20px;
}

html[data-daab-page-id="sitemap"] .sitemap-section {
  --sm-section-sticky-top: calc(
    var(--daab-sticky-top-stack, calc(var(--daab-nav-height, 72px) + var(--daab-breadcrumbs-height, 0px))) + 0px
  );
  --sm-tone: #0069b4;
  --sm-tone-soft: rgba(0, 105, 180, 0.1);
  --sm-tone-mid: rgba(0, 105, 180, 0.22);
  --sm-tone-deep: #004f8a;
  position: relative;
  scroll-margin-top: var(--sm-section-sticky-top);
  padding: 0;
  border: 1px solid var(--sm-accent-line);
  border-radius: 24px;
  background: var(--sm-panel);
  box-shadow: 0 16px 40px rgba(8, 38, 59, 0.05);
  /* no overflow:hidden — sticky section labels need a visible ancestor */
  animation: sm-rise 0.55s ease both;
}

html[data-daab-page-id="sitemap"] .sitemap-section[data-tone="1"] {
  --sm-tone: #0069b4;
  --sm-tone-soft: rgba(0, 105, 180, 0.1);
  --sm-tone-mid: rgba(0, 105, 180, 0.24);
  --sm-tone-deep: #004f8a;
}

html[data-daab-page-id="sitemap"] .sitemap-section[data-tone="2"] {
  --sm-tone: #0a7ea4;
  --sm-tone-soft: rgba(10, 126, 164, 0.11);
  --sm-tone-mid: rgba(10, 126, 164, 0.24);
  --sm-tone-deep: #065f7c;
}

html[data-daab-page-id="sitemap"] .sitemap-section[data-tone="3"] {
  --sm-tone: #1f7a5c;
  --sm-tone-soft: rgba(31, 122, 92, 0.11);
  --sm-tone-mid: rgba(31, 122, 92, 0.24);
  --sm-tone-deep: #145640;
}

html[data-daab-page-id="sitemap"] .sitemap-section[data-tone="4"] {
  --sm-tone: #b8872a;
  --sm-tone-soft: rgba(201, 155, 59, 0.14);
  --sm-tone-mid: rgba(201, 155, 59, 0.3);
  --sm-tone-deep: #8a6418;
}

html[data-daab-page-id="sitemap"] .sitemap-section[data-tone="5"] {
  --sm-tone: #3d6fa8;
  --sm-tone-soft: rgba(61, 111, 168, 0.12);
  --sm-tone-mid: rgba(61, 111, 168, 0.26);
  --sm-tone-deep: #2a4f7a;
}

html[data-daab-page-id="sitemap"] .sitemap-section__ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: min(220px, 42%);
  height: 88px;
  border-radius: 0 24px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, var(--sm-tone-soft), transparent 55%),
    linear-gradient(135deg, transparent 30%, var(--sm-tone-soft));
  pointer-events: none;
  z-index: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-section[hidden],
html[data-daab-page-id="sitemap"] .sitemap-grid > li[hidden] {
  display: none !important;
}

html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(2) { animation-delay: 0.03s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(3) { animation-delay: 0.06s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(4) { animation-delay: 0.09s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(5) { animation-delay: 0.12s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(6) { animation-delay: 0.15s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(7) { animation-delay: 0.18s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(8) { animation-delay: 0.21s; }
html[data-daab-page-id="sitemap"] .sitemap-section:nth-child(9) { animation-delay: 0.24s; }

html[data-daab-page-id="sitemap"] .sitemap-section__head {
  position: sticky;
  top: var(--sm-section-sticky-top);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 16px 22px;
  border-radius: 23px 23px 0 0;
  background:
    linear-gradient(90deg, var(--sm-tone-soft), rgba(255, 255, 255, 0.97) 58%),
    #ffffff;
  border-bottom: 1px solid var(--sm-tone-mid);
  box-shadow: 0 8px 18px rgba(8, 38, 59, 0.06);
}

html[data-daab-page-id="sitemap"] .sitemap-section__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-section__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--sm-tone), var(--sm-tone-deep));
  color: #fff;
  box-shadow:
    0 10px 20px rgba(8, 38, 59, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

html[data-daab-page-id="sitemap"] .sitemap-section__icon {
  font-size: 1.25rem;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
}

html[data-daab-page-id="sitemap"] .sitemap-section__index {
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: var(--sm-tone-deep);
  border: 1px solid var(--sm-tone-mid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(8, 38, 59, 0.1);
}

html[data-daab-page-id="sitemap"] .sitemap-section__titles {
  min-width: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-section__title {
  margin: 0;
  color: var(--color-heading-blue);
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

html[data-daab-page-id="sitemap"] .sitemap-section__blurb {
  margin: 4px 0 0;
  color: var(--sm-ink-muted);
  font-size: 13px;
  line-height: 1.4;
}

html[data-daab-page-id="sitemap"] .sitemap-section__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 1.7rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--sm-tone-mid);
  color: var(--sm-tone-deep);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

html[data-daab-page-id="sitemap"] .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px 18px 18px;
  list-style: none;
}

html[data-daab-page-id="sitemap"] .sitemap-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 96px;
  height: 100%;
  padding: 15px 14px 15px 16px;
  border: 1px solid rgba(0, 105, 180, 0.12);
  border-radius: 16px;
  background: var(--sm-card);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

html[data-daab-page-id="sitemap"] .sitemap-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sm-tone, var(--blue-400)), var(--sm-tone-deep, var(--blue-700)));
  opacity: 0.55;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

html[data-daab-page-id="sitemap"] .sitemap-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  margin-top: 1px;
  border-radius: 14px;
  background:
    linear-gradient(165deg, #ffffff, var(--sm-tone-soft, var(--sm-accent-soft)));
  border: 1px solid var(--sm-tone-mid, var(--sm-accent-line));
  box-shadow: 0 6px 14px rgba(8, 38, 59, 0.06);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

html[data-daab-page-id="sitemap"] .sitemap-link:hover,
html[data-daab-page-id="sitemap"] .sitemap-link:focus-visible {
  border-color: var(--sm-tone-mid, rgba(0, 105, 180, 0.34));
  background: #fff;
  box-shadow: 0 14px 28px rgba(8, 38, 59, 0.1);
  transform: translateY(-2px);
  outline: none;
}

html[data-daab-page-id="sitemap"] .sitemap-link:hover::before,
html[data-daab-page-id="sitemap"] .sitemap-link:focus-visible::before {
  opacity: 1;
  transform: scaleY(1.05);
}

html[data-daab-page-id="sitemap"] .sitemap-link:hover .sitemap-link__icon,
html[data-daab-page-id="sitemap"] .sitemap-link:focus-visible .sitemap-link__icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 18px rgba(8, 38, 59, 0.1);
}

html[data-daab-page-id="sitemap"] .sitemap-link[aria-current="page"] {
  border-color: rgba(0, 105, 180, 0.42);
  background: linear-gradient(180deg, #f4faff, #eaf5fc);
  box-shadow: 0 0 0 1px rgba(0, 105, 180, 0.08);
}

html[data-daab-page-id="sitemap"] .sitemap-link__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-link__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

html[data-daab-page-id="sitemap"] .sitemap-link__meta {
  margin: 0;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[data-daab-page-id="sitemap"] .sitemap-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

html[data-daab-page-id="sitemap"] .sitemap-badge--new {
  background: rgba(0, 105, 180, 0.12);
  color: var(--blue-800);
}

html[data-daab-page-id="sitemap"] .sitemap-badge--updated {
  background: rgba(80, 158, 47, 0.14);
  color: #2f6b1c;
}

html[data-daab-page-id="sitemap"] .sitemap-link__desc {
  margin: 0;
  color: var(--sm-ink-muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

html[data-daab-page-id="sitemap"] .sitemap-empty {
  display: none;
  margin: 8px 0 0;
  padding: 36px 24px;
  border: 1px dashed rgba(0, 105, 180, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--sm-ink-muted);
  text-align: center;
  font-size: 15px;
}

html[data-daab-page-id="sitemap"] .sitemap-empty.is-visible {
  display: block;
  animation: sm-rise 0.3s ease both;
}

html[data-daab-page-id="sitemap"] .sitemap-utility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 14px;
  margin: 0 0 22px;
}

html[data-daab-page-id="sitemap"] .sitemap-utility__lang,
html[data-daab-page-id="sitemap"] .sitemap-utility__search {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--sm-accent-line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 252, 0.95));
  box-shadow: 0 10px 24px rgba(8, 38, 59, 0.05);
}

html[data-daab-page-id="sitemap"] .sitemap-utility__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--blue-600), var(--blue-800));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(0, 105, 180, 0.2);
}

html[data-daab-page-id="sitemap"] .sitemap-utility__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

html[data-daab-page-id="sitemap"] .sitemap-utility__label {
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html[data-daab-page-id="sitemap"] .sitemap-utility__current {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

html[data-daab-page-id="sitemap"] .sitemap-utility__switch {
  align-self: flex-start;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 105, 180, 0.35);
}

html[data-daab-page-id="sitemap"] .sitemap-utility__switch:hover,
html[data-daab-page-id="sitemap"] .sitemap-utility__switch:focus-visible {
  border-bottom-color: var(--blue-700);
}

html[data-daab-page-id="sitemap"] .sitemap-open-search {
  align-self: flex-start;
  min-height: var(--daab-touch-min, 44px);
}

html[data-daab-page-id="sitemap"] .sitemap-suggests {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

html[data-daab-page-id="sitemap"] .sitemap-suggest {
  min-height: 34px;
  padding: 4px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-surface-filter-chip);
  color: var(--blue-700);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

html[data-daab-page-id="sitemap"] .sitemap-suggest:hover,
html[data-daab-page-id="sitemap"] .sitemap-suggest:focus-visible {
  background: var(--color-tint-blue);
  border-color: var(--color-border-blue-subtle);
  color: var(--blue-dark);
  outline: none;
}

html[data-daab-page-id="sitemap"] .sitemap-start {
  position: relative;
  margin: 0 0 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(201, 155, 59, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(165deg, #ffffff 0%, #f7fbfe 48%, #fff8e8 100%);
  box-shadow: 0 14px 32px rgba(8, 38, 59, 0.06);
  overflow: hidden;
}

html[data-daab-page-id="sitemap"] .sitemap-start__ornament {
  position: absolute;
  inset: auto -20px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 155, 59, 0.16), transparent 68%);
  pointer-events: none;
}

html[data-daab-page-id="sitemap"] .sitemap-start[hidden] {
  display: none !important;
}

html[data-daab-page-id="sitemap"] .sitemap-start__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
}

html[data-daab-page-id="sitemap"] .sitemap-start__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(160deg, #d4ae4e, #a67c1f);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(166, 124, 31, 0.28);
}

html[data-daab-page-id="sitemap"] .sitemap-start__head h2 {
  margin: 0 0 4px;
  color: var(--color-heading-blue);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

html[data-daab-page-id="sitemap"] .sitemap-start__head p {
  margin: 0;
  color: var(--sm-ink-muted);
  font-size: 14px;
}

html[data-daab-page-id="sitemap"] .sitemap-link--start {
  border-color: rgba(201, 155, 59, 0.22);
}

html[data-daab-page-id="sitemap"] .sitemap-link--start::before {
  background: linear-gradient(180deg, #d4ae4e, #a67c1f);
}

html[data-daab-page-id="sitemap"] .sitemap-link--start .sitemap-link__icon {
  background: linear-gradient(165deg, #fffdf5, rgba(201, 155, 59, 0.16));
  border-color: rgba(201, 155, 59, 0.28);
}

html[data-daab-page-id="sitemap"] .sitemap-grid--start {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

html[data-daab-page-id="sitemap"] .sitemap-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 18px 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 105, 180, 0.16);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(0, 105, 180, 0.08), rgba(255, 255, 255, 0.9));
}

html[data-daab-page-id="sitemap"] .sitemap-cta--membership {
  border-color: rgba(0, 105, 180, 0.22);
  background: linear-gradient(120deg, rgba(0, 105, 180, 0.12), rgba(255, 255, 255, 0.92));
}

html[data-daab-page-id="sitemap"] .sitemap-cta--support {
  border-color: rgba(31, 122, 92, 0.22);
  background: linear-gradient(120deg, rgba(31, 122, 92, 0.1), rgba(255, 255, 255, 0.92));
}

html[data-daab-page-id="sitemap"] .sitemap-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--blue-600), var(--blue-800));
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(0, 105, 180, 0.2);
}

html[data-daab-page-id="sitemap"] .sitemap-cta--support .sitemap-cta__icon {
  background: linear-gradient(160deg, #2d9a72, #145640);
  box-shadow: 0 8px 16px rgba(31, 122, 92, 0.22);
}

html[data-daab-page-id="sitemap"] .sitemap-cta[hidden] {
  display: none !important;
}

html[data-daab-page-id="sitemap"] .sitemap-cta__copy {
  min-width: min(100%, 280px);
  flex: 1;
}

html[data-daab-page-id="sitemap"] .sitemap-cta__copy strong {
  display: block;
  margin: 0 0 4px;
  color: var(--blue-900);
  font-size: 16px;
}

html[data-daab-page-id="sitemap"] .sitemap-cta__copy p {
  margin: 0;
  color: var(--sm-ink-muted);
  font-size: 13.5px;
}

html[data-daab-page-id="sitemap"] .sitemap-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

html[data-daab-page-id="sitemap"] .sitemap-cta__actions .btn {
  min-height: var(--daab-touch-min, 44px);
  text-decoration: none !important;
}


@keyframes sm-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  html[data-daab-page-id="sitemap"] .hero-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100% - 24px, 1180px);
    padding: 14px 0 12px !important;
  }

  html[data-daab-page-id="sitemap"] .sitemap-grid,
  html[data-daab-page-id="sitemap"] .sitemap-grid--start {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-daab-page-id="sitemap"] .sitemap-utility {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html[data-daab-page-id="sitemap"] .sitemap-main {
    width: min(100% - 24px, 1180px);
  }

  html[data-daab-page-id="sitemap"] .sitemap-grid,
  html[data-daab-page-id="sitemap"] .sitemap-grid--start {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }

  html[data-daab-page-id="sitemap"] .sitemap-grid--start {
    padding: 0;
  }

  html[data-daab-page-id="sitemap"] .sitemap-cta {
    margin: 0 12px 12px;
  }

  html[data-daab-page-id="sitemap"] .sitemap-search-row {
    grid-template-columns: 1fr;
  }

  html[data-daab-page-id="sitemap"] .sitemap-count {
    justify-self: start;
  }

  html[data-daab-page-id="sitemap"] .sitemap-controls {
    padding: 14px;
    border-radius: 18px;
  }

  html[data-daab-page-id="sitemap"] .sitemap-section__head {
    padding: 14px 14px;
    border-radius: 17px 17px 0 0;
  }

  html[data-daab-page-id="sitemap"] .sitemap-section {
    border-radius: 18px;
  }

  html[data-daab-page-id="sitemap"] .sitemap-link {
    min-height: 0;
    padding: 14px 14px 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-daab-page-id="sitemap"] .sitemap-controls,
  html[data-daab-page-id="sitemap"] .sitemap-section,
  html[data-daab-page-id="sitemap"] .sitemap-empty,
  html[data-daab-page-id="sitemap"] .sitemap-link,
  html[data-daab-page-id="sitemap"] .sitemap-chip {
    animation: none !important;
    transition: none !important;
  }
}
