/* ── Ravens of Odin — Default (Clean/Minimal) template ───────────────────── */

:root {
  --t-bg: #ffffff;
  --t-bg-subtle: #f5f5f5;
  --t-text: #1a1a1a;
  --t-text-muted: #6b7280;
  --t-border: #e5e7eb;
  --t-accent: #1a1a1a;
  --t-nav-bg: #ffffff;
  --t-nav-text: #1a1a1a;
  --t-nav-active: #1a1a1a;
  --t-nav-padding: 0 1.5rem;
  --t-nav-justify: flex-start;
  --t-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --t-font-size-base: 17px;
  --t-line-height: 1.7;
  --t-content-width: 680px;
  --story-pad: 1.5rem;
}

body { -webkit-font-smoothing: antialiased; }

/* ── Navigation ─────────────────────────────────────────────────────────── */

.rvns-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 0 1.5rem;
  height: 56px;
  background: var(--t-nav-bg);
  border-bottom: 1px solid var(--t-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rvns-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-text-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.rvns-nav-link:hover {
  color: var(--t-nav-text);
  background: var(--t-bg-subtle);
}

.rvns-nav-link.active {
  color: var(--t-nav-active);
  font-weight: 600;
}
