/* --- Global Styles & Variables --- */
:root {
    --cream: #f5f5dc;
    --dark-grey: #333333;
    --accent-grey: #555555;
    --border-grey: #cccccc;
    --widget-bg: #e8e8d3; /* A slightly darker cream for widgets */
}

body {
    background-color: var(--dark-grey);
    color: var(--dark-grey);
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Main content is 2.5 times wider than sidebar */
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--cream);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

a {
    color: var(--accent-grey);
    text-decoration: underline;
}

a:hover {
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h2, h3 {
    font-family: Georgia, serif; /* Simplified this for a more classic feel */
    color: #000;
    margin-top: 0;
}


/* --- Header --- */
header {
    background-color: var(--cream);
    text-align: center;
    padding: 20px 10px;
    border-bottom: 4px double var(--dark-grey);
}

header h1 {
    /* UPDATED: Using the new gothic/newspapery font */
    font-family: 'Uncial Antiqua', cursive;
    margin: 0;
    font-size: 4em; /* Increased size for impact */
    font-weight: normal; /* The font is bold by nature */
    letter-spacing: 2px;
    color: #000;
}

header .tagline {
    margin: 5px 0 10px 0;
    font-size: 1.1em;
    font-style: italic;
    color: var(--accent-grey);
}

header .date {
    margin: 0;
    color: var(--accent-grey);
}


/* --- Main Content & Articles --- */
.main-content {
    display: flex;
    flex-direction: column;
}

.main-article img {
    margin-bottom: 1em; /* Space between image and text */
}

.main-article h2 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 0.2em;
}

.byline {
    font-style: italic;
    color: var(--accent-grey);
    margin-top: 0;
    margin-bottom: 1.5em;
}

.small-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-grey);
}

.small-article img {
    /* NEW: Adds space below the small article images */
    margin-bottom: 1em;
}

.small-article h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
}


/* --- Sidebar --- */
.sidebar {
    border-left: 1px solid var(--border-grey);
    padding-left: 30px;
}

.sidebar-widget {
    background-color: var(--widget-bg);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.sidebar-widget h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-grey);
}

.sidebar-widget ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.sidebar-widget ul li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: var(--accent-grey);
}

.sidebar-widget p {
    margin-bottom: 1em;
}
.sidebar-widget p:last-child {
    margin-bottom: 0;
}


/* --- Footer --- */
footer {
    background-color: var(--dark-grey);
    color: var(--cream);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

footer .tagline {
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}


/* --- Responsive Design for Smaller Screens --- */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr; /* Stack main content and sidebar */
    }
    .sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
        border-top: 2px solid var(--dark-grey);
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2.8em; /* Adjusted for mobile */
    }
    .small-articles-grid {
        grid-template-columns: 1fr; /* Stack small articles on top of each other */
    }
    .main-article h2 {
        font-size: 2em;
    }
}