
    /* global styles for the article – inserted directly in body */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        background-color: #f4f7fb;
        line-height: 1.6;
        color: #1e2b3c;
        padding: 0;
        margin: 0;
    }

    .news-container {
        max-width: 1200px;
        margin: 40px auto;
        background: white;
        border-radius: 32px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .article-header {
        padding: 48px 48px 24px 48px;
        background: linear-gradient(135deg, #0b2a4a 0%, #123b66 100%);
        color: white;
    }

    .article-header h1 {
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        font-size: 1.1rem;
        opacity: 0.9;
        margin-top: 16px;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .meta-item i { 
        font-style: normal;
        font-weight: 500;
        background: rgba(255,255,255,0.15);
        padding: 6px 12px;
        border-radius: 40px;
    }

    .article-body {
        padding: 48px;
    }

    .lead {
        font-size: 1.3rem;
        font-weight: 400;
        color: #2c3e50;
        border-left: 6px solid #2a7de1;
        padding-left: 24px;
        margin-bottom: 40px;
        background: #f0f6ff;
        padding: 24px 24px 24px 30px;
        border-radius: 20px;
    }

    h2 {
        font-size: 2rem;
        font-weight: 600;
        margin: 48px 0 24px 0;
        color: #0b2a4a;
        letter-spacing: -0.01em;
    }

    h2:first-of-type {
        margin-top: 16px;
    }

    .image-placeholder {
        background-color: #e9edf2;
        border-radius: 24px;
        padding: 20px;
        text-align: center;
        margin: 40px 0;
        border: 2px dashed #a0b8cc;
        color: #3a5a7a;
        font-weight: 500;
        transition: background 0.2s;
    }

    .image-placeholder img {
        max-width: 100%;
        border-radius: 16px;
        display: block;
        margin: 0 auto;
    }

    .image-caption {
        margin-top: 12px;
        font-size: 0.95rem;
        color: #4a6782;
        font-style: italic;
    }

    .equipment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 40px 0;
    }

    .equipment-card {
        background: #f9fcff;
        border-radius: 24px;
        padding: 28px 24px;
        border: 1px solid #dde7f0;
        transition: all 0.2s;
    }

    .equipment-card:hover {
        box-shadow: 0 12px 24px -8px rgba(19, 77, 129, 0.15);
        border-color: #b0c8dd;
    }

    .equipment-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0a2946;
        margin-bottom: 12px;
        border-bottom: 3px solid #2a7de1;
        padding-bottom: 8px;
        display: inline-block;
    }

    .equipment-card p {
        color: #2f4052;
        margin-top: 12px;
    }

    .cta-box {
        background: linear-gradient(145deg, #eef4fa, #ffffff);
        border-radius: 32px;
        padding: 40px;
        text-align: center;
        margin: 48px 0 24px 0;
        border: 1px solid #cbdbe9;
    }

    .cta-box p {
        font-size: 1.4rem;
        font-weight: 500;
        color: #123b66;
        margin-bottom: 16px;
    }

    .booth-highlight {
        display: inline-block;
        background: #1b4d7a;
        color: white;
        font-weight: 700;
        font-size: 2rem;
        padding: 8px 32px;
        border-radius: 60px;
        letter-spacing: 1px;
        margin: 20px 0 10px;
    }

    .footer-note {
        border-top: 2px solid #d0ddee;
        padding-top: 32px;
        margin-top: 32px;
        font-size: 0.95rem;
        color: #4f6b89;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .footer-note a {
        color: #1b5a9c;
        text-decoration: none;
        font-weight: 500;
    }

    .footer-note a:hover {
        text-decoration: underline;
    }

    @media (max-width: 700px) {
        .article-header { padding: 32px 24px; }
        .article-header h1 { font-size: 2.2rem; }
        .article-body { padding: 32px 24px; }
        .equipment-grid { grid-template-columns: 1fr; }
        .cta-box { padding: 30px 20px; }
        .booth-highlight { font-size: 1.8rem; }
    }

    @media (max-width: 450px) {
        .article-meta { flex-direction: column; gap: 12px; }
    }

    .demo-image {
        background: #cbdae9;
        border-radius: 24px;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1e3b5c;
        font-size: 1.2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        background-image: radial-gradient(circle at 20px 20px, #d9e4f0 2px, transparent 2px), 
                          linear-gradient(to right, #b6cee8, #c8ddf5);
        background-size: 40px 40px, 100%;
    }
