/* ==========================================================================
   Sitemap template
   Simple, lightweight styles — reuses the theme's design tokens.
   ========================================================================== */

/* ── Sitemap list ────────────────────────────────────────────────────── */
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 0.5rem;
}

.sitemap-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: hsl(210, 30%, 98%);
}

.sitemap-link {
  color: var(--foreground);
  font-weight: 600;
  text-decoration: none;
}

.sitemap-link:hover {
  color: var(--primary);
}

.sitemap-date {
  color: hsl(215, 15%, 45%);
  font-size: 0.8rem;
  white-space: nowrap;
}

.sitemap-empty {
  color: hsl(215, 15%, 45%);
}

/* ── Footer sitemap link ─────────────────────────────────────────────── */
.footer-legal {
  margin-top: 0.5rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--primary);
}
