:root {
    --base: 1rem;
    --background: #ffffff;
    --text: #111111;
    --accent: #ff4444;
    --gray: #888888;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    margin: 0;
    padding: 0;
    font-size: var(--base);
}

.container {
    max-width: 650px;
    margin: 0 auto;
    padding: calc(var(--base) * 1.25 * 1.25) var(--base);
}

h1 {
    font-size: calc(var(--base) * 1.25 * 1.25 * 1.25);
    line-height: 1.2;
    margin: 0 0 calc(var(--base) * 1.25) 0;
    font-weight: 600;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post-link {
    margin-bottom: calc(var(--base) * 0.75);
}

.post-link a {
    font-size: calc(var(--base) * 1.25);
}

.post-date {
    color: var(--gray);
    font-size: calc(var(--base) * 0.85);
    margin-left: calc(var(--base) * 0.5);
}

@media print {
    body {
        color: #000;
        background: #fff;
    }
    a {
        color: #000;
        text-decoration: underline;
    }
}
