:root {
    /* CNN Professional Palette */
    --cnn-red: #cc0000;
    --cnn-black: #0c0c0c;
    --cnn-light-bg: #ffffff;
    --cnn-grey-bg: #f9f9f9;
    --border-light: #eaeaea;
    --text-dark: #0c0c0c;
    --text-medium: #444444;
    --text-muted: #777777;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-roboto: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--cnn-light-bg);
    color: var(--text-dark);
    font-family: var(--font-inter);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* TOP ALERT BAR (Full Width) */
.top-alert-bar {
    background-color: var(--cnn-black);
    color: #ffffff;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--cnn-red);
}

.alert-label {
    background-color: var(--cnn-red);
    color: #ffffff;
    padding: 2px 8px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 0.75rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.alert-content {
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.alert-headline-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s ease;
}

.alert-headline-link:hover {
    color: var(--cnn-red);
}

/* CNN Header */
.cnn-header {
    background-color: var(--cnn-black);
    color: #ffffff;
    height: 65px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222222;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
}

.cnn-logo-box {
    transition: transform 0.2s ease;
}
.cnn-logo-box:hover {
    transform: scale(1.02);
}

.cnn-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.cnn-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.cnn-nav a:hover, .cnn-nav a.active {
    color: #ffffff;
    border-bottom: 2px solid var(--cnn-red);
    padding-bottom: 5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-tv-status {
    background-color: var(--cnn-red);
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
}
.live-tv-status:hover {
    background-color: #a30000;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink { 
    0% { opacity: 1; } 
    50% { opacity: 0; } 
    100% { opacity: 1; } 
}

/* HERO SECTION (2-Column Split Above the Fold) */
.hero-section {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Left Column (65% width) */
.hero-featured-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.hero-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-link:hover .hero-featured-image {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 4px 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 2px;
}

.hero-category-badge {
    color: var(--cnn-red);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.8px;
    display: block;
    transition: color 0.2s ease;
}

.hero-title:hover {
    color: var(--cnn-red);
}

.hero-excerpt {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Marathi Text Classes */
.title-marathi {
    font-size: 0.8em;
    color: #666666;
    font-family: 'Noto Sans Marathi', sans-serif;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}
.snippet-marathi {
    font-size: 0.9em;
    color: #777777;
    font-family: 'Noto Sans Marathi', sans-serif;
    display: block;
    margin-top: 5px;
}

/* Hero Right Column (35% width Trending Stack) */
.hero-trending-container {
    display: flex;
    flex-direction: column;
    background-color: var(--cnn-grey-bg);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.trending-header {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--cnn-red);
    padding-bottom: 8px;
    color: var(--text-dark);
}

.trending-list {
    display: flex;
    flex-direction: column;
}

.trending-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.trending-item:first-child {
    padding-top: 0;
}

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

.trending-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #dddddd;
    line-height: 1;
    margin-right: 15px;
    font-family: var(--font-roboto);
}

.trending-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trending-item-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.trending-item-title:hover {
    color: var(--cnn-red);
}

.trending-item-category {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* MULTI-COLUMN GRID (Below the Fold) */
.below-fold-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.below-fold-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Column 1 & 2 container */
.news-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 25px;
}

.news-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card-image-link:hover .news-card-image {
    transform: scale(1.04);
}

.news-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.news-card-category {
    color: var(--cnn-red);
    letter-spacing: 0.5px;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title:hover {
    color: var(--cnn-red);
}

/* Column 3: High-Margin Monetization Sidebar */
.monetization-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ad-unit {
    display: flex;
    flex-direction: column;
}

.ad-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ad-content {
    background-color: var(--cnn-grey-bg);
    border: 1px solid var(--border-light);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ad-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.ad-text {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.ad-link {
    font-size: 0.8rem;
    color: var(--cnn-red);
    font-weight: 800;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.ad-link:hover {
    color: #990000;
    text-decoration: underline;
}

.premium-feature-box .ad-content {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #222222;
}

.premium-feature-box .ad-title {
    color: #ffffff;
}

.premium-feature-box .ad-text {
    color: #cccccc;
}

.ad-btn {
    display: block;
    text-align: center;
    background-color: var(--cnn-red);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ad-btn:hover {
    background-color: #b30000;
}

/* Live streams section */
.multi-stream-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.cnn-section-header {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 10px;
}

.cnn-section-header::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background-color: var(--cnn-red);
}

.multi-stream-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stream-card {
    background-color: var(--cnn-light-bg);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.stream-header {
    background-color: var(--cnn-grey-bg);
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-light);
}

.live-badge {
    background-color: var(--cnn-red);
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 2px;
}

.stream-name {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stream-window {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.stream-window iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Wealth Command Grid */
.wealth-intelligence {
    padding: 60px 0;
}

.market-command-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.ai-agent-card {
    background-color: var(--cnn-grey-bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cnn-black);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.agent-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
}

.agent-status {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
}

.agent-insight {
    background-color: #111111;
    color: #00ff88;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    border-left: 3px solid #00ff88;
}

/* Mega Footer */
.cnn-mega-footer {
    background-color: var(--cnn-black);
    color: #ffffff;
    padding: 60px 0 30px;
    border-top: 4px solid var(--cnn-red);
}

.mega-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cnn-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cnn-red);
}

.cnn-logo span {
    color: #ffffff;
    font-weight: 300;
}

.footer-socials a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #ffffff;
}

.mega-search-bar {
    margin-bottom: 40px;
}

.mega-search-bar input {
    width: 100%;
    background-color: #222222;
    border: 1px solid #333333;
    padding: 12px 20px;
    border-radius: 4px;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    border-bottom: 1px solid #222222;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #888888;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #666666;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.6rem;
    transition: background-color 0.2s ease;
}
.social-icon:hover {
    background-color: var(--cnn-red);
}

.footer-links-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
}

.footer-legal-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-legal-links a:hover {
    color: #999999;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    .below-fold-grid {
        grid-template-columns: 1fr;
    }
    .multi-stream-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-links-wrap {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .news-cards-container {
        grid-template-columns: 1fr;
    }
    .market-command-grid {
        grid-template-columns: 1fr;
    }
}
/* --- NATIVE ARTICLE PAGES TYPOGRAPHY & LAYOUT --- */
.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 30px;
}

.article-header {
    margin-bottom: 30px;
}

.article-category {
    color: var(--cnn-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.article-title-mr {
    font-size: 1.5rem;
    color: #666;
    font-family: 'Noto Sans Marathi', sans-serif;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
}

.article-featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 30px;
}

.quick-highlights-box {
    background-color: var(--cnn-grey-bg);
    border-left: 4px solid var(--cnn-red);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.quick-highlights-box h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    font-weight: 900;
}

.quick-highlights-box ul {
    list-style-type: none;
    padding: 0;
}

.quick-highlights-box li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.quick-highlights-box li:last-child {
    margin-bottom: 0;
}

.quick-highlights-box li::before {
    content: '•';
    color: var(--cnn-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 30px 0 15px;
    letter-spacing: -0.3px;
}

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

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content strong {
    font-weight: 800;
    color: #000;
}
