:root {
    --primary: #1a1a1a;
    --accent: #c0392b;
    --bg: #fdfdfd;
    --text: #333;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    text-align: center;
    border-bottom: 3px double var(--primary);
    padding: 20px 0;
}

header h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin: 10px 0;
    font-family: 'Times New Roman', serif;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    text-transform: uppercase;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.main-story img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tag {
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Sidebar */
.trending h3 {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.trend-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.grid-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
body
{
    background-color: goldenrod;
}