/* Article content styling */
        .article-content {
            font-size: 1.0625rem;
            line-height: 1.875rem;
            color: #374151;
        }

        .article-content h1 {
            font-size: 1.875rem;
            line-height: 2.25rem;
            font-weight: 700;
            color: var(--color-brand-blue, #1e3a8a);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .article-content h2 {
            font-size: 1.5rem;
            line-height: 2rem;
            font-weight: 700;
            color: var(--color-brand-blue, #1e3a8a);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .article-content h3 {
            font-size: 1.25rem;
            line-height: 1.75rem;
            font-weight: 600;
            color: #1f2937;
            margin-top: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .article-content h4 {
            font-size: 1.125rem;
            line-height: 1.75rem;
            font-weight: 600;
            color: #374151;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        .article-content p {
            color: #374151;
            line-height: 1.75rem;
            margin-bottom: 1rem;
            text-align: left;
        }

        .article-content ul {
            list-style: disc inside;
            color: #374151;
            margin-bottom: 1rem;
        }

        .article-content ol {
            list-style: decimal inside;
            color: #374151;
            margin-bottom: 1rem;
        }

        .article-content ul li+li,
        .article-content ol li+li {
            margin-top: 0.5rem;
        }

        .article-content img {
            display: block;
            border-radius: 0.75rem;
            box-shadow: none;
            border: none;
            margin: 1.5rem 0;
            max-width: 100%;
            height: auto;
        }

        .article-content .docx-content {
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .article-content [class*="bg-"] {
            background-color: transparent !important;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }

        .article-content th,
        .article-content td {
            border: 1px solid #d1d5db;
            padding: 0.75rem 1rem;
        }

        .article-content th {
            background: #f9fafb;
            font-weight: 600;
            text-align: left;
        }

        .article-content blockquote {
            border-left: 4px solid var(--color-brand-gold, #f59e0b);
            padding-left: 1rem;
            margin: 1.5rem 0;

            color: #4b5563;
        }

        .article-content a {
            color: var(--color-brand-blue, #1e3a8a);
            text-decoration: none;
        }

        .article-content a:hover {
            text-decoration: underline;
        }
