/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper-bg: #e0e0e0;
    --ink-color: #111;
    --border-color: #333;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #555;
    color: var(--ink-color);
    line-height: 1.15;
    padding: 20px;
}

/* Newspaper Container */
.newspaper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--paper-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    filter: grayscale(100%) contrast(1.1);
}

/* Masthead */
.masthead {
    text-align: center;
    border-bottom: 3px double var(--border-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.ears {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
}

.ear-left,
.ear-right {
    width: 150px;
}

.ear-left {
    text-align: left;
}

.ear-right {
    text-align: right;
}

.title-wrapper {
    padding: 5px 0;
}

.paper-title {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 0.8;
    margin: 10px 0;
    letter-spacing: -1px;
}

.paper-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: block;
    margin: 5px auto;
    padding: 2px 0;
    width: 100%;
}

/* Content Layout - CSS Columns for true newspaper flow */
.story-grid {
    column-count: 3;
    column-gap: 20px;
    column-rule: 1px solid #999;
    /* Vertical line between columns */
}

/* Story Card */
.story {
    break-inside: avoid;
    /* Prevent stories from being split across columns */
    padding-bottom: 10px;

    .meta {
        font-family: 'Times New Roman', Times, serif;
        font-size: 0.7rem;
        font-style: italic;
        margin-bottom: 5px;
        border-bottom: 1px solid #999;
        padding-bottom: 2px;
    }

    .source-badge {
        font-weight: bold;
    }

    .summary {
        font-family: 'Times New Roman', Times, serif;
        font-size: 1rem;
        line-height: 1.15;
        color: #111;
    }

    /* Drop Cap */
    .summary::first-letter {
        float: left;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2.8rem;
        line-height: 0.8;
        padding-right: 3px;
        padding-top: 2px;
    }

    /* Impact Section */
    .impact-row {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 5px 0;
        padding: 3px;
        border: 1px solid #999;
        font-size: 0.7rem;
        font-family: Arial, sans-serif;
    }

    .icon-wrapper {
        width: 12px;
        height: 12px;
    }

    /* Footer */
    .footer {
        text-align: center;
        font-size: 0.7rem;
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .story-grid {
            column-count: 2;
        }
    }

    /* Read More Link */
    .read-more {
        display: inline-block;
        margin-left: 5px;
        font-family: 'Times New Roman', Times, serif;
        font-size: 0.9rem;
        font-style: italic;
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }

    .read-more:hover {
        text-decoration: underline;
    }


    @media (max-width: 768px) {
        .story-grid {
            column-count: 1;
        }

        .paper-title {
            font-size: 3.5rem;
        }

        .ears {
            display: none;
        }
    }
}

/* Compact Story Card (for Index) */
.story-compact {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
    break-inside: avoid;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.story-compact:hover .headline {
    text-decoration: underline;
}

.story-compact .headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #111;
}

.story-compact .byline {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.story-compact .story-preview {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #333;
    margin-top: 5px;
}

.story-compact .pe-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.story-compact .pe-badge.low {
    background: linear-gradient(135deg, #999 0%, #666 100%);
}

.story-compact .pe-insights {
    background-color: #f0f4ff;
    border-left: 3px solid #667eea;
    padding: 10px;
    margin-top: 8px;
    font-size: 0.85rem;
}

.story-compact .pe-insights strong {
    color: #667eea;
}

.story-compact .pe-insights ul {
    margin: 6px 0 0 0;
    padding-left: 18px;
}


.thumb-icon {
    width: 16px;
    height: 16px;
    fill: #333;
}