/* =============================================
   Google Fonts
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap');

/* =============================================
   Basis-Typografie
   ============================================= */
body {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    line-height: 1.3;
}

/* =============================================
   Blog-Intro (Home-Seite)
   ============================================= */
.blog-intro {
    max-width: 860px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    border-bottom: 3px solid #2c5282;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.blog-header h1 {
    font-family: 'Playfair Display', serif;
    color: #2c5282;
    font-size: 2.3em;
    margin-bottom: 8px;
}

.blog-header .subtitle {
    color: #666;
    font-size: 1.1em;
    font-style: italic;
}

.themen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.themen-karte {
    padding: 14px 16px;
    background: #e8f0fb;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
    font-size: 0.95em;
}

.themen-karte strong {
    display: block;
    color: #2c5282;
    margin-bottom: 4px;
}

.infobox {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.highlight {
    background: #fff8e1;
    border-left: 5px solid #f0a500;
    padding: 16px 18px;
    margin-bottom: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.8;
}

.blog-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    color: #888;
    font-size: 0.9em;
    font-style: italic;
}