/* =====================================================================
   Article content styles — extracted from legacy article HTML <style> tags.
   Loaded only on /news/* article pages so legacy markup (.ecosystem-grid,
   .dynamics-card, .evolution-timeline, etc.) renders correctly.
   ===================================================================== */

        /* Analysis Article Specific Styles */
        .analysis-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .analysis-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="150" fill="white" opacity="0.02"/><circle cx="1100" cy="700" r="200" fill="white" opacity="0.03"/><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="1" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .analysis-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .analysis-badge {
            display: inline-block;
            background: rgba(244, 196, 48, 0.2);
            border: 1px solid var(--yellow);
            color: var(--yellow);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .analysis-title {
            font-size: 52px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .analysis-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .analysis-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .analysis-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .analysis-meta-item i {
            color: var(--yellow);
        }

        .analysis-content {
            background: white;
            padding: 100px 0;
        }

        .analysis-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .executive-summary {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.03) 0%, rgba(26, 35, 50, 0.01) 100%);
            border-left: 4px solid var(--yellow);
            padding: 40px;
            margin-bottom: 60px;
            border-radius: 0 10px 10px 0;
        }

        .executive-summary h2 {
            color: var(--navy);
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .executive-summary p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

        .key-insights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .insight-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            border-top: 3px solid var(--yellow);
        }

        .insight-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .insight-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .insight-description {
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .analysis-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .analysis-body h2 {
            font-size: 36px;
            color: var(--navy);
            margin: 60px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .analysis-body h3 {
            font-size: 26px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .analysis-body p {
            margin-bottom: 25px;
        }

        .analysis-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .analysis-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .thesis-box {
            background: var(--navy);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .thesis-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--yellow);
            opacity: 0.2;
        }

        .thesis-box h3 {
            color: var(--yellow);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .thesis-box p {
            font-size: 18px;
            line-height: 1.8;
            margin: 0;
        }

        .prediction-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .prediction-card {
            background: white;
            border: 1px solid var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .prediction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
            border-color: var(--yellow);
        }

        .prediction-icon {
            font-size: 48px;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .prediction-title {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .prediction-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .author-section {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .cta-analysis {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .cta-analysis h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .cta-analysis p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analysis-title {
                font-size: 36px;
            }

            .analysis-subtitle {
                font-size: 20px;
            }

            .key-insights {
                grid-template-columns: 1fr;
            }

            .prediction-grid {
                grid-template-columns: 1fr;
            }

            .author-section {
                flex-direction: column;
                text-align: center;
            }

            .analysis-body h2 {
                font-size: 28px;
            }
        }

        /* Analysis Article Specific Styles - Reusing from previous */
        .analysis-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .analysis-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="150" fill="white" opacity="0.02"/><circle cx="1100" cy="700" r="200" fill="white" opacity="0.03"/><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="1" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .analysis-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .analysis-badge {
            display: inline-block;
            background: rgba(244, 196, 48, 0.2);
            border: 1px solid var(--yellow);
            color: var(--yellow);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .analysis-title {
            font-size: 52px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .analysis-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .analysis-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .analysis-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .analysis-meta-item i {
            color: var(--yellow);
        }

        .analysis-content {
            background: white;
            padding: 100px 0;
        }

        .analysis-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .executive-summary {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.03) 0%, rgba(26, 35, 50, 0.01) 100%);
            border-left: 4px solid var(--yellow);
            padding: 40px;
            margin-bottom: 60px;
            border-radius: 0 10px 10px 0;
        }

        .executive-summary h2 {
            color: var(--navy);
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .executive-summary p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

        .key-insights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .insight-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            border-top: 3px solid var(--yellow);
        }

        .insight-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .insight-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .insight-description {
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .analysis-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .analysis-body h2 {
            font-size: 36px;
            color: var(--navy);
            margin: 60px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .analysis-body h3 {
            font-size: 26px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .analysis-body p {
            margin-bottom: 25px;
        }

        .analysis-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .analysis-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .thesis-box {
            background: var(--navy);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .thesis-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--yellow);
            opacity: 0.2;
        }

        .thesis-box h3 {
            color: var(--yellow);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .thesis-box p {
            font-size: 18px;
            line-height: 1.8;
            margin: 0;
        }

        .comparison-table {
            width: 100%;
            margin: 40px 0;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.08);
            border-radius: 10px;
            overflow: hidden;
        }

        .comparison-table th {
            background: var(--navy);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid var(--bg-2);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:nth-child(even) {
            background: var(--bg-2);
        }

        .mobile-impact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin: 50px 0;
        }

        .impact-area {
            background: white;
            border: 2px solid var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .impact-area:hover {
            border-color: var(--yellow);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
        }

        .impact-icon {
            font-size: 48px;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .impact-title {
            font-size: 24px;
            color: var(--navy);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .impact-description {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .timeline-section {
            margin: 60px 0;
            position: relative;
            padding-left: 40px;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--yellow);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -35px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--yellow);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--yellow);
        }

        .timeline-year {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .timeline-content {
            font-size: 16px;
            color: var(--text);
            line-height: 1.6;
        }

        .author-section {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .cta-analysis {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .cta-analysis h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .cta-analysis p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analysis-title {
                font-size: 36px;
            }

            .key-insights {
                grid-template-columns: 1fr;
            }

            .mobile-impact-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                font-size: 14px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 15px;
            }
        }

        /* Analysis Article Specific Styles */
        .analysis-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .analysis-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="150" fill="white" opacity="0.02"/><circle cx="1100" cy="700" r="200" fill="white" opacity="0.03"/><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="1" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .analysis-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .analysis-badge {
            display: inline-block;
            background: rgba(244, 196, 48, 0.2);
            border: 1px solid var(--yellow);
            color: var(--yellow);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .analysis-title {
            font-size: 52px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .analysis-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .analysis-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .analysis-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .analysis-meta-item i {
            color: var(--yellow);
        }

        .analysis-content {
            background: white;
            padding: 100px 0;
        }

        .analysis-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .executive-summary {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.03) 0%, rgba(26, 35, 50, 0.01) 100%);
            border-left: 4px solid var(--yellow);
            padding: 40px;
            margin-bottom: 60px;
            border-radius: 0 10px 10px 0;
        }

        .executive-summary h2 {
            color: var(--navy);
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .executive-summary p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

        .key-insights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .insight-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            border-top: 3px solid var(--yellow);
        }

        .insight-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .insight-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .insight-description {
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .analysis-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .analysis-body h2 {
            font-size: 36px;
            color: var(--navy);
            margin: 60px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .analysis-body h3 {
            font-size: 26px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .analysis-body p {
            margin-bottom: 25px;
        }

        .analysis-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .analysis-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .thesis-box {
            background: var(--navy);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .thesis-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--yellow);
            opacity: 0.2;
        }

        .thesis-box h3 {
            color: var(--yellow);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .thesis-box p {
            font-size: 18px;
            line-height: 1.8;
            margin: 0;
        }

        .cloud-stack {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .stack-diagram {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

        .stack-layer {
            background: white;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 3px 10px rgba(26, 35, 50, 0.08);
            transition: all 0.3s ease;
        }

        .stack-layer:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.15);
        }

        .stack-label {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .stack-description {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .stack-examples {
            font-size: 14px;
            color: var(--yellow);
            font-weight: 600;
        }

        .cost-comparison {
            margin: 50px 0;
        }

        .comparison-chart {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 30px;
        }

        .comparison-side {
            background: white;
            border: 2px solid var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            position: relative;
        }

        .comparison-side.traditional {
            border-color: #e74c3c;
        }

        .comparison-side.cloud {
            border-color: #27ae60;
        }

        .comparison-label {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 5px 20px;
            font-weight: 700;
            font-size: 18px;
        }

        .comparison-side.traditional .comparison-label {
            color: #e74c3c;
        }

        .comparison-side.cloud .comparison-label {
            color: #27ae60;
        }

        .comparison-metrics {
            text-align: left;
            margin-top: 20px;
        }

        .metric-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--bg-2);
        }

        .metric-item:last-child {
            border-bottom: none;
        }

        .metric-label {
            font-weight: 600;
            color: var(--text);
        }

        .metric-value {
            font-weight: 700;
        }

        .comparison-side.traditional .metric-value {
            color: #e74c3c;
        }

        .comparison-side.cloud .metric-value {
            color: #27ae60;
        }

        .cloud-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .benefit-card {
            background: white;
            border: 1px solid var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
            border-color: var(--yellow);
        }

        .benefit-icon {
            font-size: 48px;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .benefit-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .investment-areas {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            padding: 50px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .area-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(26, 35, 50, 0.08);
        }

        .area-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .area-icon {
            font-size: 32px;
            color: var(--yellow);
        }

        .area-title {
            font-size: 22px;
            color: var(--navy);
            font-weight: 600;
        }

        .area-description {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .disruption-timeline {
            margin: 50px 0;
            position: relative;
            padding-left: 50px;
        }

        .disruption-timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--yellow);
        }

        .disruption-item {
            position: relative;
            margin-bottom: 40px;
            padding: 20px;
            background: var(--bg-2);
            border-radius: 10px;
        }

        .disruption-item::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 30px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--yellow);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--yellow);
        }

        .disruption-year {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .disruption-title {
            font-size: 18px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .disruption-content {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .author-section {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .cta-analysis {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .cta-analysis h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .cta-analysis p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analysis-title {
                font-size: 36px;
            }

            .analysis-subtitle {
                font-size: 20px;
            }

            .key-insights {
                grid-template-columns: 1fr;
            }

            .comparison-chart {
                grid-template-columns: 1fr;
            }

            .cloud-benefits {
                grid-template-columns: 1fr;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Analysis Article Specific Styles */
        .analysis-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .analysis-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="150" fill="white" opacity="0.02"/><circle cx="1100" cy="700" r="200" fill="white" opacity="0.03"/><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="1" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .analysis-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .analysis-badge {
            display: inline-block;
            background: rgba(244, 196, 48, 0.2);
            border: 1px solid var(--yellow);
            color: var(--yellow);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .analysis-title {
            font-size: 52px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .analysis-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .analysis-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .analysis-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .analysis-meta-item i {
            color: var(--yellow);
        }

        .analysis-content {
            background: white;
            padding: 100px 0;
        }

        .analysis-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .executive-summary {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.03) 0%, rgba(26, 35, 50, 0.01) 100%);
            border-left: 4px solid var(--yellow);
            padding: 40px;
            margin-bottom: 60px;
            border-radius: 0 10px 10px 0;
        }

        .executive-summary h2 {
            color: var(--navy);
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .executive-summary p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

        .key-insights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .insight-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            border-top: 3px solid var(--yellow);
        }

        .insight-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .insight-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .insight-description {
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .analysis-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .analysis-body h2 {
            font-size: 36px;
            color: var(--navy);
            margin: 60px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .analysis-body h3 {
            font-size: 26px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .analysis-body p {
            margin-bottom: 25px;
        }

        .analysis-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .analysis-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .thesis-box {
            background: var(--navy);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .thesis-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--yellow);
            opacity: 0.2;
        }

        .thesis-box h3 {
            color: var(--yellow);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .thesis-box p {
            font-size: 18px;
            line-height: 1.8;
            margin: 0;
        }

        .o2o-ecosystem {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .ecosystem-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .ecosystem-item:hover {
            transform: translateY(-5px);
            border-color: var(--yellow);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
        }

        .ecosystem-icon {
            font-size: 36px;
            color: var(--yellow);
            margin-bottom: 15px;
        }

        .ecosystem-title {
            font-size: 18px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .ecosystem-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .market-dynamics {
            margin: 50px 0;
        }

        .dynamics-card {
            background: white;
            border: 2px solid var(--bg-2);
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 10px;
            position: relative;
            padding-left: 60px;
        }

        .dynamics-number {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: 700;
            color: var(--yellow);
        }

        .dynamics-content h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .dynamics-content p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .investment-map {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .map-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 30px;
        }

        .map-category {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.08);
        }

        .map-category h4 {
            font-size: 22px;
            color: var(--navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-category h4 i {
            color: var(--yellow);
        }

        .company-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .company-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--bg-2);
            font-size: 16px;
            color: var(--text);
        }

        .company-list li:last-child {
            border-bottom: none;
        }

        .company-list li::before {
            content: '•';
            color: var(--yellow);
            font-weight: bold;
            margin-right: 10px;
        }

        .china-specific {
            background: var(--navy);
            color: white;
            padding: 50px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .china-factors {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .factor-item {
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .factor-icon {
            font-size: 32px;
            color: var(--yellow);
            margin-bottom: 15px;
        }

        .factor-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }

        .factor-text {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .author-section {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .cta-analysis {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .cta-analysis h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .cta-analysis p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analysis-title {
                font-size: 36px;
            }

            .key-insights {
                grid-template-columns: 1fr;
            }

            .ecosystem-grid {
                grid-template-columns: 1fr;
            }

            .map-grid {
                grid-template-columns: 1fr;
            }

            .china-factors {
                grid-template-columns: 1fr;
            }
        }

        /* Analysis Article Specific Styles */
        .analysis-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .analysis-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="150" fill="white" opacity="0.02"/><circle cx="1100" cy="700" r="200" fill="white" opacity="0.03"/><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="1" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .analysis-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .analysis-badge {
            display: inline-block;
            background: rgba(244, 196, 48, 0.2);
            border: 1px solid var(--yellow);
            color: var(--yellow);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .analysis-title {
            font-size: 52px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .analysis-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .analysis-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .analysis-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .analysis-meta-item i {
            color: var(--yellow);
        }

        .analysis-content {
            background: white;
            padding: 100px 0;
        }

        .analysis-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .executive-summary {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.03) 0%, rgba(26, 35, 50, 0.01) 100%);
            border-left: 4px solid var(--yellow);
            padding: 40px;
            margin-bottom: 60px;
            border-radius: 0 10px 10px 0;
        }

        .executive-summary h2 {
            color: var(--navy);
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .executive-summary p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

        .key-insights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .insight-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            border-top: 3px solid var(--yellow);
        }

        .insight-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .insight-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .insight-description {
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
        }

        .analysis-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .analysis-body h2 {
            font-size: 36px;
            color: var(--navy);
            margin: 60px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .analysis-body h3 {
            font-size: 26px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .analysis-body p {
            margin-bottom: 25px;
        }

        .analysis-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .analysis-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .analysis-body li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .thesis-box {
            background: var(--navy);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .thesis-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--yellow);
            opacity: 0.2;
        }

        .thesis-box h3 {
            color: var(--yellow);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .thesis-box p {
            font-size: 18px;
            line-height: 1.8;
            margin: 0;
        }

        .ai-evolution {
            background: var(--bg-2);
            padding: 50px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .evolution-timeline {
            position: relative;
            padding: 20px 0;
        }

        .evolution-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }

        .evolution-year {
            background: var(--yellow);
            color: var(--navy);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            min-width: 100px;
            text-align: center;
            margin-right: 30px;
        }

        .evolution-content {
            flex: 1;
        }

        .evolution-title {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .evolution-desc {
            font-size: 16px;
            color: var(--text-muted);
        }

        .ai-layers {
            margin: 50px 0;
        }

        .layer-diagram {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .layer-item {
            background: white;
            border: 2px solid var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .layer-item.highlight {
            border-color: var(--yellow);
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(244, 196, 48, 0.2);
        }

        .layer-label {
            position: absolute;
            top: -15px;
            left: 20px;
            background: white;
            padding: 5px 15px;
            color: var(--navy);
            font-weight: 600;
            font-size: 14px;
        }

        .layer-content h4 {
            font-size: 22px;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .layer-content p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .application-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .app-category {
            background: white;
            border: 2px solid var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .app-category:hover {
            transform: translateY(-5px);
            border-color: var(--yellow);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
        }

        .app-icon {
            font-size: 48px;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .app-title {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .app-examples {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .investment-framework {
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.02) 0%, transparent 100%);
            padding: 50px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .framework-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 30px;
        }

        .framework-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.08);
        }

        .framework-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .framework-icon {
            font-size: 32px;
            color: var(--yellow);
        }

        .framework-title {
            font-size: 22px;
            color: var(--navy);
            font-weight: 600;
        }

        .framework-content {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .future-predictions {
            background: var(--navy);
            color: white;
            padding: 50px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .prediction-list {
            list-style: none;
            padding: 0;
            margin: 30px 0 0;
        }

        .prediction-list li {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .prediction-list li:last-child {
            border-bottom: none;
        }

        .prediction-number {
            background: var(--yellow);
            color: var(--navy);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .prediction-text {
            flex: 1;
            font-size: 18px;
            line-height: 1.6;
        }

        .author-section {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 10px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-muted);
            margin: 0;
        }

        .cta-analysis {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .cta-analysis h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .cta-analysis p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .analysis-title {
                font-size: 36px;
            }

            .key-insights {
                grid-template-columns: 1fr;
            }

            .application-grid {
                grid-template-columns: 1fr;
            }

            .framework-grid {
                grid-template-columns: 1fr;
            }
        }

        /* News Article Specific Styles */
        .news-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 120px 0 80px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="2" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .news-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .news-category {
            display: inline-block;
            background: var(--yellow);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .news-title {
            font-size: 48px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .news-meta {
            display: flex;
            gap: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .news-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-meta-item i {
            color: var(--yellow);
        }

        .news-content {
            background: white;
            padding: 80px 0;
        }

        .news-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .news-lead {
            font-size: 24px;
            line-height: 1.6;
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--bg-2);
        }

        .news-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .news-body h2 {
            font-size: 32px;
            color: var(--navy);
            margin: 50px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .news-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .news-body h3 {
            font-size: 24px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .news-body p {
            margin-bottom: 25px;
        }

        .news-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .news-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .news-body li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .news-highlight {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            border-left: 4px solid var(--yellow);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }

        .news-highlight p {
            font-size: 20px;
            color: var(--navy);
            font-style: italic;
            margin: 0;
            line-height: 1.6;
        }

        .investment-details {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .investment-details h3 {
            color: var(--navy);
            font-size: 24px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .investment-details h3 i {
            color: var(--yellow);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-label {
            font-weight: 600;
            color: var(--navy);
            min-width: 120px;
        }

        .detail-value {
            color: var(--text-muted);
        }

        .about-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--bg-2);
        }

        .about-company {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .about-company h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .about-company p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .news-cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .news-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .news-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-title {
                font-size: 32px;
            }

            .news-lead {
                font-size: 20px;
            }

            .news-body {
                font-size: 16px;
            }

            .news-body h2 {
                font-size: 26px;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .news-cta {
                padding: 40px 30px;
            }
        }

        /* News Article Specific Styles */
        .news-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 120px 0 80px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="2" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .news-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .news-category {
            display: inline-block;
            background: var(--yellow);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .news-title {
            font-size: 48px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .news-meta {
            display: flex;
            gap: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .news-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-meta-item i {
            color: var(--yellow);
        }

        .news-content {
            background: white;
            padding: 80px 0;
        }

        .news-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .news-lead {
            font-size: 24px;
            line-height: 1.6;
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--bg-2);
        }

        .news-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .news-body h2 {
            font-size: 32px;
            color: var(--navy);
            margin: 50px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .news-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .news-body h3 {
            font-size: 24px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .news-body p {
            margin-bottom: 25px;
        }

        .news-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .news-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .news-body li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .news-highlight {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            border-left: 4px solid var(--yellow);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }

        .news-highlight p {
            font-size: 20px;
            color: var(--navy);
            font-style: italic;
            margin: 0;
            line-height: 1.6;
        }

        .investment-details {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .investment-details h3 {
            color: var(--navy);
            font-size: 24px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .investment-details h3 i {
            color: var(--yellow);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-label {
            font-weight: 600;
            color: var(--navy);
            min-width: 120px;
        }

        .detail-value {
            color: var(--text-muted);
        }

        .about-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--bg-2);
        }

        .about-company {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .about-company h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .about-company p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .news-cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .news-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .news-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 40px 0;
            padding: 40px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            border-radius: 15px;
        }

        .metric-item {
            text-align: center;
            color: white;
        }

        .metric-number {
            font-size: 36px;
            font-weight: bold;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .metric-label {
            font-size: 14px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-title {
                font-size: 32px;
            }

            .news-lead {
                font-size: 20px;
            }

            .news-body {
                font-size: 16px;
            }

            .news-body h2 {
                font-size: 26px;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

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

            .news-cta {
                padding: 40px 30px;
            }
        }

        /* News Article Specific Styles */
        .news-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 120px 0 80px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="2" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .news-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .news-category {
            display: inline-block;
            background: var(--yellow);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .news-title {
            font-size: 48px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .news-meta {
            display: flex;
            gap: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .news-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-meta-item i {
            color: var(--yellow);
        }

        .news-content {
            background: white;
            padding: 80px 0;
        }

        .news-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .news-lead {
            font-size: 24px;
            line-height: 1.6;
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--bg-2);
        }

        .news-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .news-body h2 {
            font-size: 32px;
            color: var(--navy);
            margin: 50px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .news-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .news-body h3 {
            font-size: 24px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .news-body p {
            margin-bottom: 25px;
        }

        .news-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .news-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .news-body li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .news-highlight {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            border-left: 4px solid var(--yellow);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }

        .news-highlight p {
            font-size: 20px;
            color: var(--navy);
            font-style: italic;
            margin: 0;
            line-height: 1.6;
        }

        .investment-details {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .investment-details h3 {
            color: var(--navy);
            font-size: 24px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .investment-details h3 i {
            color: var(--yellow);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-label {
            font-weight: 600;
            color: var(--navy);
            min-width: 120px;
        }

        .detail-value {
            color: var(--text-muted);
        }

        .about-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--bg-2);
        }

        .about-company {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .about-company h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .about-company p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .news-cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .news-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .news-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .impact-card {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
        }

        .impact-icon {
            font-size: 48px;
            color: var(--yellow);
            margin-bottom: 20px;
        }

        .impact-title {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .impact-description {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-title {
                font-size: 32px;
            }

            .news-lead {
                font-size: 20px;
            }

            .news-body {
                font-size: 16px;
            }

            .news-body h2 {
                font-size: 26px;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .news-cta {
                padding: 40px 30px;
            }
        }

        /* News Article Specific Styles */
        .news-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 120px 0 80px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400" stroke="white" stroke-width="2" fill="none" opacity="0.05"/></svg>') no-repeat center;
            background-size: cover;
        }

        .news-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .news-category {
            display: inline-block;
            background: var(--yellow);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .news-title {
            font-size: 48px;
            color: white;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .news-meta {
            display: flex;
            gap: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            flex-wrap: wrap;
        }

        .news-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-meta-item i {
            color: var(--yellow);
        }

        .news-content {
            background: white;
            padding: 80px 0;
        }

        .news-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .news-lead {
            font-size: 24px;
            line-height: 1.6;
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--bg-2);
        }

        .news-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        .news-body h2 {
            font-size: 32px;
            color: var(--navy);
            margin: 50px 0 30px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .news-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: var(--yellow);
        }

        .news-body h3 {
            font-size: 24px;
            color: var(--navy);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .news-body p {
            margin-bottom: 25px;
        }

        .news-body ul {
            margin: 20px 0 30px;
            padding-left: 20px;
        }

        .news-body li {
            margin-bottom: 15px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .news-body li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-size: 20px;
        }

        .news-highlight {
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.05) 0%, rgba(244, 196, 48, 0.02) 100%);
            border-left: 4px solid var(--yellow);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }

        .news-highlight p {
            font-size: 20px;
            color: var(--navy);
            font-style: italic;
            margin: 0;
            line-height: 1.6;
        }

        .investment-details {
            background: var(--bg-2);
            padding: 40px;
            border-radius: 15px;
            margin: 50px 0;
        }

        .investment-details h3 {
            color: var(--navy);
            font-size: 24px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .investment-details h3 i {
            color: var(--yellow);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-label {
            font-weight: 600;
            color: var(--navy);
            min-width: 120px;
        }

        .detail-value {
            color: var(--text-muted);
        }

        .about-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--bg-2);
        }

        .about-company {
            background: var(--bg-2);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .about-company h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .about-company p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .news-cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            margin-top: 60px;
            color: white;
        }

        .news-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .news-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        .share-section {
            margin-top: 60px;
            padding: 40px 0;
            border-top: 1px solid var(--bg-2);
            text-align: center;
        }

        .share-title {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            background: var(--bg-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .share-btn:hover {
            background: var(--yellow);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
        }

        .related-news {
            background: var(--bg-2);
            padding: 80px 0;
        }

        .related-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .related-header h2 {
            font-size: 36px;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .related-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .related-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(26, 35, 50, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
        }

        .related-image {
            height: 200px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .related-content {
            padding: 25px;
        }

        .related-date {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .related-title {
            font-size: 18px;
            color: var(--navy);
            font-weight: 600;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-title {
                font-size: 32px;
            }

            .news-lead {
                font-size: 20px;
            }

            .news-body {
                font-size: 16px;
            }

            .news-body h2 {
                font-size: 26px;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .news-cta {
                padding: 40px 30px;
            }
        }

