:root {
    --today-accent: #d32f2f;
    --today-bg: #fff;
    --today-text: #1a1a1a;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    background-color: var(--today-bg);
    color: var(--today-text);
    font-family: 'Georgia', serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    border-bottom: 2px solid #000;
    padding: 20px 0;
    text-align: center;
}

.today-logo {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

nav {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: 30px;
}

nav ul { display: flex; justify-content: center; list-style: none; }
nav li { margin: 0 15px; }
nav a { text-decoration: none; color: #666; font-size: 13px; font-weight: bold; text-transform: uppercase; font-family: sans-serif; }
nav a:hover { color: var(--today-accent); }

.headline {
    text-align: center;
    margin-bottom: 50px;
}

.headline h1 { font-size: 48px; line-height: 1.1; margin-bottom: 20px; }
.headline p { font-style: italic; color: #666; }

.news-feed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.news-item h2 { font-size: 28px; margin-bottom: 10px; }
.news-item .meta { font-size: 12px; color: var(--today-accent); margin-bottom: 15px; font-family: sans-serif; }

.sidebar-today {
    border-left: 1px solid #eee;
    padding-left: 30px;
}

footer {
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #000;
    margin-top: 50px;
    font-family: sans-serif;
    font-size: 12px;
}
