.news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.news-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.news-item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.news-text {
    flex: 1;
}

.news-text h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.news-text p {
    font-size: 1em;
    color: #333;
}