/* Global Reset and Body Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #222;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

/* Main Content Container */
#content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Page Header */
#content h1 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
}

/* Individual News Entry Styling */
.news-entry {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.news-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Line 1: Headline */
.news-headline a {
    font-size: 1.15rem;
    color: #1a0dab;
    text-decoration: none;
}

.news-headline a:hover {
    text-decoration: underline;
}

/* Line 2: Byline & Author */
.news-author {
    font-size: 0.9rem;
    color: #555;
    margin-top: 4px;
}

.news-author a {
    color: #333;
    text-decoration: underline;
}

/* Line 3: Timestamp */
.news-date {
    font-size: 0.8rem;
    color: #777;
    margin-top: 2px;
}

/* Footer Styling */
#footer {
    max-width: 800px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

#footer a {
    color: #555;
}