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

.news-item {
    width: 351.91px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.news-source {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.news-date {
    font-size: 12px;
    color: #999;
    position: absolute;
    bottom: -15px; /* Adjusted bottom position to move it lower */
    left: 10px;
}

.more-button-container {
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

.more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.more-button:hover {
    background-color: #005177;
}
