.news-list {
    margin: 20px 0;
}

.news-item-link {
    text-decoration: none;
    color: inherit;
}

.news-item {
    display: flex;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
}

.news-image {
    flex: 0 0 200px;
    margin-right: 20px;
}

.news-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.news-content {
    flex: 1;
}

.news-title {
    margin: 0 0 10px 0;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.news-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-meta span {
    margin-right: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.news-summary {
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.btn-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-read-more:hover {
    background: #0056b3;
    color: #fff;
}
