:root {
        --primary: #004ac6;
        --primary-container: #2563eb;
        --on-primary: #ffffff;
        --secondary: #565e74;
        --on-secondary: #ffffff;
        --background: #f8f9ff;
        --bg-main: #f6f8fb;
        --surface: #ffffff;
        --on-surface: #0b1c30;
        --on-surface-variant: #434655;
        --surface-container: #e5eeff;
        --surface-container-low: #eff4ff;
        --surface-container-high: #dce9ff;
        --surface-container-highest: #d3e4fe;
        --surface-container-lowest: #ffffff;
        --outline-variant: rgba(195, 198, 215, 0.5);
        --border-subtle: #e5e7eb;
        --success-green: #10b981;
        --warning-amber: #f59e0b;
        --error: #ba1a1a;
        --error-red: #ef4444;
        --secondary-container: #dae2fd;
        --tertiary: #943700;
        --font-main: 'Inter', sans-serif;
        --font-display: 'Hanken Grotesk', sans-serif;
        --font-mono: 'JetBrains Mono', monospace;
        --gutter: 1.25rem;
        --container-max: 1280px;
        --stack-sm: 0.25rem;
        --stack-md: 0.75rem;
        --stack-lg: 1rem;
        --section-gap: 1rem;
        --radius-lg: 0.5rem;
        --radius-xl: 0.75rem;
    }

    .page-main { padding: var(--stack-lg) 0 var(--section-gap); }
    .news-layout { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
    @media (min-width: 1024px) { .news-layout { grid-template-columns: minmax(0, 3fr) minmax(340px, 1fr); } }
    .content-column, .sticky-column { display: flex; flex-direction: column; gap: 20px; }
    @media (min-width: 1024px) { .sticky-column { position: sticky; top: 96px; } }
    .breadcrumbs { display: flex; align-items: center; gap: 0.4rem; margin-bottom: var(--stack-lg); font-size: 11px; color: var(--secondary); }
    .breadcrumbs a { color: var(--secondary); }
    .breadcrumbs .active { color: var(--on-surface); }
 
        .page-heading {
            margin-bottom: var(--section-gap);
        }

        .page-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 600;
            color: var(--on-surface);
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            font-size: 14px;
            color: var(--on-surface-variant);
            max-width: 600px;
        }

        /* News List Items */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: var(--gutter);
        }

        .news-card {
            background-color: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .news-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .news-card {
                flex-direction: row;
                height: 200px;
            }

            .news-card.reverse {
                flex-direction: row-reverse;
            }
        }

        .news-image-wrapper {
            width: 100%;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .news-image-wrapper {
                width: 320px;
                height: 100%;
            }
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .news-content {
            padding: var(--stack-lg);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .news-tag1 {
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .tag-primary {
            background: rgba(0, 74, 198, 0.1);
            color: var(--primary);
        }

        .tag-tertiary {
            background: rgba(148, 55, 0, 0.1);
            color: var(--tertiary);
        }

        .tag-success {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-green);
        }

        .tag-warning {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning-amber);
        }

        .news-date {
            font-size: 12px;
            color: var(--secondary);
        }

        .news-title {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--on-surface);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

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

        .news-excerpt {
            font-size: 13px;
            color: var(--on-surface-variant);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .news-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .news-link:hover {
            text-decoration: underline;
        }

    .sidebar-heading { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-container); display: inline-block; }
    .sidebar-news-link { font-size: 13px; font-weight: 500; color: var(--on-surface); line-height: 1.5; }
    .sidebar-news-date { font-size: 11px; color: var(--secondary); }
    .sidebar-product-card { display: flex; gap: 0.75rem; align-items: center; background: var(--surface); padding: 0.75rem; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); }
    .sidebar-product-image { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--surface-container); }
    .sidebar-product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .sidebar-product-title { margin: 0 0 4px; font-size: 13px; font-weight: 600; line-height: 1.4; }
    .sidebar-product-title a { color: var(--on-surface); }
    .sidebar-product-price { margin: 0 0 4px; color: var(--primary); font-size: 13px; font-weight: 700; }
    .product-card-stock { font-size: 12px; color: var(--secondary); }
    .pagination-wrap { margin-top: 8px; }
    .pagination-wrap .page, .pagination-wrap .pagination { display: flex; flex-wrap: wrap; gap: 8px; }
    .pagination-wrap a, .pagination-wrap span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--border-subtle); background: #fff; color: var(--on-surface); }
    .pagination-wrap .current, .pagination-wrap .active { background: var(--primary); border-color: var(--primary); color: #fff; }
    .news-empty { padding: 48px 24px; text-align: center; border-radius: 20px; background: #fff; border: 1px dashed var(--border-subtle); color: var(--secondary); }
    @media (max-width: 767px) {
        .page-heading { padding: 20px; border-radius: 16px; }
        .page-title { font-size: 26px; }
        .news-card, .news-card.reverse { grid-template-columns: 1fr; padding: 16px; }
        .news-card.reverse .news-image-wrapper, .news-card.reverse .news-content { order: initial; }
        .news-title { font-size: 22px; }
        .news-image, .news-image-wrapper { min-height: 190px; }
    }
    
    
.article-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    color: #888;
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 5px;
}

.meta-icon {
    margin-right: 8px;
    color: #bbb;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 30px;
}

.article-content img {
    max-width: 100%;
}

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

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.article-paragraph {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.article-image {
    width: 100%;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    margin-bottom: 25px;
}

.article-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.quote-author {
    text-align: right;
    margin-top: 10px;
    color: #777;
    font-weight: 500;
}
.article-header {
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 74, 198, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(11, 28, 48, 0.08);
    overflow: hidden;
}
.card-body {
    padding: 24px;
}
        
.article-item {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    word-break: break-word;
}

.article-item a {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 6px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-item a:hover {
    color: var(--color-primary-hover);
}

.article-item .meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
    gap: 8px;
}

.article-item i {
    font-size: 12px;
    color: #7f8c8d;
}

.article-item span {
    font-size: 12px;
    color: #7f8c8d;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .article-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }

    .article-item a {
        font-size: 15px;
        white-space: normal;
        flex: 1;
        margin-bottom: 0;
    }
}