/* Container for the whole page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header styling */
.story-header {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
}

.story-header h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Main layout */
.story-grid {
    display: grid;
    grid-template-columns: 1fr minmax(250px, 300px);
    gap: 2rem;
    margin-top: 2rem;
}

/* Card styling */
.controversies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.controversy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Sources section */
.sources-section {
    background: #f8fafc;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.sources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.source-category ul {
    list-style: none;
    padding-left: 0;
}

.source-category li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sources-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Social feed */
.social-feed {
    position: sticky;
    top: 2rem;
}

.tweet-item {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Utility classes */
.main-content {
    width: 100%;
    margin: 0 auto;
}