   /* استایل مقاله */
        article {
            margin: auto;
            line-height: 2;
        }

        /* پاراگراف‌ها */
        article p {
            text-align: justify;
            margin-bottom: 1rem;
            font-size: 13px;
        }

        /* هدرها */
        article h1,
        article h2 {
            color: #222;
            /* مشکی نرم */
            font-weight: 600;
            margin: 1.5rem 0 1rem;
            position: relative;
            padding-left: 25px;
            /* فاصله برای blob */
            font-size: 14px;
        }

        /* لیست‌ها */
        article ul {
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }

        article li {
            margin-bottom: 0.5rem;
        }

        /* رسپانسیو */
        @media (max-width: 768px) {}

        @media (max-width: 480px) {

            article h1,
            article h2 {
                font-size: 1.1rem;
            }
        }

        .responsive-table {
            width: 100%;
            overflow-x: auto;
            margin: 15px 0;
        }

        .responsive-table table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }

        .responsive-table th,
        .responsive-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: right;
            line-height: 1.6;
        }

        .responsive-table th {
            background-color: #f8f8f8;
            color: #333;
            font-weight: bold;
        }

        @media (max-width: 768px) {

            .responsive-table table,
            .responsive-table thead,
            .responsive-table tbody,
            .responsive-table th,
            .responsive-table td,
            .responsive-table tr {
                display: block;
                width: 100%;
            }

            .responsive-table thead {
                display: none;
            }

            .responsive-table tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 8px;
                padding: 10px;
                background: #fff;
            }

            .responsive-table td {
                border: none;
                padding: 8px 10px;
                position: relative;
            }

            .responsive-table td::before {
                content: attr(data-label);
                font-weight: bold;
                display: block;
                color: #555;
                margin-bottom: 5px;
            }
        }