.news-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-article {
    width: calc(33.333% - 20px); /* Adjust based on how many articles per row */
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
}

.news-article:hover {
    transform: scale(1.02);
}

.news-article-thumbnail {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-article-content {
    padding: 15px;
}

.news-article-content h3 {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.news-article-content p {
    margin: 10px 0 0;
    font-size: 0.9em;
    color: #555;
}
