* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,sans-serif;
}

:root {
            --newspaper-bg: #fefefe;
            --text-primary: #1a1a1a;
            --text-secondary: #444444;
            --text-light: #666666;
            --border-color: #d1d1d1;
            --accent-red: #c41e3a;
            --accent-blue: #1e3a8a;
            --accent-gold: #d4af37;
            --breaking-red: #dc2626;
            --highlight-yellow: #fef3c7;
            --sidebar-bg: #ebebeb;
            --success-green: #059669;
        }

        body {
            /* font-family: 'Times New Roman', Georgia, serif; */
            font-family: Arial,sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--newspaper-bg);
            font-size: 16px;
        }
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            /* grid-template-columns: 2fr 1fr; */
            gap: 3rem;
            margin-top: 20px;
        }

        .main-content {
            background: white;
            padding: 0;
        }

        .article-header {
            border-bottom: 3px solid var(--text-primary);
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }

        .category-label {
            background: var(--accent-red);
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .headline {
            font-size: 2.8rem;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 1rem;
            font-family: 'Arial Black', Arial, sans-serif;
            color: var(--text-primary);
        }

        .subheadline {
            font-size: 1.3rem;
            color: var(--text-secondary);
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .dateline {
            font-weight: bold;
            color: var(--accent-red);
            margin-bottom: 1rem;
        }

        .byline {
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-photo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .article-body {
            column-count: 2;
            column-gap: 2rem;
            column-rule: 1px solid var(--border-color);
            text-align: justify;
            line-height: 1.8;
            font-size: 1rem;
        }

        .article-body p {
            margin-bottom: 1.2rem;
            text-indent: 1.5em;
        }

        .article-body p:first-child {
            font-size: 1.1rem;
            font-weight: 500;
            text-indent: 0;
        }

        .article-body h3 {
            column-span: all;
            font-size: 1.4rem;
            font-weight: bold;
            margin: 2rem 0 1rem 0;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 0.5rem;
            text-align: left;
        }

        .pullquote {
            column-span: all;
            background: var(--highlight-yellow);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            font-size: 1.2rem;
            font-style: italic;
            text-align: center;
            position: relative;
        }

        .pullquote::before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-gold);
            position: absolute;
            top: -25px;
            left: 10px;
            font-family: Georgia, serif;
        }

.feature-box {
    column-span: all; /* This makes the box span across both columns */
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 5px solid var(--accent-red);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Creates a responsive grid */
    gap: 2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-item ul {
    list-style-type: disc;
    padding-left: 20px;
}

.feature-item ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}
.sidebar {
    background: none;
    padding: 0;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}


.sidebar-section {
    background: var(--sidebar-bg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 2rem;
    border: none;
    border-left: 6px solid #d4af37;
}

.sidebar-section a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: bold;
}
.sidebar-section a:hover {
    color: var(--accent-red);
}
.sidebar-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: none;
}
.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list :hover {
    color: var(--accent-red);
}

.simple-list li {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.simple-list li::before {
    content: '';
    color: #c41e3a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.stats-simple div,
.market-stats div,
.key-drivers div {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 0.3rem;
}

.story-item {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #ccc;
    font-weight: 500;
}

.story-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.key-drivers {
    margin-top: 1rem;
}

.key-drivers strong {
    color: #1a1a1a;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

        .photo-caption {
            column-span: all;
            text-align: center;
            margin: 2rem 0;
        }

    .main-photo-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}    

        .caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .gold-badge {
            background: linear-gradient(135deg, var(--accent-gold), #b45309);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin: 0.5rem 0;
        }
 .contact-section {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .contact-title {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 8px;
            text-align: center;
            color: #2c3e50;
        }

        .contact-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .contact-item {
            text-align: center;
            padding: 20px;
            border-radius: 6px;
            transition: background-color 0.2s ease;
        }

        .contact-item:hover {
            background-color: #f8f9fa;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            margin: 0 auto 12px;
            fill: #3498db;
        }

        .contact-label {
            font-size: 0.85rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .contact-value {
            font-size: 1rem;
            color: #2c3e50;
            font-weight: 400;
        }

        .contact-value a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-value a:hover {
            color: #2980b9;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e0e0, transparent);
            margin: 30px 0;
        }

        .response-time {
            text-align: center;
            font-size: 0.9rem;
            color: #95a5a6;
            font-style: italic;
        }

.share-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 3rem;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.share-text {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #4a5568;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.share-button:hover::before {
    left: 100%;
}

.share-button.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-button.facebook {
    background: linear-gradient(135deg, #1877f2, #0866d3);
    color: white;
}

.share-button.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
        @media (max-width: 480px) {
            .contact-section {
                padding: 30px 20px;
            }
            
            .contact-title {
                font-size: 1.75rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    /* Mobile devices (768px and below) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .article-body {
        column-count: 1;
        column-gap: 0;
        column-rule: none;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-section {
        flex-direction: column;
        gap: 1rem;
    }
}