
/* ============================================
   OPTIMIERTE BLOG CONTENT FORMATIERUNG
   ============================================ */

.blog-content {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif !important;
    max-width: none !important;
}

/* Überschriften */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.blog-content h1 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #4a5568;
    margin-top: 2rem;
}

/* Paragraphen */
.blog-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.blog-content p:first-of-type {
    font-size: 1.15rem;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.7;
}

/* Listen */
.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.blog-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.blog-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
}

/* Hervorhebungen */
.blog-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.blog-content em {
    font-style: italic;
    color: #555;
}

/* Spezielle Content-Boxen */
.blog-content .important-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.1);
}

.blog-content .tip-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #cce7ff 100%);
    border: 1px solid #cce7ff;
    border-left: 4px solid #007bff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
}

.blog-content .important-box strong,
.blog-content .tip-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    .blog-content h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .blog-content h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .blog-content p {
        margin-bottom: 1.2rem;
        text-align: left;
    }
    
    .blog-content ul,
    .blog-content ol {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    .blog-content .important-box,
    .blog-content .tip-box {
        padding: 1rem;
        margin: 1.5rem 0;
        border-radius: 6px;
    }
}
