/* Drudge Report Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    border-bottom: 3px solid #000000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.site-title {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #cc0000;
}

.site-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #666666;
    margin-top: 10px;
    flex-wrap: wrap;
}

.site-stats .stat-item {
    display: inline-block;
}

.site-stats .stat-label {
    font-weight: bold;
    color: #333333;
}

.visitor-count {
    font-weight: bold;
}

/* Topic Section Headers */
.topic-header {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 5px;
    margin: 25px 0 15px 0;
    letter-spacing: 1px;
}

.last-update {
    font-style: italic;
}

/* Main Content */
main {
    padding: 20px 0;
}

/* Breaking News Section */
.breaking-section {
    text-align: center;
    border-bottom: 3px solid #000000;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.breaking-label {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 15px;
}

.lead-headline {
    margin-bottom: 20px;
}

.lead-headline a {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    color: #cc0000;
    text-decoration: none;
}

.lead-headline a:hover {
    text-decoration: underline;
}

/* Three Column Layout */
.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid #000000;
    padding-top: 20px;
}

.column {
    padding: 0 20px;
    border-right: 1px solid #000000;
}

.column:last-child {
    border-right: none;
}

.column-header {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #cccccc;
}

.headlines-section {
    margin-bottom: 30px;
}

/* Topic header styling */
.topic-header {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin: 20px 0 10px 0;
    letter-spacing: 1px;
}

.headline-item {
    margin-bottom: 15px;
    line-height: 1.3;
    padding: 6px 8px;
    border-radius: 3px;
    transition: background-color 0.15s ease;
}

.headline-item:hover {
    background-color: #f5f5f5;
}

.headline-item a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    display: block;
    /* Truncate to 2 lines with ellipsis */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.headline-item a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.headline-item a:visited {
    color: #551a8b;
}

.source {
    font-size: 11px;
    color: #666666;
    font-weight: normal;
    margin-left: 5px;
}

/* High Priority - Large headlines with red text */
.headline-high a {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    color: #cc0000;
}

.headline-high a:visited {
    color: #990000;
}

.headline-high a:hover {
    color: #ff0000;
}

/* Medium Priority - Regular size */
.headline-medium a {
    font-size: 15px;
    font-weight: bold;
}

/* Low Priority - Smaller */
.headline-low a {
    font-size: 14px;
}

/* No news message */
.no-news {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666666;
}

/* Footer */
footer {
    text-align: center;
    border-top: 2px solid #000000;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 11px;
    color: #666666;
}

footer p {
    margin-bottom: 5px;
}

.disclaimer {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 920px) {
    .container {
        padding: 10px;
    }

    .site-title {
        font-size: 32px;
    }

    .site-stats {
        flex-direction: column;
        gap: 5px;
    }

    /* Collapse to single column on mobile */
    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .column {
        border-right: none;
        border-bottom: 1px solid #cccccc;
        padding: 20px 0;
    }

    .column:last-child {
        border-bottom: none;
    }

    .lead-headline a {
        font-size: 24px;
    }

    .headline-high a {
        font-size: 15px;
    }

    .headline-medium a {
        font-size: 14px;
    }

    .headline-low a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .headline-high a {
        font-size: 16px;
    }

    .headline-medium a {
        font-size: 14px;
    }

    .headline-low a {
        font-size: 12px;
    }

    .headline-item {
        padding: 10px 15px;
    }
}
