
/* Algemeen */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f0f2ed;
    color: #1a1a1a;
}
h1 {
    font-size: 2em;
    margin-top: 0.5rem;
    border-left: 3px solid #d1d9d0;
    padding-left: 1rem;
    line-height: 1.2;
}
h1.essay {
    font-size: 2em;
    text-align: center;
    margin-top: 0;          /* overschrijft de 0.5rem */
    margin-bottom: 0.2em;
    line-height: 1.3;
    border-left: none;      /* overschrijft de 3px streep */
    padding-left: 0;        /* overschrijft de 1rem */
}
h1.blog {
    font-size: 2em;
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-top: 0;
}
h2 {
    font-size: 1.4em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: #2c2c2c;
}
p {
    margin-bottom: 1.5em;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}
a {
    color: #2c5a2c;
    text-decoration: none;
}
.subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 3em;
    color: #555;
}
.post-date {
    display: block;
    font-size: 0.85em;
    color: #7a7a7a;
    margin-bottom: 2rem;
}
.post-date-blog {
    display: block; 
    font-size: 0.85em;
    color: #7a7a7a; 
    margin-top: 0.5em;
}
.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}
.back-link:hover {
    text-decoration: underline;
}
hr {
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: #e0e0e0;
}
hr.separator {
    border: 0;
    height: 0;
    margin: 2.5em auto;
    text-align: center;
    letter-spacing: 0.5em;
    color: #aaa;
}
hr.separator::after {
    content: "···";
}
footer {
    text-align: center;
    margin-top: 4em;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5em;
}
.author {
    text-align: center;
    font-weight: bold;
    margin-top: 3em;
}

/* Blog-specifiek */
.post-list {
    list-style: none;
    padding: 0;
}
.post-list li {
    margin: 2em 0;
    border-left: 3px solid #d1d9d0;
    padding-left: 1.5em;
}
.post-list li a {
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    color: #2c5a2c;
}
.post-list li a:hover {
    text-decoration: underline;
}

/* Menubalk */
nav {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}
.nav-container {
    display: flex;
    gap: 1.5rem;
}
.nav-print {
    margin-left: auto;
}
.nav-container a {
    text-decoration: none;
    color: #2c5a2c;
    font-weight: 500;
}
.nav-container a:hover {
    text-decoration: underline;
}