/**
 * تایپوگرافی محتوای مقاله - Mahartist
 * فقط برای محتوای داخل .post-single .article-content
 * رنگ لینک‌ها: brown (رنگ اصلی سایت)
 */

.post-single .article-content {
    font-family: Webparseh-Regular, inherit;
    font-size: 2rem;
    line-height: 1.85;
    color: #444;
}

/* سرتیترها */
.post-single .article-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: #222;
    margin: 2.4rem 0 1.2rem;
    font-family: Webparseh-Regular, inherit;
}
.post-single .article-content h1:first-child {
    margin-top: 0;
}

.post-single .article-content h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 2.2rem 0 1rem;
    font-family: Webparseh-Regular, inherit;
}

.post-single .article-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.45;
    color: #333;
    margin: 1.8rem 0 0.8rem;
    font-family: Webparseh-Regular, inherit;
}

.post-single .article-content h4 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin: 1.6rem 0 0.6rem;
    font-family: Webparseh-Regular, inherit;
}

.post-single .article-content h5 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    color: #444;
    margin: 1.4rem 0 0.5rem;
    font-family: Webparseh-Regular, inherit;
}

.post-single .article-content h6 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.55;
    color: #555;
    margin: 1.2rem 0 0.4rem;
    font-family: Webparseh-Regular, inherit;
}

/* پاراگراف */
.post-single .article-content p {
    margin: 0 0 1.4rem;
    font-size: 2rem;
    line-height: 1.85;
    color: #444;
}

/* لینک‌های داخل مقاله - رنگ اصلی سایت (brown)، بولد */
.post-single .article-content a {
    color: brown;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}
.post-single .article-content a:hover {
    color: #8B4513;
    text-decoration: underline;
}
.post-single .article-content a:focus {
    outline: 1px dotted brown;
}

/* لیست‌ها */
.post-single .article-content ul,
.post-single .article-content ol {
    margin: 0 0 1.4rem;
    padding-right: 2rem;
    padding-left: 0;
}
.post-single .article-content ul {
    list-style-type: disc;
}
.post-single .article-content ol {
    list-style-type: decimal;
}
.post-single .article-content li {
    margin-bottom: 0.5rem;
    padding-right: 0.3rem;
}
.post-single .article-content li > ul,
.post-single .article-content li > ol {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

/* نقل‌قول */
.post-single .article-content blockquote {
    margin: 1.6rem 0;
    padding: 1rem 1.5rem;
    border-right: 4px solid brown;
    border-left: none;
    background: #f8f6f3;
    color: #555;
    font-size: 1.9rem;
    font-style: italic;
}

/* متن پررنگ و مایل */
.post-single .article-content strong,
.post-single .article-content b {
    font-weight: 600;
    color: #333;
}
.post-single .article-content em,
.post-single .article-content i {
    font-style: italic;
}

/* تصاویر داخل مقاله */
.post-single .article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

/* جداول */
.post-single .article-content table {
    width: 100%;
    max-width: 100%;
    margin: 1.4rem 0;
    border-collapse: collapse;
    font-size: 1.9rem;
}
.post-single .article-content th,
.post-single .article-content td {
    padding: 0.6rem 0.8rem;
    border: 1px solid #e1e1e1;
    text-align: right;
}
.post-single .article-content th {
    background: #f5f5f5;
    font-weight: 600;
    color: #222;
}

/* خط افقی */
.post-single .article-content hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #e1e1e1;
}

/* کد (در صورت استفاده در مقاله) */
.post-single .article-content code {
    padding: 0.2rem 0.4rem;
    font-size: 1.1rem;
    background: #f0f0f0;
    border-radius: 2px;
    color: #333;
}
.post-single .article-content pre {
    margin: 1.2rem 0;
    padding: 1rem;
    overflow-x: auto;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 1.75rem;
    line-height: 1.6;
}
.post-single .article-content pre code {
    padding: 0;
    background: none;
}

/* لید مقاله (بعد از h1) - جاستیفای */
.post-single .article-lead {
    font-size: 2rem;
    line-height: 1.85;
    text-align: justify;
}
