:root {
    --bg-color: #f8f0e8; /* Light, warm beige */
    --title-color: #724f36; /* Deep, warm brown */
    --subtitle-color: #4a3423; /* Very dark warm brown for body text */
    --news-bg: #e0d5c8; /* Muted beige for content blocks */
    --news-border: #bfa895; /* Medium muted brown for borders */
    --news-header-bg: #9e795c; /* Warm, inviting brown for headers */
    --news-header-text: #ffffff; /* White for header text */
    --link-color: #CC6600; /* Russet orange for links */
    --link-hover-color: #FF8800; /* Brighter orange for link hover */
}

body {
    background-color: var(--bg-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--subtitle-color);
    margin: 0;
    padding: 20px;
    text-align: center;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.main-header {
    margin-bottom: 40px;
}

.main-header h1 {
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    font-size: 3em;
    color: var(--title-color);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-header p {
    font-size: 1.1em;
    margin-top: 10px;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background-color: var(--news-bg);
    border: 1px solid var(--news-border);
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.news-title {
    background-color: var(--news-header-bg);
    color: var(--news-header-text);
    padding: 10px 15px;
    margin: 0;
    font-size: 1.4em;
    font-weight: bold;
}

.news-content {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    gap: 20px;
    align-items: flex-start;
}

.news-image {
    flex-shrink: 0;
    flex-basis: 200px;
}

.news-image img {
    width: 200px;
    height: 200px;
    display: block;
    background-color: #d6cec3; /* A specific muted beige for image placeholder */
}

.news-text {
    color: var(--subtitle-color);
    font-size: 1em;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.news-text p {
    margin: 0;
}