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

/* ── Language switch button (single post / Urdu translation) ─────────── */
.lang-switch-wrap {
  margin-top: 1.25rem;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lang-switch-btn:hover {
  opacity: 0.88;
  color: var(--primary-fg);
}

/* Urdu variant — right-to-left, Nastaleeq face, slightly larger. */
.lang-switch-btn--urdu {
  direction: rtl;
  font-family: 'Alvi Nastaleeq Regular', 'Noto Naskh Urdu', serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ── 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: 0.75rem;
  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);
}
