/* ============================================================
   Theme: nordic-minimal
   Mood: Skandinavisches Editorial — viel Whitespace, B/W, clean
   ============================================================ */

/* ── Mood-Tokens (Phase 1 BlogBuilder — Round 114c34) ── */
body.theme-nordic-minimal {
    --mood-radius:       0px;
    --mood-shadow:       none;
    --mood-font-body:    'Inter', system-ui, sans-serif;
    --mood-font-head:    'Inter', system-ui, sans-serif;
    --mood-density:      2.5rem;
    --mood-img-filter:   none;
    --mood-card-border:  1px solid #e5e5e5;
    --mood-header-align: left;
    --mood-nl-bg:        #fafafa;
    --mood-nl-text:      #1a1a1a;
    --mood-nl-btn:       #000000;

    background: #fafafa;
    color: #1a1a1a;
    font-feature-settings: "ss01", "cv11"; /* Inter stylistic alternates */
}

body.theme-nordic-minimal .post-card {
    background: var(--card-bg);
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    transition: border-color var(--transition-base);
}
body.theme-nordic-minimal .post-card:hover {
    border-color: #000000;
}
body.theme-nordic-minimal .post-card img {
    transition: transform var(--transition-slow);
}
body.theme-nordic-minimal .post-card:hover img {
    transform: scale(1.02);
}

body.theme-nordic-minimal .post-meta {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #737373;
}

body.theme-nordic-minimal .site-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}
body.theme-nordic-minimal .site-header nav a {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: text-decoration var(--transition-fast);
}
body.theme-nordic-minimal .site-header nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

body.theme-nordic-minimal .site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 4rem 0;
    text-align: center;
}

body.theme-nordic-minimal .hero {
    margin-bottom: 4rem;
}
body.theme-nordic-minimal .hero img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
body.theme-nordic-minimal .hero h1 {
    margin-top: 4rem;
    max-width: var(--max-width-content);
}

body.theme-nordic-minimal a:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}
