﻿/* Container اصلی صفحه */
.article-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 0;
}

/* عنوان مقاله */
.article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* تاریخ */
.article-date {
    display: block;
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* تصویر هدر */
.article-header-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    object-fit: cover;
}

/* محتوا */
.article-content {
    font-size: 1.05rem;
    line-height: 2;
    color: #333;
}

    /* محتوا – استایل‌بندی تگ‌ها */
    .article-content h2,
    .article-content h3,
    .article-content h4 {
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .article-content p {
        margin-bottom: 20px;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 25px 0;
    }

    .article-content ul,
    .article-content ol {
        margin: 20px 0;
        padding-right: 25px;
    }

    .article-content blockquote {
        border-right: 4px solid #0d6efd;
        padding: 10px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        margin: 25px 0;
        font-style: italic;
    }

/* ریسپانسیو */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.6rem;
    }

    .article-container {
        padding: 10px;
    }
}
