/* Variables */
:root {
    --primary-color: #3333FF;
    --secondary-color: #dc2626;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
}

/* Main Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Content Sections */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
}

/* Recent Press Freedom section styles */
.content-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
}

.content-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #2a2a2a;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.controversy-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.controversy-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.controversy-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.source-citations {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.source-citations a {
    display: inline-block;
    margin-right: 1.5rem;
    color: #2962ff;
    text-decoration: none;
    font-size: 0.9rem;
}

.source-citations a:hover {
    text-decoration: underline;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Sidebar */
.story-sidebar {
    position: sticky;
    top: 2rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    background: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-sidebar {
        position: static;
    }
}