.article-page {
            min-height: 100vh;
            background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-deep) 50%, var(--color-navy) 100%);
            padding: 40px 0 80px;
        }

        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Back Button */
        .article-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-gold);
            text-decoration: none;
            font-family: var(--font-ar);
            font-size: 0.95rem;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .article-back:hover {
            color: var(--color-cream);
            transform: translateX(5px);
        }

        .article-back svg {
            width: 20px;
            height: 20px;
        }

        /* Image */
        .article-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px var(--overlay-black-30);
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Title Row */
        .article-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .article-title {
            flex: 1;
            font-family: 'Noto Kufi Arabic', var(--font-ar);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-white);
            line-height: 1.4;
            margin: 0;
        }

        .article-info {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .article-date {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--color-text-gray-400);
            font-family: var(--font-ar);
            font-size: 0.9rem;
        }

        .article-date svg {
            width: 18px;
            height: 18px;
            color: var(--color-gold);
        }

        .article-lang {
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-cream) 100%);
            color: var(--color-navy);
            padding: 6px 14px;
            border-radius: 20px;
            font-family: var(--font-ar);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .article-lang svg {
            width: 16px;
            height: 16px;
        }

        /* Description */
        .article-description {
            background: var(--overlay-gold-10);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .article-description p {
            color: var(--color-cream);
            font-family: var(--font-ar);
            font-size: 19px;
            line-height: 1.9;
            margin: 0;
            text-align: justify;
        }

        /* Content */
        .article-content {
            background: var(--color-white);
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 10px 40px var(--overlay-black-20);
        }

        .article-content__body {
            font-family: var(--font-ar);
            font-size: 19px;
            line-height: 1.9;
            color: var(--color-text-gray-700);
            overflow: auto;
        }

        .article-content__body p {
            font-size: 19px;
            margin-bottom: 1.5em;
            text-align: justify;
        }

        .article-content__body h2 {
            font-family: 'Noto Kufi Arabic', var(--font-ar);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-green-dark);
            margin: 2em 0 1em;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--color-gold);
        }

        .article-content__body h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-green-dark);
            margin: 1.5em 0 0.8em;
        }

        .article-content__body ul,
        .article-content__body ol {
            margin: 1.5em 0;
            padding-right: 25px;
        }

        .article-content__body li {
            margin-bottom: 0.8em;
        }

        .article-content__body blockquote {
            background: #f9fafb;
            border-right: 4px solid var(--color-gold);
            padding: 20px 25px;
            margin: 2em 0;
            border-radius: 0 12px 12px 0;
            color: var(--color-text-gray-600);
        }

        .article-content__body img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2em auto;
            display: block;
        }

        .article-content__body a {
            color: var(--color-green-dark);
            text-decoration: underline;
            text-decoration-color: var(--color-gold);
        }

        .article-content__body pre {
            background: var(--color-surface-darker);
            color: var(--color-light-content);
            padding: 20px;
            border-radius: 12px;
            overflow-x: auto;
            margin: 2em 0;
        }

        .article-content__body code {
            background: var(--color-border-soft);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.9em;
        }

        .article-content__body pre code {
            background: transparent;
            padding: 0;
        }

        /* VueQuill styles moved to public/style/quill-content.css (global) */

        /* Share */
        .article-share {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--color-text-gray-200);
        }

        .article-share__label {
            color: var(--color-text-gray-500);
            font-family: var(--font-ar);
            font-size: 0.9rem;
        }

        .article-share__btn {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-text-gray-100);
            border: none;
            border-radius: 50%;
            color: var(--color-text-gray-600);
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .article-share__btn:hover {
            transform: translateY(-3px);
        }

        .article-share__btn--x:hover {
            background: var(--color-black-short);
            color: var(--color-white-short);
        }

        .article-share__btn--facebook:hover {
            background: #1877f2;
            color: var(--color-white-short);
        }

        .article-share__btn--whatsapp:hover {
            background: #25d366;
            color: var(--color-white-short);
        }

        .article-share__btn--telegram:hover {
            background: #0088cc;
            color: var(--color-white-short);
        }

        .article-share__btn--copy:hover {
            background: var(--color-gold);
            color: var(--color-white-short);
        }

        .article-share__btn svg {
            width: 20px;
            height: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .article-image {
                height: 250px;
            }

            .article-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .article-title {
                font-size: 1.5rem;
                order: 1;
            }

            .article-info {
                order: 2;
            }

            .article-content {
                padding: 25px 20px;
            }

            .article-content__body {
                font-size: 1rem;
            }
        }
