/* ============================================================
   ARTICLE.CSS – طراحی مجله‌ای مطابق سایت مرجع
   ساختار سه‌ستونه با فونت فارسی
   ============================================================ */

/* ============================================================
   فونت وزیرمتن
   ============================================================ */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

/* ============================================================
   متغیرهای تم
   ============================================================ */
:root,
html[data-theme="light"] {
    --bg: #f7f7f5;
    --bg-card: #ffffff;
    --bg-soft: #fafaf8;
    --bg-alt: #f0f0ee;
    --bg-tint: #f5f5f3;

    --navy: #1a1a2e;
    --navy-2: #2a2a3e;
    --navy-3: #35354a;

    --gold: #e8b93e;
    --gold-2: #f0c950;
    --gold-3: #f7d76c;
    --gold-soft: #fef9e8;
    --gold-deep: #b88f1c;

    --text: #1a1a2e;
    --text-soft: #4a4a5e;
    --text-mute: #8888a0;
    --text-light: #b0b0c0;
    --text-inv: #ffffff;

    --border: #e8e8e5;
    --border-soft: #f0f0ee;
    --border-strong: #d8d8d5;

    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    --shadow-xs: 0 1px 2px rgba(26,26,46,.04);
    --shadow-sm: 0 2px 8px rgba(26,26,46,.06);
    --shadow-md: 0 4px 16px rgba(26,26,46,.08);
    --shadow-lg: 0 12px 32px rgba(26,26,46,.1);
    --shadow-xl: 0 20px 48px rgba(26,26,46,.12);

    --r-xs: 6px;
    --r-sm: 10px;
    --r: 14px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 999px;

    color-scheme: light;
}

html[data-theme="dark"] {
    --bg: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-soft: #16162a;
    --bg-alt: #20203a;
    --bg-tint: #1c1c32;

    --navy: #f0f0f5;
    --navy-2: #d8d8e5;
    --navy-3: #b8b8d0;

    --gold: #f0c950;
    --gold-2: #f7d76c;
    --gold-3: #ffe38c;
    --gold-soft: rgba(240,201,80,.1);
    --gold-deep: #d4a830;

    --text: #e8e8f0;
    --text-soft: #b0b0c8;
    --text-mute: #8080a0;
    --text-light: #606080;
    --text-inv: #1a1a2e;

    --border: #2a2a45;
    --border-soft: #20203a;
    --border-strong: #3a3a5a;

    --shadow-xs: 0 1px 2px rgba(0,0,0,.4);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
    --shadow-md: 0 4px 16px rgba(0,0,0,.5);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.6);
    --shadow-xl: 0 20px 48px rgba(0,0,0,.7);

    color-scheme: dark;
}

/* ============================================================
   پایه
   ============================================================ */
* { box-sizing: border-box; }

html {
    background: var(--bg);
    transition: background-color .3s;
}

body {
    font-family: 'Vazirmatn', 'IRANSans', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.75;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--gold-deep);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--gold);
}

img { max-width: 100%; display: block; }

/* ============================================================
   هدر بالایی (شبیه تصویر)
   ============================================================ */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-xs);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* لوگو سمت راست */
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
}

.site-brand-logo {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(232,185,62,.35);
}

/* منوی افقی وسط */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.site-nav a {
    padding: 8px 16px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    transition: all .2s;
    white-space: nowrap;
}

.site-nav a:hover {
    background: var(--gold-soft);
    color: var(--gold-deep);
}

/* آیکون‌های سمت چپ */
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 1rem;
}

.header-icon-btn:hover {
    background: var(--gold-soft);
    color: var(--gold-deep);
    border-color: var(--gold);
}

/* ============================================================
   بردکرامب
   ============================================================ */
.breadcrumb-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-mute);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-soft);
    padding: 3px 8px;
    border-radius: var(--r-xs);
    transition: all .2s;
}

.breadcrumb a:hover {
    background: var(--gold-soft);
    color: var(--gold-deep);
}

.breadcrumb-sep {
    color: var(--text-light);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--gold-deep);
    font-weight: 700;
}

/* ============================================================
   چیدمان سه‌ستونه
   ============================================================ */
.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr 80px;
    gap: 24px;
    padding: 24px 0;
    align-items: start;
}

/* ---- ستون راست: اطلاعات مقاله و فهرست ---- */
.article-sidebar-right {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 4px;
}

.article-sidebar-right::-webkit-scrollbar { width: 4px; }
.article-sidebar-right::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 2px;
}

/* کارت اطلاعات مقاله */
.article-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    margin-bottom: 16px;
}

.article-info-title {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 800;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-info-title::before {
    content: '📋';
    font-size: 1rem;
}

.article-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.article-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 6px 0;
}

.article-info-list li span:first-child {
    color: var(--text-mute);
}

.article-info-list li span:last-child {
    color: var(--text);
    font-weight: 600;
}

/* فهرست مطالب (TOC) */
.toc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
}

.toc-title {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 800;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-title::before {
    content: '📑';
    font-size: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    color: var(--text-soft);
    font-size: 0.82rem;
    border-radius: var(--r-xs);
    border-right: 3px solid transparent;
    transition: all .2s;
    position: relative;
}

.toc-list a:hover,
.toc-list a.active {
    background: var(--gold-soft);
    color: var(--gold-deep);
    border-right-color: var(--gold);
    font-weight: 700;
}

.toc-list a::before {
    content: '•';
    color: var(--gold);
    margin-left: 8px;
    font-weight: 900;
}

/* ---- ستون وسط: محتوای اصلی ---- */
.article-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.article-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.article-subtitle {
    font-size: 1rem;
    color: var(--text-mute);
    margin: 0 0 20px;
    line-height: 1.7;
}

/* هیرو تصویر با ویدیو */
.article-hero {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 16px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.article-hero img,
.article-hero iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-hero-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
    cursor: pointer;
    transition: background .3s;
}

.article-hero-play::before {
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    animation: playPulse 2s ease-in-out infinite;
}

.article-hero-play::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--navy);
    margin-right: -6px;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

/* نوار آمار (بازدید، لایک، نظر، اشتراک) */
.article-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.article-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.article-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 600;
}

.article-stat-icon {
    color: var(--gold);
    font-size: 1rem;
}

.article-share {
    display: flex;
    gap: 8px;
    align-items: center;
}

.article-share-label {
    font-size: 0.82rem;
    color: var(--text-mute);
    margin-left: 4px;
}

.article-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 0.9rem;
}

.article-share-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   بخش‌های محتوای مقاله
   ============================================================ */
.article-section {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 22px;
    margin-bottom: 16px;
    position: relative;
}

.article-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.article-section-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gold-soft);
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.article-section-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.article-section-content {
    font-size: 0.92rem;
    line-height: 2;
    color: var(--text-soft);
}

.article-section-content p {
    margin: 0 0 12px;
}

.article-section-content p:last-child {
    margin-bottom: 0;
}

/* آیه مرتبط */
.verse-box {
    background: linear-gradient(135deg, #fef9e8, #fdf3d0);
    border-right: 4px solid var(--gold);
    border-radius: var(--r-sm);
    padding: 20px 24px;
    margin: 12px 0;
    position: relative;
}

html[data-theme="dark"] .verse-box {
    background: linear-gradient(135deg, rgba(232,185,62,.08), rgba(232,185,62,.04));
}

.verse-arabic {
    font-family: 'Amiri', 'Traditional Arabic', serif;
    font-size: 1.5rem;
    line-height: 2.2;
    color: var(--text);
    text-align: center;
    direction: rtl;
    margin: 0 0 12px;
    font-weight: 700;
}

.verse-ref {
    text-align: center;
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 700;
}

/* کارت‌های واژگان */
.vocab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.vocab-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    transition: all .2s;
}

.vocab-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.vocab-word {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-deep);
    margin-bottom: 4px;
}

.vocab-meaning {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* گرید شواهد علمی */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.evidence-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px 12px;
    text-align: center;
    transition: all .25s;
}

.evidence-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.evidence-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: var(--gold-soft);
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.evidence-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

/* دو ستونی دیدگاه مخالفان */
.opposing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.opposing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px;
}

.opposing-card-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.opposing-card-title::before {
    content: '•';
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
}

.opposing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.opposing-list li {
    font-size: 0.82rem;
    color: var(--text-soft);
    padding-right: 14px;
    position: relative;
    line-height: 1.7;
}

.opposing-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    position: absolute;
    right: 0;
    top: 8px;
}

/* منابع */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.source-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    transition: all .2s;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.source-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.source-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.source-body { flex: 1; min-width: 0; }

.source-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 3px;
}

.source-desc {
    font-size: 0.75rem;
    color: var(--text-mute);
    margin: 0;
}

/* ---- ستون چپ: دکمه‌های شناور ---- */
.article-sidebar-left {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.floating-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform .25s;
}

.floating-action:hover {
    transform: scale(1.08);
}

.floating-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all .25s;
    box-shadow: var(--shadow-xs);
    position: relative;
}

.floating-action:hover .floating-action-btn {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(232,185,62,.4);
}

.floating-action-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
}

.floating-action.gold .floating-action-btn {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 6px 16px rgba(232,185,62,.35);
}

.floating-action.gold:hover .floating-action-btn {
    background: var(--gold-2);
    transform: rotate(-8deg);
}

/* رنگ‌های خاص هر شبکه اجتماعی */
.floating-action.telegram .floating-action-btn { color: #29a9e2; }
.floating-action.telegram:hover .floating-action-btn { background: #29a9e2; color: #fff; border-color: #29a9e2; }
.floating-action.twitter .floating-action-btn { color: #000; }
.floating-action.twitter:hover .floating-action-btn { background: #000; color: #fff; border-color: #000; }
.floating-action.instagram .floating-action-btn { color: #e1306c; }
.floating-action.instagram:hover .floating-action-btn { background: #e1306c; color: #fff; border-color: #e1306c; }

/* ============================================================
   مقالات مرتبط
   ============================================================ */
.related-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-head-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    padding-right: 14px;
    border-right: 4px solid var(--gold);
    padding-left: 0;
}

.section-head-link {
    font-size: 0.85rem;
    color: var(--gold-deep);
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: all .25s;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.related-card-img {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    position: relative;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.related-card:hover .related-card-img img {
    transform: scale(1.1);
}

.related-card-body {
    padding: 12px 14px;
}

.related-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-meta {
    display: flex;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-mute);
}

/* ============================================================
   نظرات کاربران
   ============================================================ */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.comment-item-new {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    margin-bottom: 12px;
    transition: all .2s;
}

.comment-item-new:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.comment-head-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar-new {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.comment-info { flex: 1; min-width: 0; }

.comment-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 2px;
}

.comment-date {
    font-size: 0.72rem;
    color: var(--text-mute);
}

.comment-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.comment-text-new {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.9;
    margin: 0;
}

/* ============================================================
   فرم نظر
   ============================================================ */
.comment-form-new {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    margin-bottom: 20px;
}

.comment-form-new h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 14px;
}

.comment-form-new input,
.comment-form-new textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 10px;
    transition: all .2s;
}

.comment-form-new input:focus,
.comment-form-new textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.comment-form-new textarea {
    min-height: 100px;
    resize: vertical;
}

.comment-form-new button {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--r-pill);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(232,185,62,.35);
}

.comment-form-new button:hover {
    background: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,185,62,.45);
}

/* ============================================================
   فوتر (شبیه تصویر)
   ============================================================ */
.site-footer-new {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col-new h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-col-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-col-new a {
    color: var(--text-soft);
    font-size: 0.85rem;
    transition: all .2s;
    display: inline-block;
}

.footer-col-new a:hover {
    color: var(--gold-deep);
    padding-right: 6px;
}

.footer-bottom-new {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-mute);
}

/* ============================================================
   ریسپانسیو
   ============================================================ */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 240px 1fr 70px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar-right {
        position: static;
        max-height: none;
        order: 2;
    }

    .article-sidebar-left {
        position: static;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        order: 3;
        padding: 20px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin: 20px 0;
    }

    .article-main {
        order: 1;
    }

    .floating-action-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .container {
        padding: 0 14px;
    }

    .article-main {
        padding: 18px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .verse-arabic {
        font-size: 1.25rem;
    }

    .article-section {
        padding: 16px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .article-title {
        font-size: 1.3rem;
    }

    .related-grid,
    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .article-stats-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .article-stats {
        justify-content: space-between;
    }

    .article-share {
        justify-content: center;
    }
}