/* Start custom CSS for text-editor, class: .elementor-element-c17a717 */```css
/* =========================================
   استایل حرفه‌ای نوشته‌ها و مقالات وردپرس
   ========================================= */


/* ===== عنوان اصلی نوشته ===== */

.entry-title,
.post-title,
.blog-title,
.elementor-post__title {
    position: relative;
    display: inline-block;

    margin-bottom: 25px;
    padding-right: 18px;

    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: -0.5px;

    color: #172033;

    transition: all 0.3s ease;
}


/* خط تزئینی کنار عنوان */

.entry-title::before,
.post-title::before,
.blog-title::before,
.elementor-post__title::before {
    content: "";

    position: absolute;
    right: 0;
    top: 12%;

    width: 5px;
    height: 76%;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        #2563eb,
        #06b6d4
    );

    transition: height 0.3s ease;
}


/* Hover عنوان */

.entry-title:hover,
.post-title:hover,
.blog-title:hover,
.elementor-post__title:hover {
    color: #2563eb;
    transform: translateX(-3px);
}

.entry-title:hover::before,
.post-title:hover::before,
.blog-title:hover::before,
.elementor-post__title:hover::before {
    height: 100%;
}


/* =========================================
   متن مقاله
   ========================================= */

.entry-content,
.post-content,
.elementor-widget-theme-post-content {
    font-size: 17px;
    line-height: 2.05;
    color: #4b5563;
    text-align: justify;
}


/* =========================================
   تیتر H2
   ========================================= */

.entry-content h2,
.post-content h2 {
    position: relative;

    margin-top: 45px;
    margin-bottom: 20px;

    padding: 12px 18px;

    font-size: 26px;
    font-weight: 800;

    color: #172033;

    background: linear-gradient(
        90deg,
        rgba(37, 99, 235, 0.08),
        transparent
    );

    border-right: 4px solid #2563eb;
    border-radius: 8px;
}


/* =========================================
   تیتر H3
   ========================================= */

.entry-content h3,
.post-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;

    font-size: 21px;
    font-weight: 750;

    color: #1e3a8a;
}


/* =========================================
   لینک‌ها
   ========================================= */

.entry-content a,
.post-content a {
    color: #2563eb;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px dashed rgba(37, 99, 235, 0.5);

    transition: all 0.25s ease;
}

.entry-content a:hover,
.post-content a:hover {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}


/* =========================================
   پاراگراف‌ها
   ========================================= */

.entry-content p,
.post-content p {
    margin-bottom: 22px;
}


/* =========================================
   لیست‌ها
   ========================================= */

.entry-content ul,
.entry-content ol,
.post-content ul,
.post-content ol {
    margin: 25px 0;
    padding-right: 25px;
}

.entry-content li,
.post-content li {
    margin-bottom: 10px;
}


/* =========================================
   جدول‌های داخل متن
   ========================================= */

.entry-content table,
.post-content table,
.elementor-widget-theme-post-content table {

    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;
    border-spacing: 0;

    border: 1px solid #d9dee8;

    font-size: 16px;

    background: #ffffff;

    overflow: hidden;
}


/* خطوط تمام سلول‌ها - دقیقاً 1 پیکسل */

.entry-content table th,
.entry-content table td,
.post-content table th,
.post-content table td,
.elementor-widget-theme-post-content table th,
.elementor-widget-theme-post-content table td {

    border: 1px solid #d9dee8;

    padding: 14px 16px;

    text-align: right;

    vertical-align: middle;

    line-height: 1.8;
}


/* هدر جدول */

.entry-content table th,
.post-content table th,
.elementor-widget-theme-post-content table th {

    background: #f1f5f9;

    color: #172033;

    font-weight: 800;

    text-align: center;
}


/* ردیف‌های جدول */

.entry-content table tbody tr,
.post-content table tbody tr {
    transition: background 0.2s ease;
}


/* Hover ردیف */

.entry-content table tbody tr:hover,
.post-content table tbody tr:hover {
    background: #f8fafc;
}


/* سلول‌های جدول */

.entry-content table td,
.post-content table td {
    color: #475569;
}


/* =========================================
   جدول در موبایل
   ========================================= */

@media (max-width: 767px) {

    .entry-content table,
    .post-content table,
    .elementor-widget-theme-post-content table {

        display: block;

        width: 100%;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        font-size: 14px;
    }

    .entry-content table th,
    .entry-content table td,
    .post-content table th,
    .post-content table td {

        min-width: 130px;

        padding: 11px 12px;

        white-space: nowrap;
    }


    /* عنوان */

    .entry-title,
    .post-title,
    .blog-title,
    .elementor-post__title {

        font-size: 25px;

        line-height: 1.6;

        padding-right: 14px;
    }


    /* متن */

    .entry-content,
    .post-content,
    .elementor-widget-theme-post-content {

        font-size: 16px;

        line-height: 2;

        text-align: right;
    }


    /* H2 */

    .entry-content h2,
    .post-content h2 {

        font-size: 21px;

        margin-top: 35px;
    }


    /* H3 */

    .entry-content h3,
    .post-content h3 {

        font-size: 18px;
    }
}
```/* End custom CSS */