﻿/*///////////////////Single Blog Post Page Specific Styles/////////////////////*/
/*body {
    background-color: #f8f9fa;*/ /* پس‌زمینه کلی سایت */
/*color: #333;
}*/

.share-buttons {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #e3f2fd; /* آبی روشن‌تر */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .share-buttons .share-text {
        font-weight: 600;
        color: #0A66C2;
        font-size: 1.1em;
        margin-left: 15px;
    }

    .share-buttons .btn-social {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2em;
        color: #fff;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

        .share-buttons .btn-social:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

    .share-buttons .btn-telegram {
        background-color: #0088cc;
    }

    .share-buttons .btn-whatsapp {
        background-color: #25D366;
    }

    .share-buttons .btn-instagram {
        background-color: #E4405F;
    }

    .share-buttons .btn-linkedin {
        background-color: #0077B5;
    }

    .share-buttons .btn-twitter {
        background-color: #1DA1F2;
    }

/* Article Content Styles */
.article-content {
    font-size: 1.1em;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

    .article-content h2,
    .article-content h3,
    .article-content h4 {
        color: #0A66C2;
        font-weight: 700;
        margin-top: 35px;
        margin-bottom: 20px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #eee;
    }

    .article-content h2 {
        font-size: 2em;
    }

    .article-content h3 {
        font-size: 1.6em;
    }

    .article-content h4 {
        font-size: 1.3em;
    }

    .article-content p {
        margin-bottom: 1.5em;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 25px 0;
        display: block;
        margin-right: auto;
        margin-left: auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .article-content figure {
        margin: 25px 0;
        text-align: center;
    }

    .article-content figcaption {
        font-size: 0.9em;
        color: #777;
        margin-top: 10px;
    }

    .article-content ul,
    .article-content ol {
        margin-bottom: 1.5em;
        padding-right: 25px;
    }

        .article-content ul li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .article-content ol li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

    .article-content blockquote {
        background-color: #f0f8ff;
        border-right: 5px solid #0A66C2;
        padding: 20px 25px;
        margin: 30px 0;
        font-style: italic;
        color: #444;
        border-radius: 8px;
    }

    /*.article-content table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}*/
    /*/////////////////*/


    /* در فایل CSS خود اضافه کنید - مطمئن شوید این کد بعد از Bootstrap یا CSS های اصلی سایت لود می‌شود */

    /* تنظیمات پایه برای جداول داخل محفظه article-content */
    .article-content table {
        width: 100%;
        border-collapse: collapse;
        /* این خاصیت مهم است: مطمئن شوید پهنای ثابت یا table-layout: fixed وجود ندارد */
        table-layout: auto;
    }

        .article-content table th,
        .article-content table td {
            padding: 10px; /* افزایش padding برای وضوح بیشتر */
            border: 1px solid #ddd;
            text-align: right;
            vertical-align: top; /* محتوا از بالا شروع شود */
        }

/* --- Media Query: استایل‌های موبایل --- */
@media only screen and (max-width: 576px) { /* از breakpoint استاندارد 576px استفاده کنید */


    /* 1. تنظیم کل جدول برای تبدیل شدن به بلاک و کنترل عرض */
    .article-content table {
        display: block;
        width: 100%;
        border: none; /* حذف مرز کل جدول */
    }

        /* 2. تبدیل thead, tbody و tr به بلاک‌ها با عرض کامل */
        .article-content table thead,
        .article-content table tbody,
        .article-content table tr {
            display: block;
            width: 100%;
            direction: rtl; /* جهت کلی متن را راست به چپ می‌کند */
        }

        /* 3. حذف نمایش سربرگ (Head) به صورت بصری */
        /*.article-content table thead {*/
        /* thead را کاملاً از جریان صفحه خارج و پنهان می‌کند */
        /*position: absolute;
            top: -9999px;
            left: -9999px;
        }*/
        .article-content table thead {
            display: none !important; /* به دلیل احتمال تداخل با فریم‌ورک‌ها از !important استفاده کنید */
        }

        /* 4. استایل‌های کارت (هر سطر یک کارت می‌شود) */
        .article-content table tr {
            border: 1px solid #ccc;
            margin-bottom: 15px;
            padding: 10px; /* فضای داخلی برای کارت */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* اضافه کردن سایه برای جلوه کارت */
            background-color: #fff;
        }

        /* 5. استایل‌های سلول (td) - مهم‌ترین بخش */
        .article-content table td {
            display: block;
            border: none; /* حذف مرزهای داخلی سلول‌ها */
            border-bottom: 1px solid #eee; /* یک خط جداکننده برای هر فیلد */
            position: relative;
            padding-right: 55%; /* فضای لازم برای data-label در سمت راست */
            padding-left: 10px; /* یک پدینگ کوچک در سمت چپ */
            /* جهت‌دهی محتوای داده */
            text-align: left; /* محتوای اصلی (داده) در سمت چپ (بعد از لیبل) قرار می‌گیرد */
        }

        /* حذف مرز برای آخرین سلول هر سطر */
        .article-content table tr td:last-child {
            border-bottom: none;
        }

        /* 6. استایل‌های عنوان ستون (data-label) */
        .article-content table td::before {
            content: attr(data-label) ": ";
            position: absolute;
            right: 10px; /* لیبل در سمت راست (در جهت RTL) */
            left: auto; /* اطمینان از حذف left قبلی */

            width: 45%;
            font-weight: bold;
            /* جهت‌دهی متن لیبل */
            text-align: right; /* متن لیبل در سمت راست (نزدیک مرز) */

            color: #007bff;
        }
}
/*/////////////////*/


/* Related Articles Section */
.related-articles-section {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

    .related-articles-section h2 {
        font-size: 2em;
        color: #0A66C2;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Reusing .blog-item-card styles (adjust for smaller size if needed) */
    .related-articles-section .blog-item-card {
        box-shadow: none; /* در اینجا سایه کمتری داشته باشد */
        border: 1px solid #eee;
        transition: all 0.3s ease;
        height: auto; /* برای مرتبط ها ارتفاع ثابت نمیخواهیم */
    }

        .related-articles-section .blog-item-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: none; /* عدم تغییر موقعیت هنگام هاور */
        }

    .related-articles-section .blog-item-thumbnail {
        height: 150px; /* ارتفاع کمتر برای تصاویر مقالات مرتبط */
        border-radius: 8px;
    }

    .related-articles-section .blog-item-content {
        padding: 15px;
    }

        .related-articles-section .blog-item-content h5 {
            font-size: 1.1em;
            min-height: auto;
            margin-bottom: 10px;
        }

        .related-articles-section .blog-item-content p {
            font-size: 0.85em;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* محدود کردن به 3 خط */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .related-articles-section .blog-meta-list {
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .related-articles-section .btn-blog-readmore {
        padding: 8px 15px;
        font-size: 0.85em;
    }

/* Comments Section */
.comments-section {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 40px;
    margin-top: 40px;
}

    .comments-section h2 {
        font-size: 2em;
        color: #0A66C2;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }

.comment-form .form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.comment-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 1em;
}

    .comment-form .form-control:focus {
        border-color: #0A66C2;
        box-shadow: 0 0 0 0.25rem rgba(10, 102, 194, 0.25);
    }

.comment-form .btn-submit-comment {
    background-color: #32CD32;
    color: #fff;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

    .comment-form .btn-submit-comment:hover {
        background-color: #28a745;
    }

.comment-list {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comment-item {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

    .comment-item .comment-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .comment-item .comment-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #0A66C2; /* رنگ پیش‌فرض برای آواتار */
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2em;
        font-weight: bold;
        margin-left: 15px;
    }

    .comment-item .comment-author {
        font-weight: 700;
        color: #0A66C2;
        font-size: 1.1em;
    }

    .comment-item .comment-date {
        font-size: 0.85em;
        color: #888;
        margin-right: 10px;
    }

    .comment-item .comment-body {
        font-size: 1em;
        line-height: 1.7;
        color: #444;
    }

    .comment-item .comment-reply-link {
        font-size: 0.9em;
        color: #32CD32;
        text-decoration: none;
        margin-top: 10px;
        display: inline-block;
        transition: color 0.3s ease;
    }

        .comment-item .comment-reply-link:hover {
            color: #28a745;
        }

    /* Nested Comments (Replies) */
    .comment-item.reply {
        margin-right: 50px; /* برای فرو رفتن پاسخ‌ها */
        margin-top: 15px;
        border-right: 3px solid #32CD32;
        background-color: #fdfdfd;
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .article-container {
        padding: 30px 35px;
    }

    .article-header h1 {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .article-meta-info {
        font-size: 0.9em;
        gap: 15px;
        flex-direction: column; /* در موبایل به صورت ستونی */
        align-items: flex-start;
    }

    .article-cover-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .share-buttons {
        padding: 15px;
        gap: 10px;
    }

        .share-buttons .share-text {
            font-size: 1em;
            margin-left: 10px;
        }

        .share-buttons .btn-social {
            width: 40px;
            height: 40px;
            font-size: 1.1em;
        }

    .table-of-contents {
        padding: 20px;
        margin-bottom: 30px;
    }

        .table-of-contents h4 {
            font-size: 1.2em;
        }

        .table-of-contents ul li a {
            font-size: 0.95em;
        }

    .article-content {
        font-size: 1em;
        line-height: 1.8;
    }

        .article-content h2 {
            font-size: 1.8em;
        }

        .article-content h3 {
            font-size: 1.4em;
        }

        .article-content h4 {
            font-size: 1.2em;
        }

        .article-content img {
            margin: 20px 0;
        }

    .related-articles-section {
        padding: 30px;
        margin-top: 30px;
    }

        .related-articles-section h2 {
            font-size: 1.8em;
            margin-bottom: 25px;
        }

        .related-articles-section .blog-item-thumbnail {
            height: 120px;
        }

    .comments-section {
        padding: 30px;
        margin-top: 30px;
    }

        .comments-section h2 {
            font-size: 1.8em;
            margin-bottom: 25px;
        }

    .comment-item {
        padding: 15px;
        margin-bottom: 20px;
    }

        .comment-item .comment-avatar {
            width: 40px;
            height: 40px;
            font-size: 1em;
            margin-left: 10px;
        }

        .comment-item .comment-author {
            font-size: 1em;
        }

        .comment-item .comment-date {
            font-size: 0.8em;
        }

        .comment-item .comment-body {
            font-size: 0.95em;
        }

        .comment-item.reply {
            margin-right: 30px;
        }
}

@media (max-width: 767px) {
    .article-container {
        padding: 25px;
    }

    .article-header h1 {
        font-size: 1.8em;
    }

    .article-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-cover-image {
        height: 250px;
        margin-bottom: 25px;
    }

    .share-buttons {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }

        .share-buttons .share-text {
            font-size: 0.9em;
            margin-left: 0;
            margin-bottom: 10px;
        }

    .table-of-contents {
        padding: 15px;
    }

        .table-of-contents h4 {
            font-size: 1.1em;
        }

        .table-of-contents ul li a {
            font-size: 0.9em;
        }

    .article-content {
        font-size: 0.95em;
    }

        .article-content h2 {
            font-size: 1.5em;
        }

        .article-content h3 {
            font-size: 1.2em;
        }

        .article-content h4 {
            font-size: 1.1em;
        }

    .related-articles-section {
        padding: 25px;
    }

        .related-articles-section h2 {
            font-size: 1.6em;
        }

        .related-articles-section .blog-item-thumbnail {
            height: 100px;
        }

    .comments-section {
        padding: 25px;
    }

        .comments-section h2 {
            font-size: 1.6em;
        }

    .comment-item {
        padding: 12px;
    }

        .comment-item.reply {
            margin-right: 20px;
        }
}
/*****************مقالات*****************/
