/* --- 1. GLOBAL VARIABLES & RESET --- */
:root {
    --news-black: #1a1a1a;
    --teal-dark: #002b36;
    --teal-accent: #2aa198;
    --paper-bg: #ffffff;
    --sidebar-bg: #f9f7f2; /* Light editorial beige */
    --urgent-red: #c0392b;
}

body {
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--paper-bg);
    color: var(--news-black);
    line-height: 1.6;
}

/* --- 2. HEADER --- */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    margin-bottom: 50px;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav a {
    color: #444;
    margin-left: 30px;
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
}
.main-nav a:hover { color: var(--teal-dark); }

/* --- 3. LAYOUT GRID (The 70/30 Split) --- */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-layout {
    display: grid;
    /* LEFT (2.5) | RIGHT (1) -> Matches the reference image structure */
    grid-template-columns: 2.5fr 1fr; 
    gap: 60px;
    align-items: start;
}

/* --- 4. LEFT COLUMN: JOURNALISM --- */
.journalism { padding-bottom: 40px; }

.story-label {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: var(--urgent-red);
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.featured-story h2 {
    font-size: 2.8em;
    margin: 10px 0 15px 0;
    line-height: 1.1;
    color: var(--news-black);
}

.story-summary {
    font-size: 1.25em;
    color: #444;
    margin-bottom: 25px;
    max-width: 90%;
}

.read-btn {
    display: inline-block;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    color: var(--teal-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--teal-dark);
    padding-bottom: 2px;
}

/* Recent Findings List */
.recent-stories {
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.story-item {
    margin-bottom: 35px;
}

.story-item h4 {
    font-size: 1.3em;
    margin: 0 0 8px 0;
}

.story-item p {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.95em;
    color: #666;
    margin: 0 0 8px 0;
}

.read-link {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 0.9em;
    color: var(--teal-dark);
    text-decoration: none;
}

/* Inline Newsletter (Matches Reference) */
.newsletter-inline {
    background-color: var(--gray-light);
    padding: 30px;
    margin-top: 40px;
    border-radius: 4px;
}
.newsletter-inline h3 { font-family: sans-serif; font-size: 1.1em; margin-top: 0; }
.signup-form { display: flex; gap: 10px; margin-top: 15px; }
.signup-form input { padding: 10px; border: 1px solid #ccc; flex-grow: 1; }
.signup-form button { background: var(--teal-dark); color: white; border: none; padding: 10px 20px; cursor: pointer; }

/* --- 5. RIGHT COLUMN: SIDEBAR (Applied Analysis) --- */
.applied-analysis {
    position: sticky;
    top: 40px; /* Stays visible when scrolling */
}

.analysis-card {
    background: var(--sidebar-bg); /* Light beige/grey */
    padding: 30px;
    border-left: 4px solid var(--teal-dark); /* Left Accent Bar */
    border-radius: 2px;
}

.analysis-card h3 {
    margin-top: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #777;
    text-transform: uppercase;
}

.analysis-card p {
    font-size: 1.1em;
    font-style: italic; /* Editorial touch */
    color: #222;
    margin-bottom: 20px;
}

.analysis-card ul {
    padding-left: 20px;
    margin-bottom: 25px;
}
.analysis-card li {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
}

.analysis-link {
    display: inline-block;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--teal-dark);
    text-decoration: none;
}

/* --- 6. FOOTER --- */
.site-footer {
    border-top: 1px solid #ddd;
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}
.footer-inner nav a { color: #666; margin: 0 15px; text-decoration: none; font-family: sans-serif; font-size: 0.9em; }

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .content-layout { grid-template-columns: 1fr; } /* Stack vertically */
    .applied-analysis { order: 2; margin-top: 40px; } /* Sidebar goes below on mobile */
    .journalism { order: 1; }
}
