
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f7fb;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .article-container {
            max-width: 1280px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            height: 560px;
            background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80') center/cover no-repeat;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 2rem 3rem;
        }
        .hero-overlay {
            background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: white;
        }
        .hero-category {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            background: rgba(0,0,0,0.5);
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.2rem;
            backdrop-filter: blur(4px);
        }
        .hero h1 {
            font-size: 3.4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero-meta {
            font-size: 0.9rem;
            display: flex;
            gap: 1.5rem;
            color: #f0f0f0;
            font-weight: 400;
        }
        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* GRID LAYOUT */
        .grid-main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5rem;
            padding: 2.5rem 3rem;
        }

        /* LEFT COLUMN (ARTICLE BODY) */
        .article-body p {
            font-size: 1.05rem;
            color: #2c3e44;
            margin-bottom: 1.4rem;
            font-weight: 400;
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            border-left: 5px solid #2b7a4b;
            padding-left: 1rem;
        }
        .article-body h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 1.5rem 0 0.8rem;
            color: #1e4663;
        }
        .pull-quote {
            background: #eef2f5;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-radius: 20px;
            font-style: italic;
            font-weight: 500;
            font-size: 1.2rem;
            border-left: 6px solid #2b7a4b;
            color: #1e3a5f;
        }
        .stat-badge {
            display: inline-block;
            background: #2b7a4b10;
            border: 1px solid #2b7a4b30;
            border-radius: 40px;
            padding: 0.2rem 1rem;
            font-weight: 600;
            font-size: 0.8rem;
            color: #2b7a4b;
            margin-right: 0.5rem;
        }

        /* RIGHT SIDEBAR */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .info-card {
            background: #ffffff;
            border-radius: 28px;
            box-shadow: 0 10px 25px -8px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #e9edf2;
        }
        .info-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .info-card .card-content {
            padding: 1.2rem 1.5rem;
        }
        .info-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .info-card .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2b7a4b;
            line-height: 1;
            margin: 0.5rem 0;
        }
        .market-data {
            list-style: none;
            margin-top: 1rem;
        }
        .market-data li {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #ecf0f3;
            padding: 0.7rem 0;
            font-size: 0.9rem;
        }
        .data-label {
            font-weight: 500;
        }
        .data-value {
            font-weight: 700;
            color: #1e2a3e;
        }

        /* IMAGE GALLERY ROW */
        .image-showcase {
            padding: 0 3rem 2rem 3rem;
        }
        .image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .img-card {
            border-radius: 20px;
            overflow: hidden;
            background: #f9fafc;
            transition: transform 0.2s ease;
        }
        .img-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .img-caption {
            padding: 0.8rem 0.8rem 1rem;
            font-size: 0.8rem;
            color: #4a627a;
            line-height: 1.4;
            text-align: center;
        }

        /* FOOTER */
        .article-footer {
            padding: 1.8rem 3rem;
            border-top: 1px solid #e2e8f0;
            background: #fafcff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #5c6f87;
        }

        @media (max-width: 900px) {
            .grid-main { grid-template-columns: 1fr; padding: 1.5rem; }
            .hero { height: 450px; padding: 1.5rem; }
            .hero h1 { font-size: 2.2rem; }
            .image-grid { grid-template-columns: 1fr; gap: 1rem; }
            .image-showcase { padding: 0 1.5rem 1.5rem 1.5rem; }
            .article-footer { flex-direction: column; gap: 0.8rem; align-items: flex-start; padding: 1.5rem; }
        }
    