.news-container {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
}

.news-item {
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 10px;
    border-radius: 15px;
    cursor: pointer;
}

.news-item:hover {
    background-color: #f8f8f8;
    transform: scale(0.99);
}

.news-item img {
    max-width: 100px;
    max-height: 100px;
    margin-right: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.news-content {
    flex-grow: 1;
}

.news-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.news-text {
    color: #666;
}

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