*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #ffffff; --bg-card: #ffffff; --bg-input: #f9fafb;
    --border: #e5e7eb; --border-focus: #9ca3af;
    --text: #111827; --text-muted: #4b5563; --text-dim: #9ca3af;
    --primary: #111827; --primary-hover: #1f2937;
    --danger: #dc2626; --danger-bg: rgba(220,38,38,0.06); --danger-border: rgba(220,38,38,0.2); --danger-text: #991b1b;
    --warning: #d97706; --warning-bg: rgba(217,119,6,0.06); --warning-border: rgba(217,119,6,0.2); --warning-text: #92400e;
    --success: #059669; --success-bg: rgba(5,150,105,0.06); --success-border: rgba(5,150,105,0.2); --success-text: #065f46;
    --info-bg: rgba(17,24,39,0.04); --info-border: rgba(17,24,39,0.1); --info-text: #1f2937;
    --radius: 0.5rem; --radius-lg: 0.75rem;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.06);
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Nav CSS is now in /da/shared-nav.css */

.hero { background: var(--bg); padding: 4rem 2rem 2rem; text-align: center; }
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; border: 1px solid var(--border); border-radius: 999px; padding: 0.35rem 1rem; font-size: 0.72rem; font-weight: 500; color: var(--text-muted); margin-bottom: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 400; line-height: 1.15; color: var(--text); margin-bottom: 1.25rem; letter-spacing: -0.015em; }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.65; }

.article { max-width: 680px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.article-meta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 600; margin-bottom: 2rem; text-align: center; }
.article h2 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; line-height: 1.25; margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.article h3 { font-size: 1.05rem; font-weight: 600; margin: 1.75rem 0 0.75rem; color: var(--text); }
.article p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.1rem; }
.article ul, .article ol { margin: 0 0 1.1rem 1.5rem; }
.article li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.4rem; }
.article strong { color: var(--text); font-weight: 600; }
.article a { color: var(--primary); text-decoration: underline; }

.callout { background: var(--info-bg); border: 1px solid var(--info-border); border-left: 3px solid var(--primary); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.callout p { margin: 0; font-size: 0.9rem; color: var(--text); line-height: 1.65; }

.cta-section { text-align: center; padding: 3.5rem 2rem; max-width: 600px; margin: 2rem auto; background: var(--bg-input); border-radius: var(--radius-lg); }
.cta-section h3 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; margin-bottom: 0.75rem; }
.cta-section p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: #fff; border: none; border-radius: 999px; padding: 0.85rem 2rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: var(--font-sans); transition: background 0.15s; text-decoration: none; }
.cta-btn:hover { background: var(--primary-hover); color: #fff; }

.related { max-width: 680px; margin: 3rem auto 0; padding: 2rem 1.5rem; border-top: 1px solid var(--border); }
.related-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 600; margin-bottom: 1rem; }
.related ul { list-style: none; margin: 0; }
.related li { padding: 0.5rem 0; font-size: 0.9rem; }
.related li a { color: var(--text); text-decoration: none; font-weight: 500; }
.related li a:hover { color: var(--primary); text-decoration: underline; }

.blog-index { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.blog-group { margin-bottom: 3rem; }
.blog-group-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); font-weight: 600; margin-bottom: 0.75rem; }
.blog-group h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -0.01em; }
.blog-list { list-style: none; }
.blog-list li { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.blog-list li:last-child { border-bottom: none; }
.blog-list li a { color: var(--text); text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blog-list li a:hover { color: var(--primary); }
.blog-list li .arrow { color: var(--text-dim); font-size: 0.8rem; }

.footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; font-size: 0.75rem; color: var(--text-dim); }
.footer a { color: var(--text-muted); text-decoration: underline; }

.divider { border: none; border-top: 1px solid var(--border); margin: 0 auto; max-width: 680px; }

@media (max-width: 600px) {
    .hero h1 { font-size: 1.9rem; }
    .hero { padding: 2.5rem 1.5rem 1.5rem; }
    .article h2 { font-size: 1.4rem; }
    .nav-links { gap: 0.75rem; }
    .nav-inner { padding: 0.75rem 1rem; }
}
