/* Styling für News-Seite */

.news-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #fafafa;
}

.news-item h3 {
    color: #455a64;
    margin-top: 0.5rem;
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.news-meta i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #C47464;
}

.news-content {
    margin: 1rem 0;
    line-height: 1.6;
}

.modified-info {
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.modified-info i {
    font-size: 1rem;
    margin-right: 0.3rem;
    color: #777;
}

/* Paginierung */
.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination li.active {
    background-color: #C47464;
}

/* Responsive Anpassungen */
@media only screen and (max-width: 600px) {
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-meta span {
        margin-bottom: 0.3rem;
    }
}