

/* Headline */
h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #0c2340;
    margin-bottom: 40px;
}

/* News Layout */
.news-container {
    display: flex;
    justify-content:space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

/* News Article */
.news-item {
    width: 32%;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 10px;
}

/* News Images */
.news-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* News Headline */
.news-item h2 {
    font-size: 20px;
    font-weight: bold;
    color: #0c2340;
    margin-bottom: 10px;
}

/* News Text */
.news-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .news-container {
        flex-direction: column;
    }

    .news-item {
        width: 100%;
    }
}
