/* Стили для страницы новостей */
.news-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-item img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    margin-top: 1rem;
}

.news-item p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .news-item {
        padding: 1rem;
    }
    
    .news-item img {
        max-width: 100%;
    }
}