/* news.php spezifische Styles */
.news-content {
    line-height: 1.6;
    font-size: 1.1rem;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
}

.news-content h1, 
.news-content h2, 
.news-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.news-content ul,
.news-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.news-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.news-content pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

.news-content code {
    background: #f8f9fa;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .news-content {
        font-size: 1rem;
    }
    
    .card-header h5 {
        font-size: 1.1rem;
    }
}