:root {
    --accent: #3F5C54;
    --bg: #E9ECEF;
   --bg_header: #212529;
    --text: #222;
    --gray: #666;
}

body {
    background: var(--bg);
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
	justify-content: center
}

header {
    width: 100%;
    text-align: center;
    background-color: var(--bg);
}

header h1 {
    margin: 0;
    font-size: 2.4em;
    color: #111;
}

.site-header {
    flex-direction: column;
    background-color: var(--bg_header);
    margin-bottom: 3px;
}

.site-navigation {
    background-color: var(--bg);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    display: flex;
    font-weight: bold;
    flex-wrap: wrap;	
}

.site-header,
.site-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.site-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
    margin: 0;
    letter-spacing: 1px;
}

.site-navigation a {
    color: #CED4DA;
    text-decoration: none;
    font-weight: bold;
    font-size 1.05em;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.site-navigation a:hover {
    text-decoration: underline;
}

.site-navigation a.active {
    color: #FFFFFF;
    background-color: #20C997;
    border-radius: 4px;
    border-bottom: 3px solid var(--accent);
    margin-bottom: -3px;
}

.site-title { margin: 0; font-size: 2.4rem; }

.main-articles{
    text-decoration: none;
    max-width: 800px;
    flex-grow: 1; /* Nimmt den verbleibenden Platz ein, für Footer am Ende */
    margin: 0 auto; /* Zentriert den Inhalt mit etwas Abstand */
    padding: 0.5rem 1rem;
    background-color: var(--bg);
}

h1, h2, h3 {
    color: var(--accent);
    margin-bottom: 0.8em;
    margin-top: 1.5em;
    line-height: 1.2;
}

main h1 { font-size: 2.2em; border-bottom: 2px solid #bbb; padding-bottom: 0.3em; }
main h2 { font-size: 1.8em; border-bottom: 2px solid #bbb; padding-bottom: 0.3em; }
main h3 { font-size: 1.4em; }

.date, .author { color: var(--gray); font-size: 0.95em; font-weight: 600; color: #666; font-size: 0.95rem; margin: 1rem 0; }
footer { margin-top: 80px; padding-top: 30px; border-top: 1px solid #ddd; color: #666; text-align: center; font-size: 0.9em; }

a[href] {
    text-decoration: none;
    color: var(--accent);
}
a[href]:hover { text-decoration: underline; }

.article {
    text-decoration: none;
    max-width: 800px;
	margin: 0 auto;
    background: var(--bg);
    padding: 2.5rem;
}

.article-content a[href] {
    text-decoration: none;
    color: #346699;
}
.article-content a[href]:hover { text-decoration: underline; }

.article-title { margin-top: 0; }
.article-meta {  }
.article-content {}

.article-nav {
    text-decoration: none;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.disclaimer { font-size: 10px; }
