        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f5f5f5;
            color: #212529;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

        /* Breaking Banner */
        .breaking-banner {
            background: #dc3545;
            color: white;
            padding: 12px 20px;
            font-weight: bold;
            text-align: center;
            font-size: 14px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #002856 0%, #003d82 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .masthead {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-family: Georgia, serif;
        }

        .tagline {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .date-weather {
            font-size: 14px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.3);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: block;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            background: #002856;
            color: white;
            border: 2px solid white;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Navigation - Mobile First */
        .nav-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: #1a1a1a;
            z-index: 1000;
            overflow-y: auto;
        }

        .nav-menu.show {
            display: block;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .nav-overlay.show {
            display: block;
        }

        .nav-links {
            list-style: none;
            padding-top: 60px;
        }

        .nav-links a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            border-bottom: 1px solid #333;
            font-size: 16px;
        }

        .nav-links a:hover {
            background: #333;
        }

        /* Market Ticker */
        .market-ticker {
            background: black;
            color: #00ff00;
            padding: 10px;
            font-family: monospace;
            font-size: 13px;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-content {
            animation: scroll 40s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Main Layout */
        .main-layout {
            padding: 20px;
        }

        /* Sections */
        .section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid #002856;
        }

        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #002856;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            text-transform: uppercase;
        }

        /* Lead Story */
        .lead-story {
            background: #f8f9fa;
            border: 2px solid #002856;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .featured-badge {
            display: inline-block;
            background: #ffd700;
            color: #002856;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .lead-headline {
            font-size: 32px;
            font-weight: bold;
            color: #212529;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .story-byline {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
            font-style: italic;
        }

        .lead-text {
            font-size: 16px;
            line-height: 1.7;
            color: #212529;
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Quote Box */
        .quote-box {
            background: #e7f3ff;
            border-left: 4px solid #002856;
            padding: 20px;
            margin: 20px 0;
            font-style: italic;
        }

        .quote-text {
            font-size: 16px;
            color: #212529;
            margin-bottom: 10px;
        }

        .quote-attribution {
            font-weight: bold;
            font-style: normal;
            color: #002856;
        }

        /* Story Cards */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .story-card {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }

        .story-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .story-category {
            display: inline-block;
            background: #dc3545;
            color: white;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .story-category.business { background: #28a745; }
        .story-category.technology { background: #17a2b8; }
        .story-category.international { background: #ffc107; color: #212529; }
        .story-category.culture { background: #6f42c1; }
        .story-category.sports { background: #20c997; }
        .story-category.energy { background: #0dcaf0; color: #212529; }

        .story-headline {
            font-size: 20px;
            font-weight: bold;
            color: #212529;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .story-text {
            font-size: 15px;
            line-height: 1.6;
            color: #495057;
            margin-bottom: 15px;
        }

        .story-meta {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #6c757d;
            padding-top: 10px;
            border-top: 1px solid #e9ecef;
        }

        /* Sidebar */
        .sidebar {
            margin-top: 40px;
        }

        .sidebar-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #dee2e6;
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: bold;
            color: #002856;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            text-transform: uppercase;
        }

        /* Weather */
        .weather-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .weather-item {
            background: white;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #dee2e6;
        }

        .weather-city {
            font-size: 12px;
            font-weight: bold;
            color: #495057;
        }

        .weather-temp {
            font-size: 20px;
            font-weight: bold;
            color: #002856;
            display: block;
            margin: 5px 0;
        }

        .weather-condition {
            font-size: 11px;
            color: #6c757d;
        }

        /* Market Data */
        .market-data {
            font-family: monospace;
            font-size: 14px;
        }

        .market-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .market-label {
            font-weight: bold;
            color: #495057;
        }

        .market-up { color: #28a745; font-weight: bold; }
        .market-down { color: #dc3545; font-weight: bold; }

        /* Newsletter */
        .newsletter-signup {
            background: #002856;
            color: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .newsletter-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px;
            margin: 15px 0;
            border: none;
            border-radius: 5px;
            font-size: 14px;
        }

        .newsletter-btn {
            width: 100%;
            background: #ffd700;
            color: #002856;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
        }

        .newsletter-btn:hover {
            background: #ffed4e;
        }

        /* Footer */
        .footer {
            background: #002856;
            color: white;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #ffd700;
            margin-bottom: 15px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            display: block;
            padding: 5px 0;
            font-size: 14px;
        }

        .footer-section a:hover {
            color: #ffd700;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 13px;
            opacity: 0.9;
        }

        /* Tablet Styles */
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }

            .nav-menu {
                display: block;
                position: sticky;
                top: 0;
                width: 100%;
                height: auto;
                background: #1a1a1a;
                z-index: 100;
            }

            .nav-links {
                display: flex;
                justify-content: center;
                padding: 0;
            }

            .nav-links a {
                padding: 15px 25px;
                border-bottom: none;
                border-right: 1px solid #333;
            }

            .story-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .weather-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .main-layout {
                display: grid;
                grid-template-columns: 1fr 380px;
                gap: 40px;
                padding: 40px;
            }

            .sidebar {
                margin-top: 0;
            }

            .masthead {
                font-size: 48px;
            }

            .lead-headline {
                font-size: 36px;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Focus styles for accessibility */
        a:focus, button:focus, input:focus {
            outline: 3px solid #ffd700;
            outline-offset: 2px;
        }

/* Article Detail Page */
.article-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}

.article-detail {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.article-badge-large {
    margin-bottom: 20px;
}

.article-badge-large .badge {
    font-size: 14px;
    padding: 8px 20px;
}

.article-detail-headline {
    font-size: 36px;
    font-weight: bold;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-deck {
    font-size: 18px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.article-detail-meta {
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
}

.meta-row {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6c757d;
}

.meta-row:last-child {
    margin-bottom: 0;
}

.meta-item {
    margin-right: 15px;
}

.meta-separator {
    margin: 0 8px;
    color: #dee2e6;
}

.correspondent-badge {
    color: #007bff;
    font-size: 13px;
}

.ai-info {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.ai-badge {
    background: #17a2b8;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
}

.quality-badge, .confidence-badge {
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 40px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #002856;
}

.article-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #002856;
}

.article-footer {
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

.article-location {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.social-share {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.social-share strong {
    display: block;
    margin-bottom: 15px;
    color: #002856;
    font-size: 16px;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s;
}

.share-btn:hover {
    background: #0056b3;
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0c85d0;
}

.share-facebook {
    background: #4267B2;
}

.share-facebook:hover {
    background: #365899;
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #006399;
}

.article-attribution {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-size: 13px;
    color: #6c757d;
}

.source-attribution {
    margin-top: 10px;
    font-style: italic;
}

.source-attribution a {
    color: #007bff;
}

/* Article Sidebar */
.article-sidebar {
    margin-top: 30px;
}

.article-sidebar .widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

.related-articles, .more-from-section {
    margin-top: 15px;
}

.related-article-item, .section-article-item {
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.related-article-item:last-child, .section-article-item:last-child {
    border-bottom: none;
}

.related-headline {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-headline a {
    color: #212529;
    text-decoration: none;
}

.related-headline a:hover {
    color: #007bff;
}

.related-meta {
    font-size: 12px;
    color: #6c757d;
}

.section-article-item a {
    color: #212529;
    text-decoration: none;
    font-size: 14px;
}

.section-article-item a:hover {
    color: #007bff;
}

.section-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

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

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    border-top: 2px solid #002856;
    margin-top: 40px;
}

.nav-home, .nav-section {
    padding: 12px 25px;
    background: #002856;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-home:hover, .nav-section:hover {
    background: #003d82;
}

/* Desktop Layout for Article Detail */
@media (min-width: 1024px) {
    .article-detail-container {
        grid-template-columns: 2fr 1fr;
        padding: 40px;
    }

    .article-sidebar {
        margin-top: 0;
    }

    .article-detail-headline {
        font-size: 42px;
    }

    .article-deck {
        font-size: 20px;
    }
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.badge-breaking {
    background: #dc3545;
    color: white;
}

.badge-lead {
    background: #ffd700;
    color: #002856;
}

.badge-brief {
    background: #6c757d;
    color: white;
}

/* ============================================
   SECTION PAGES
   ============================================ */

/* Section Page Container */
.section-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}

/* Section Header */
.section-header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 3px solid #002856;
    margin-bottom: 30px;
}

.section-page-title {
    font-size: 48px;
    font-weight: 800;
    color: #002856;
    font-family: Georgia, serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Stats */
.section-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.stat-item {
    color: #666;
}

.stat-item strong {
    color: #002856;
    font-weight: 700;
}

.stat-separator {
    color: #ccc;
}

/* Section Content Grid */
.section-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 30px;
}

.section-main {
    min-width: 0; /* Prevents grid overflow */
}

.section-sidebar {
    min-width: 0; /* Prevents grid overflow */
}

/* Subsection Titles */
.subsection-title {
    font-size: 24px;
    font-weight: 800;
    color: #002856;
    border-bottom: 2px solid #002856;
    padding-bottom: 10px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.section-lead-section {
    margin-bottom: 40px;
}

.section-all-articles {
    margin-top: 40px;
}

/* Articles List */
.articles-list {
    display: grid;
    gap: 25px;
}

/* ============================================
   ARTICLE CARDS
   ============================================ */

.article-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #002856;
}

/* Article Card - Large Variant */
.article-card.size-large {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 280px;
}

.article-card.size-large .article-card-image {
    height: 100%;
    min-height: 280px;
}

.article-card.size-large .article-card-content {
    padding: 30px;
}

.article-card.size-large .article-card-headline {
    font-size: 28px;
    margin-bottom: 15px;
}

.article-card.size-large .article-card-excerpt {
    font-size: 16px;
    display: block;
}

/* Article Card - Medium Variant */
.article-card.size-medium {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 180px;
}

.article-card.size-medium .article-card-image {
    height: 100%;
    min-height: 180px;
}

.article-card.size-medium .article-card-content {
    padding: 20px;
}

.article-card.size-medium .article-card-headline {
    font-size: 20px;
    margin-bottom: 10px;
}

.article-card.size-medium .article-card-excerpt {
    font-size: 14px;
    display: block;
}

/* Article Card - Small Variant */
.article-card.size-small {
    display: flex;
    flex-direction: row;
    min-height: 120px;
}

.article-card.size-small .article-card-image {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.article-card.size-small .article-card-content {
    padding: 15px;
    flex: 1;
}

.article-card.size-small .article-card-headline {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Article Card Components */
.article-card-image {
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #adb5bd;
    font-size: 48px;
}

.article-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
}

.article-card-category {
    color: #002856;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.article-card-category a {
    color: #002856;
    text-decoration: none;
}

.article-card-category a:hover {
    text-decoration: underline;
}

.article-card-headline {
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: #212529;
    margin-bottom: 10px;
}

.article-card-headline a {
    color: #212529;
    text-decoration: none;
}

.article-card-headline a:hover {
    color: #002856;
}

.article-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    display: none; /* Hidden by default, shown in larger variants */
}

.article-card-byline {
    font-size: 13px;
    color: #666;
    margin-top: auto;
    padding-top: 10px;
}

.article-card-byline strong {
    color: #212529;
}

.article-card-date {
    color: #999;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.pagination-btn {
    padding: 10px 20px;
    background: #002856;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pagination-btn:hover {
    background: #003d82;
}

.pagination-info {
    color: #666;
    font-size: 14px;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */

.widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: #002856;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #002856;
    letter-spacing: 0.5px;
}

/* Section Links Widget */
.section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-link {
    display: block;
    padding: 12px 15px;
    background: white;
    color: #002856;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.section-link:hover {
    background: #002856;
    color: white;
    transform: translateX(5px);
}

/* Featured List Widget */
.featured-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.featured-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-headline {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}

.featured-headline a {
    color: #212529;
    text-decoration: none;
}

.featured-headline a:hover {
    color: #002856;
}

.featured-meta {
    font-size: 12px;
    color: #999;
}

/* Market Widget */
.market-widget {
    background: #002856;
    color: white;
}

.market-widget .widget-title {
    color: white;
    border-bottom-color: white;
}

.market-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.market-symbol {
    font-weight: 700;
    font-size: 14px;
}

.market-value {
    font-size: 15px;
}

.market-change {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.market-change.positive {
    background: #28a745;
    color: white;
}

.market-change.negative {
    background: #dc3545;
    color: white;
}

/* No Articles Message */
.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-articles p {
    font-size: 18px;
    margin-bottom: 15px;
}

.no-articles a {
    color: #002856;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN - SECTION PAGES
   ============================================ */

@media (max-width: 1024px) {
    .section-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-sidebar {
        order: -1; /* Move sidebar above content on smaller screens */
    }

    .article-card.size-large {
        grid-template-columns: 1fr;
    }

    .article-card.size-large .article-card-image {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .section-page {
        padding: 15px;
    }

    .section-header {
        padding: 30px 15px 20px;
    }

    .section-page-title {
        font-size: 36px;
    }

    .section-stats {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .subsection-title {
        font-size: 20px;
    }

    .article-card.size-medium {
        grid-template-columns: 1fr;
    }

    .article-card.size-medium .article-card-image {
        height: 200px;
        min-height: 200px;
    }

    .article-card.size-small {
        flex-direction: column;
    }

    .article-card.size-small .article-card-image {
        width: 100%;
        height: 180px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pagination-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

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

    .section-description {
        font-size: 16px;
    }

    .article-card.size-large .article-card-content {
        padding: 20px;
    }

    .article-card.size-large .article-card-headline {
        font-size: 22px;
    }

    .widget {
        padding: 15px;
    }
}

/* ========================================
   Featured Images Styling
   ======================================== */

/* Article Card Images */
.article-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 15px;
    aspect-ratio: 16 / 9; /* Yatay görünüm */
}

.article-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

/* Size overrides - artık aspect ratio ile */
.article-card.size-large .article-card-image {
    aspect-ratio: 16 / 9;
}

.article-card.size-medium .article-card-image {
    aspect-ratio: 16 / 9;
}

.article-card.size-small .article-card-image {
    aspect-ratio: 16 / 10;
}

.article-card-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Article Detail Featured Image */
.article-featured-image {
    margin: 20px 0 30px 0;
    width: 100%;
    max-width: 900px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 9; /* Yatay görünüm */
    margin-left: auto;
    margin-right: auto;
}

.featured-image-full {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-featured-image {
        max-height: 250px;
        margin: 15px 0 20px 0;
    }

    /* Mobile'da yine yatay */
    .article-card-image {
        aspect-ratio: 16 / 9;
    }
}

/* Loading state */
.article-card-image img[loading="lazy"] {
    background: #f0f0f0;
}


/* ========================================
   Homepage Story Images
   ======================================== */

/* Lead Story Image */
.lead-story-image {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    margin: 15px 0 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lead-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Story Card Images */
.story-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .lead-story-image {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    .story-card-image {
        aspect-ratio: 16 / 9;
    }
}

