/* ─── Custom properties ─────────────────────────────────────────────────────── */
:root {
    --color-bg:        #ffffff;
    --color-text:      #1a1a1a;
    --color-muted:     #666666;
    --color-border:    #e5e5e5;
    --color-accent:    #1a1a1a;

    --font-base:       system-ui, -apple-system, sans-serif;

    --space-s:         1rem;
    --space-m:         2rem;
    --space-l:         4rem;

    --content-width:   680px;
    --wide-width:      1200px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    width: 100%;
    max-width: var(--wide-width);
    margin-inline: auto;
    padding: var(--space-m) var(--space-s);
}

.site-main {
    max-width: var(--content-width);
}

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
    padding: var(--space-s);
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.site-branding a {
    text-decoration: none;
    font-weight: 600;
}

.site-description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.main-navigation a {
    text-decoration: none;
    font-size: 0.9rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
    padding: var(--space-s);
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* ─── Posts ──────────────────────────────────────────────────────────────────── */
.entry-title {
    margin: 0 0 0.5rem;
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.entry-content {
    margin-top: 1rem;
}

article + article {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

/* ─── Visitkort ──────────────────────────────────────────────────────────────── */
.visitkort-layout .site-content {
    align-content: center;
}

/* ─── Accessibility ──────────────────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
