/* Style for the entire news section */
#news {
    background-color: #f7f7f7;
    padding: 40px 0;
}

/* Section title styling */
.section-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* News article container styling */
.rss-article {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.rss-article h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

/* Summary styling */
.rss-article p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Link styling */
.rss-article a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

.rss-article a:hover {
    text-decoration: underline;
}

/* Published date styling */
.rss-article .published {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
