/* 基础全局样式 */
        html {
            font-size: 16px;
            box-sizing: border-box;
        }

        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }

        body {
            margin: 0;
            padding: 0;
            font: 1rem "微软雅黑", "Arial Narrow", HELVETICA;
            -webkit-text-size-adjust: 100%;
            color: #2c3e50;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* 头部导航样式（完全保留第一份风格） */
        header {
            background-color: white;
            padding: 1.5625rem 1.875rem;
            position: relative;
            z-index: 10;
        }

        .header-content {
            max-width: 75rem;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3.75rem;
            flex-wrap: wrap;
        }

        .logo {
            color: #2c3e50;
            font-size: 1.25rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo i {
            font-size: 2rem;
            color: #7a50f2;
        }

        nav[aria-label="主导航"] ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        nav li {
            position: relative;
        }

        nav a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 1.25rem;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s;
        }

        nav a:hover {
            color: #1e755f;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 0.125rem;
            background-color: #1e755f;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* 主体内容区样式（首页样式，保留供首页使用） */
        main#featured-slider-container {
            width: 100%;
            padding: 5rem 1.875rem;
            background: linear-gradient(125deg, #1e755f, #145fa0, #b32486, #cd951a);
            background-size: 800% 800%;
            animation: AnimationName 11s ease infinite;
            flex: 1;
        }

        /* 内容区布局（首页样式） */
        .content-section {
            max-width: 75rem;
            margin: 0 auto;
            color: white;
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        /* 左侧图片栏（首页样式） */
        .image-column {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 400px;
        }

        .image-column img {
            position: absolute;
            max-width: 80%;
            height: auto;
            border-radius: 0.5rem;
            transform: perspective(600px) rotateY(45deg) scale(0.8);
            -webkit-transform: perspective(600px) rotateY(45deg) scale(0.8);
            box-shadow: -4px 2px 12px rgba(0, 0, 0, 0.3);
            margin-left: 50px;
            opacity: 0;
            animation: scaleIn 0.8s forwards;
        }

        .image-column img:first-child {
            top: 0;
            left: 0;
            animation-delay: 0.3s;
        }

        .image-column img:last-child {
            bottom: 0;
            right: 0;
            animation-delay: 0.7s;
        }

        /* 右侧文字栏（首页样式） */
        .text-column {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .text-column h1 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(-30px);
            animation: fadeDown 0.8s forwards 1s;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 auto 2rem;
            max-width: 400px;
            text-align: left;
            padding: 0 1rem;
        }

        .feature-list li {
            margin-bottom: 0.75rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s forwards;
        }

        .feature-list li:nth-child(1) { animation-delay: 1.2s; }
        .feature-list li:nth-child(2) { animation-delay: 1.3s; }
        .feature-list li:nth-child(3) { animation-delay: 1.4s; }
        .feature-list li:nth-child(4) { animation-delay: 1.5s; }
        .feature-list li:nth-child(5) { animation-delay: 1.6s; }
        .feature-list li:nth-child(6) { animation-delay: 1.7s; }
        .feature-list li:nth-child(7) { animation-delay: 1.8s; }
        .feature-list li:nth-child(8) { animation-delay: 1.9s; }
        .feature-list li:nth-child(9) { animation-delay: 2.0s; }
        .feature-list li:nth-child(10) { animation-delay: 2.1s; }
        .feature-list li:nth-child(11) { animation-delay: 2.2s; }

        /* 按钮样式（首页样式） */
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .action-buttons a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            min-width: 100px;
            font-size: 1rem;
            color: white;
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s forwards 2.5s;
        }

        .action-buttons a.qq-group {
            background-color: #12B7F5;
        }

        .action-buttons a.qq-group:hover {
            background-color: #0BA5EC;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(18, 183, 245, 0.3);
        }

        .action-buttons a.download {
            background-color: #E63946;
        }

        .action-buttons a.download:hover {
            background-color: #C1121F;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
        }

        .action-buttons a.buy {
            background-color: #FF9F1C;
        }

        .action-buttons a.buy:hover {
            background-color: #E78F00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 159, 28, 0.3);
        }

        /* 动画关键帧 */
        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: perspective(600px) rotateY(45deg) scale(1);
                -webkit-transform: perspective(600px) rotateY(45deg) scale(1);
            }
        }

        @keyframes fadeDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes AnimationName {
            0% { background-position: 97% 0% }
            50% { background-position: 4% 100% }
            100% { background-position: 97% 0% }
        }

        /* 页脚样式（完全保留第一份风格） */
        footer {
            background-color: white;
            padding: 2.5rem 1.25rem;
            text-align: center;
        }

        .footer-content {
            max-width: 75rem;
            margin: 0 auto;
        }
        /* 页脚 a 链接精简样式 */
.footer-content a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #1e755f;
    text-decoration: underline;
}

.footer-content a:focus {
    outline: 0.125rem solid #1e755f;
    outline-offset: 0.125rem;
}

        .friend-links {
            margin: 0 0 1.25rem;
        }

        .friend-links h4 {
            font-size: 1.125rem;
            margin-bottom: 0.9375rem;
            color: #2c3e50;
            margin-top: 0;
        }

        .friend-links a {
            color: #2c3e50;
            margin: 0 0.9375rem;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
            display: inline-block;
            margin-bottom: 0.625rem;
        }

        .friend-links a:hover {
            color: #1e755f;
            text-decoration: none;
        }

        .copyright {
            font-size: 0.875rem;
            color: #666;
            margin-top: 1.25rem;
            padding-top: 0.9375rem;
            border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
        }

        .footer-logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            max-width: 150px;
            height: auto;
            display: inline-block;
        }

        /* 响应式调整（整合第一份的响应式，保持风格一致） */
        @media (max-width: 48rem) {
            html {
                font-size: 14px;
            }

            /* 头部响应式 */
            .header-content {
                gap: 1.5rem;
                padding: 0.5rem 0;
            }

            nav ul {
                gap: 1.5rem;
                margin-top: 1rem;
            }

            nav li:not(:last-child)::after {
                content: '';
                position: absolute;
                right: -0.75rem;
                top: 50%;
                transform: translateY(-50%);
                width: 0.0625rem;
                height: 1rem;
                background-color: #ccc;
            }

            /* 首页主体响应式 */
            main#featured-slider-container {
                padding: 3rem 1rem;
            }

            .image-column {
                height: 300px;
            }

            .image-column img {
                margin-left: 20px;
            }

            /* 页脚响应式 */
            .friend-links a {
                margin: 0 0.5rem 0.5rem;
            }

            .feature-list {
                max-width: 90%;
                margin: 0 auto 1.5rem;
            }

            .feature-list li p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 22.5rem) {
            html {
                font-size: 12px;
            }

            nav a {
                font-size: 1.1rem;
            }

            nav li:not(:last-child)::after {
                right: -0.5rem;
            }
        }

        /* ====================================== 资讯动态页面专属样式（保留第二份功能，不改变风格） ====================================== */
        .news-container {
            max-width: 71.25rem;
            margin: 0 auto;
            padding: 0 1.25rem;
            flex: 1; /* 让资讯页内容区占满剩余高度 */
        }

        .news-container {
    max-width: 71.25rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    flex: 1; /* 让资讯页内容区占满剩余高度 */
}

/* 面包屑导航样式（文字统一优化） */
.news-breadcrumb {
    margin: 1.25rem 0;
    font-size: 1rem; /* 统一基础字体大小 */
    font-family: "微软雅黑", "Arial Narrow", HELVETICA; /* 统一字体，继承全局 */
    color: #666; /* 统一默认文字色 */
    background-color: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    border: 0.0625rem solid #eee;
    overflow: hidden; /* 防止文字溢出 */
}

.news-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* 自动换行，避免拥挤 */
    gap: 0.375rem; /* 统一项间距 */
    align-items: center;
}

/* 面包屑分隔符（统一颜色和大小） */
.news-breadcrumb__item + .news-breadcrumb__item::before {
    content: "/";
    margin-right: 0.375rem;
    color: #999; /* 分隔符统一浅灰色 */
    display: inline-block;
    font-size: inherit; /* 继承父级字体大小，保持统一 */
}

/* 面包屑链接（文字样式统一） */
.news-breadcrumb__link {
    color: #666; /* 与默认文字色统一 */
    text-decoration: none;
    transition: color 0.3s ease, outline 0.3s ease;
    padding: 0.25rem 0.375rem; /* 统一内边距 */
    font-size: inherit; /* 统一字体大小 */
    white-space: nowrap; /* 单个项不换行，保持完整性 */
}

.news-breadcrumb__link:hover {
    color: #1e755f; /* 统一hover主色，与导航栏保持一致 */
}

.news-breadcrumb__link:focus {
    outline: 0.125rem solid #1e755f; /* 统一焦点样式 */
    outline-offset: 0.125rem;
    border-radius: 0.125rem;
}

/* 当前位置文字（统一样式，突出但不突兀） */
.news-breadcrumb__current {
    color: #2c3e50; /* 统一主色，与页面标题色一致 */
    font-weight: 500; /* 适度加粗，区分链接 */
    padding: 0.25rem 0.375rem; /* 与链接内边距统一 */
    font-size: inherit; /* 统一字体大小 */
    white-space: nowrap; /* 不换行 */
}

        .news-article__header {
            text-align: center;
            margin: 1.875rem 0;
            padding-bottom: 1rem;
            border-bottom: 0.0625rem solid #eee;
        }

        .news-article__title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #2c3e50; /* 统一主色 */
            text-align: center;
            margin: 0 0 0.75rem;
            line-height: 1.4;
        }

        .news-article__desc {
            font-size: 0.9375rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
            padding: 0 1.25rem;
            max-width: 50rem;
            margin: 0 auto;
        }

        /* 内容列表样式 */
        .news-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 1.25rem;
        }

        .news-list__item {
            width: 100%;
        }

        .news-card {
            padding: 1.25rem;
            background-color: #fff;
            border-radius: 0.375rem;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .news-card:hover {
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
            transform: translateY(-0.125rem);
        }

        .news-card__title {
            margin: 0 0 0.75rem;
            font-size: 1.125rem;
            line-height: 1.5;
        }

        .news-card__title a {
            color: #2c3e50; /* 统一主色 */
            text-decoration: none;
            transition: color 0.3s ease, outline 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .news-card__title a:hover {
            color: #1e755f; /* 统一hover色 */
        }

        .news-card__title a:focus {
            outline: 0.125rem solid #1e755f; /* 统一焦点色 */
            outline-offset: 0.125rem;
            border-radius: 0.125rem;
        }

        .news-card__title a[style*="color"] {
            display: inline;
        }

        .news-card__meta {
            display: flex;
            align-items: center;
            color: #999;
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        .news-card__date {
            display: flex;
            align-items: center;
        }

        .news-card__date::before {
            content: "📅";
            margin-right: 0.375rem;
            font-size: 1rem;
        }

        /* 分页导航样式 - 统一优化版 */
.news-pagination {
    margin: 2.5rem 0;
    text-align: center;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.03);
}

/* 统一所有分页元素基础样式 */
.news-pagination a,
.news-pagination span {
    display: inline-block;
    padding: 0.625rem 1.125rem; /* 统一内边距，提升点击区域 */
    margin: 0 0.375rem; /* 统一间距，避免拥挤 */
    border: 0.0625rem solid #e5e7eb; /* 统一边框色，更精致 */
    border-radius: 0.375rem; /* 统一圆角，视觉更和谐 */
    color: #4b5563; /* 统一默认文字色，更清晰 */
    font-size: 0.9375rem; /* 统一字体大小，提升可读性 */
    text-decoration: none;
    transition: all 0.25s ease-in-out; /* 统一过渡动画，更流畅 */
    background-color: #ffffff;
    line-height: 1; /* 统一行高，避免对齐问题 */
}

/* 可点击链接 hover 状态 */
.news-pagination a:hover {
    background-color: #1e755f;
    color: #ffffff;
    border-color: #1e755f;
    transform: translateY(-1px); /* 轻微上浮，增强交互反馈 */
    box-shadow: 0 0.25rem 0.5rem rgba(30, 117, 95, 0.1); /* 轻微阴影，提升层次感 */
}

/* 链接焦点状态（无障碍优化） */
.news-pagination a:focus {
    outline: 0.125rem solid #1e755f;
    outline-offset: 0.125rem;
    box-shadow: 0 0 0 0.25rem rgba(30, 117, 95, 0.2); /* 焦点光晕，更醒目 */
}

/* 当前页样式 */
.news-pagination span.current {
    background-color: #1e755f;
    color: #ffffff;
    border-color: #1e755f;
    font-weight: 600; /* 加粗，突出当前页 */
    box-shadow: 0 0.125rem 0.375rem rgba(30, 117, 95, 0.15); /* 轻微阴影，强化视觉焦点 */
}

/* 禁用状态（上一页/下一页） */
.news-pagination span.disabled {
    color: #9ca3af; /* 更柔和的禁用色 */
    cursor: not-allowed;
    border-color: #f3f4f6; /* 更浅的边框色 */
    background-color: #f9fafb; /* 更淡的背景色 */
    opacity: 0.8; /* 降低透明度，明确禁用状态 */
}

/* 总数、分页信息文本样式（统一弱化，不抢焦点） */
.news-pagination span:not(.current):not(.disabled) {
    color: #6b7280;
    border-color: #f3f4f6;
    background-color: #f9fafb;
}

/* 省略号样式（特殊处理，更简洁） */
.news-pagination a[href*="1..."],
.news-pagination a[href*="..."] {
    border-color: transparent;
    background-color: transparent;
    padding: 0.625rem 0.75rem; /* 减小内边距，更紧凑 */
}

.news-pagination a[href*="1..."].hover,
.news-pagination a[href*="..."].hover {
    background-color: transparent;
    color: #1e755f;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}


        /* ====================================== 资讯页面响应式适配 ====================================== */
        @media (max-width: 48rem) {
            .news-container {
                padding: 1.25rem 0.9375rem;
                overflow: hidden;
            }

            .news-breadcrumb {
                display: none;
            }

            .news-article__header {
                margin: 2.5rem 0 1.25rem;
                padding-bottom: 0.75rem;
            }

            .news-article__title {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }

            .news-article__desc {
                font-size: 0.875rem;
                padding: 0 0.625rem;
            }

            .news-pagination {
        margin: 2rem 0;
        padding: 0.75rem 0;
    }

    .news-pagination a,
    .news-pagination span {
        padding: 0.5rem 0.875rem; /* 减小移动端内边距 */
        margin: 0 0.25rem; /* 减小移动端间距 */
        font-size: 0.875rem; /* 减小字体大小 */
    }

    /* 移动端省略号进一步紧凑 */
    .news-pagination a[href*="1..."],
    .news-pagination a[href*="..."] {
        padding: 0.5rem 0.5rem;
    }

            .news-card {
                padding: 1rem;
            }
        }

        /* ====================================== 文章页面专属样式（保留第二份功能，统一第一份风格） ====================================== */
        .article-container {
            max-width: 71.25rem;
            margin: 2rem auto;
            padding: 0 1.25rem;
            width: 100%;
            box-sizing: border-box;
            flex: 1; /* 让文章页内容区占满剩余高度 */
        }

        .article {
            background-color: #fff;
            border-radius: 0.5rem;
            box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            transition: box-shadow 0.3s ease;
            width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .article-header {
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 0.0625rem solid #eee;
        }

        .article-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50; /* 统一主色 */
            line-height: 1.4;
            margin: 0 0 1rem;
            text-align: center;
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: normal;
        }

        .article-meta {
            color: #999;
            font-size: 0.875rem;
            text-align: center;
        }

        .article-meta ol {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .article-meta li {
            display: flex;
            align-items: center;
            word-wrap: break-word;
        }

        .article-meta li::before {
            content: "📅";
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        /* 文章正文 */
        .article-content {
            font-size: 1.0625rem;
            color: #444;
            line-height: 1.8;
            width: 100%;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: normal;
        }

        .article-content * {
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: normal;
            white-space: normal;
            width: 100%;
            box-sizing: border-box;
        }

        .article-content p {
            margin: 0 0 1.5rem;
            text-indent: 2em;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1.5rem auto;
            border-radius: 0.375rem;
            box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
            object-fit: contain;
            width: auto;
        }

        .article-content a {
            color: #1e755f; /* 统一链接主色 */
            text-decoration: underline;
            transition: color 0.3s ease, outline 0.3s ease;
            padding: 0.125rem 0.25rem;
            word-break: break-all;
        }

        .article-content a:hover {
            color: #145f48; /* 加深hover色，保持风格 */
            text-decoration: none;
        }

        .article-content a:focus {
            outline: 0.125rem solid #1e755f; /* 统一焦点色 */
            outline-offset: 0.125rem;
            border-radius: 0.125rem;
        }

        .article-content ul,
        .article-content ol {
            margin: 0 0 1.5rem 2rem;
            padding: 0;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

        .article-content blockquote {
            margin: 0 0 1.5rem;
            padding: 1rem 1.5rem;
            background-color: #f8f9fa;
            border-left: 0.375rem solid #1e755f; /* 统一引用边框色 */
            color: #666;
            border-radius: 0 0.25rem 0.25rem 0;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9375rem;
            table-layout: fixed;
        }

        .article-content th,
        .article-content td {
            padding: 0.75rem 1rem;
            border: 0.0625rem solid #eee;
            text-align: left;
            word-break: break-all;
        }

        .article-content th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #2c3e50; /* 统一表头文字色 */
        }

        .article-content tr:nth-child(even) {
            background-color: #fafafa;
        }

        .article-content h2,
        .article-content h3,
        .article-content h4,
        .article-content h5,
        .article-content h6 {
            font-size: inherit;
            font-weight: 600;
            color: #2c3e50; /* 统一标题色 */
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 0.0625rem solid #eee;
        }

        .article-content h2 {
            font-size: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.25rem;
        }

        .article-content h4,
        .article-content h5,
        .article-content h6 {
            font-size: 1.125rem;
        }

        .article-content code,
        .article-content pre,
        .article-content span code,
        .article-content span,
        .article-content div:contains("http"),
        .article-content span:contains("123456") {
            word-break: break-all;
        }

        /* ====================================== 文章页面响应式适配 ====================================== */
        @media (max-width: 48rem) {
            html, body {
                width: 100%;
                overflow-x: hidden;
                -webkit-text-size-adjust: 100%;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .article-container {
                margin: 1.5rem auto; /* 调整间距，与首页响应式一致 */
                padding: 0 0.9375rem;
                width: 100%;
                box-sizing: border-box;
            }

            .article {
                padding: 1.5rem;
                overflow-x: hidden;
            }

            .article-header {
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
            }

            .article-title {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .article-meta {
                font-size: 0.8125rem;
            }

            .article-content {
                font-size: 1rem;
                line-height: 1.7;
            }

            .article-content p {
                margin-bottom: 1.25rem;
                text-indent: 1.5em;
            }

            .article-content img {
                margin: 1.25rem auto;
                border-radius: 0.25rem;
            }

            .article-content ul,
            .article-content ol {
                margin-left: 1.5rem;
                margin-bottom: 1.25rem;
            }

            .article-content blockquote {
                padding: 0.75rem 1rem;
                margin-bottom: 1.25rem;
            }

            .article-content h2 {
                font-size: 1.375rem;
                margin: 1.75rem 0 0.875rem;
            }

            .article-content h3 {
                font-size: 1.125rem;
                margin: 1.5rem 0 0.75rem;
            }

            .article-content th,
            .article-content td {
                padding: 0.5rem 0.75rem;
                font-size: 0.875rem;
            }
        }