@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;800&display=swap');

:root {
    --primary-color: #1E3A8A; /* رنگ اصلی الهام گرفته از category.html */
    --primary-light: #3B82F6;
    --secondary-color: #003B66;
    --text-color: #333;
    --text-light: #666;
    --light-gray: #f4f7f6;
    --border-color: #dee2e6;
    --header-height: 80px;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.01);
    --card-hover-shadow: 0 10px 25px rgba(0,0,0,0.1);
    --border-radius: 12px;
    --accent-color: #F59E0B; /* رنگ نارنجی برای تاکید */
}

/* --- General & Resets --- */
body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.8;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, textarea, select {
    font-family: 'Vazirmatn', sans-serif !important;
}

* { box-sizing: border-box; }
.container { max-width: 1280px; margin: 0 auto; padding-top: 20px; padding-left: 20px; padding-right: 20px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 700; margin: 0 0 1rem 0; }
section { margin-bottom: 4rem; }

/* --- Header --- */
.main-header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 0 30px; height: var(--header-height); 
    border-bottom: 1px solid var(--border-color); box-shadow: var(--card-shadow); position: relative; z-index: 1000; display: flex; align-items: center; }
.header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto; }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo { height: 50px; }
.title-container h1 { font-size: 1.4rem; margin: 0; color: var(--secondary-color); }
.title-container h2 { font-size: 0.8rem; margin: 0; font-weight: 400; color: var(--text-light); }
.main-header nav { display: flex; gap: 30px; }
.main-header nav a { font-weight: 500; padding-bottom: 5px; transition: all 0.3s ease; }
.main-header nav a.active { color: #fff; font-weight: bold; }
.main-header nav a:hover { opacity: 0.8; border-bottom-color: #fff; }

.post-meta { display: flex; gap: 25px; font-size: 1rem; }

/* --- Slogan Section --- */
.slogan-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 1.2rem;
}

/* --- Index Page: Categories & Sorting --- */
.categories-section h2 { text-align: center; font-size: 2rem; margin-bottom: 1.5rem; }
.categories-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.category-chip { background-color: var(--light-gray); padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.category-chip:hover, .category-chip.active { background-color: var(--primary-color); color: #fff; transform: translateY(-2px); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.section-header h2 { font-size: 1.8rem; color: var(--secondary-color); }
.sort-options select { padding: 8px 15px; border-radius: 8px; border: 1px solid var(--border-color); background-color: white; font-family: 'Vazirmatn', sans-serif; font-size: 0.9rem; }

/* --- Post Card --- */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.post-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover-shadow); }
.post-card-image { width: 100%; height: 220px; object-fit: cover; }
.post-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.post-card-content h3 { font-size: 1.4rem; line-height: 1.5; margin-bottom: 10px; }
.post-card-content p { font-size: 0.95rem; color: var(--text-light); flex-grow: 1; margin-top: 10px; }
.post-card-author { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.post-card-author img { width: 30px; height: 30px; border-radius: 50%; }
.post-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 15px; }
.tag { background-color: var(--light-gray); color: var(--primary-color); padding: 4px 12px; border-radius: 15px; font-size: 0.8rem; }
.post-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; margin-top: 15px; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-light); }
.post-card-footer .stat { display: flex; align-items: center; gap: 6px; }
.post-card-footer .stat i { color: var(--primary-color); }

/* --- Load More Button --- */
.load-more-container { text-align: center; margin-top: 2rem; }
.load-more-btn { background-color: var(--primary-color); color: white; border: none; padding: 10px 25px; border-radius: 25px; font-family: 'Vazirmatn', sans-serif; font-size: 1rem; cursor: pointer; transition: background-color 0.3s ease; }
.load-more-btn:hover { background-color: var(--primary-light); }

/* --- Post Page Layout --- */
.container.full-width { max-width: 100%; padding: 0; }
.post-layout { display: flex; flex-wrap: wrap; gap: 40px; max-width: 1380px; margin: 40px auto; padding: 0 20px; }
.main-column { flex: 1 1 68%; min-width: 300px; }
.sidebar { flex: 1 1 28%; min-width: 280px; }
.sidebar-inner { position: sticky; top: 40px; }

/* --- RESPONSIVE SLIDE STYLES (THE SOLUTION) --- */
.slide-container { margin-bottom: 50px; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid var(--border-color); }
.slide-header { display: flex; justify-content: space-between; align-items: center; padding: 15px; background-color: var(--light-gray); }
.slide-author { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.slide-author img { width: 45px; height: 45px; border-radius: 50%; }
.slide-brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.slide-brand img { height: 35px; opacity: 0.8; }

.slide-content-wrapper { position: relative; width: 100%; overflow: hidden; background-color: #f0f0f0; }
.slide-content-wrapper iframe { position: absolute; top: 0; right: 0; width: 1280px; border: none; transform-origin: top right; }

/* --- Slide Actions & Caption --- */
.slide-actions { display: flex; justify-content: space-between; align-items: center; padding: 15px; font-size: 1.8rem; background-color: white; }
.slide-actions .main-actions { display: flex; gap: 20px; }
.slide-actions i { cursor: pointer; color: #555; transition: all 0.3s; }
.slide-actions i:hover { transform: scale(1.1); }
.slide-actions i.liked { color: #e74c3c; }
.slide-actions i.saved { color: var(--primary-color); }
.slide-caption { padding: 0 15px 15px; font-size: 0.95rem; background-color: white; }
.caption-text { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: -webkit-line-clamp 0.3s ease; }
.caption-text.expanded { -webkit-line-clamp: 20; /* Allow more lines */ }
.more-btn { background: none; border: none; color: var(--primary-color); cursor: pointer; padding: 5px 0; font-weight: bold; }
.slide-date { font-size: 0.85rem; color: #999; margin-top: 10px; }

/* --- Sidebar --- */
.sidebar-section { background-color: white; border: 1px solid var(--border-color); padding: 20px; border-radius: var(--border-radius); margin-bottom: 30px; }
.sidebar h3 { font-size: 1.3rem; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); margin-bottom: 20px; }
#toc-container a { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: 8px; transition: background-color 0.3s; margin-bottom: 8px; }
#toc-container a.active { background-color: #e9f5ff; font-weight: bold; color: var(--primary-color); }
#toc-container img { width: 70px;  height: 40px;  flex-shrink: 0; object-fit: cover; border-radius: 5px;}
.author-info { display: flex; align-items: center; gap: 15px; }
.author-info img { width: 60px; height: 60px; border-radius: 50%; }
.author-info div h4 { margin-bottom: 5px; color: var(--primary-color); }
.sidebar-ad { margin-top: 30px; border-radius: 8px; overflow: hidden; }
.sidebar-ad img { width: 100%; display: block; }

/* --- Footer & Misc --- */
.main-footer { background-color: var(--secondary-color); color: #fff; padding: 40px 0 20px; }
.footer-content { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; gap: 30px; }
.footer-logo { flex: 1 1 300px; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-logo img { height: 50px; }
.footer-logo h3 { margin: 0; font-size: 1.2rem; }
.footer-links { flex: 2 1 600px; display: flex; flex-wrap: wrap; gap: 30px; }
.footer-column { flex: 1 1 200px; }
.footer-column h4 { margin-bottom: 15px; font-size: 1.1rem; position: relative; padding-bottom: 8px; }
.footer-column h4:after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 2px; background-color: var(--primary-light); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li a { color: rgba(255, 255, 255, 0.8); transition: color 0.3s ease; }
.footer-column ul li a:hover { color: white; }
.copyright { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
#progress-bar { position: fixed; top: 0; right: 0; width: 0%; height: 5px; background: var(--primary-light); z-index: 1001; transition: width 0.1s linear; }
.loader { border: 5px solid var(--light-gray); border-top: 5px solid var(--primary-color); border-radius: 50%; width: 50px; height: 50px; animation: spin 1.5s linear infinite; margin: 100px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- Comment Modal --- */
.comment-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 1001; }
.modal-content { background-color: white; border-radius: var(--border-radius); width: 90%; max-width: 600px; max-height: 80vh; overflow: hidden; display: flex; flex-direction: column; }
.modal-header { padding: 15px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { margin: 0; color: var(--primary-color); }
.close-modal { font-size: 24px; cursor: pointer; color: #999; }
.modal-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
.comment { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.comment-header { display: flex; align-items: center; margin-bottom: 10px; }
.comment-header img { width: 40px; height: 40px; border-radius: 50%; margin-left: 10px; }
.comment-author { font-weight: 600; }
.comment-date { font-size: 0.8rem; color: #999; margin-right: 10px; }
.add-comment textarea { width: 100%; min-height: 100px; padding: 10px; border: 1px solid var(--border-color); border-radius: 8px; font-family: 'Vazirmatn', sans-serif; resize: vertical; margin-bottom: 10px; }
.add-comment button { background-color: var(--primary-color); color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; }
.add-comment button:hover { background-color: var(--primary-light); }

.tags-container { display: flex; flex-wrap: wrap; gap: 10px; }

.action-item { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; color: var(--text-light); }
.action-item span { font-weight: 500; }

.in-post-ad-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 50px 0; padding: 20px; background-color: var(--light-gray); border-radius: var(--border-radius); }
.in-post-ad { display: flex; align-items: center; gap: 15px; text-align: right; }
.in-post-ad img { height: 50px; width: 50px; flex-shrink: 0; }
.in-post-ad h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: var(--primary-color); }
.in-post-ad p { margin: 0; font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* --- Hero Section --- */
.hero-section-post {
    width: 100%;
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    color: #fff;
    padding: 40px;
    margin-bottom: 2rem;
}
.hero-section-post::before { 
    content: ''; 
    position: absolute;
    inset: 0; 
    background-size: cover; 
    background-position: center; 
    background-image: var(--bg-image); 
    filter: brightness(0.4); 
    z-index: 1; 
}
.hero-content-post { 
    position: relative;
    z-index: 2; 
    max-width: 1280px; 
    width: 100%; 
}
.hero-content-post h1 { 
    font-size: 2.8rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.hero-content-post h2, .hero-section-post p { 
    font-size: 1.4rem; 
    font-weight: 300; 
    margin-bottom: 1.5rem;
}
/* --- Header & Hero Section Integration --- */
.header-wrapper {
    position: relative;
    z-index: 1000;
}
.main-header {
    background: transparent; /* هدر شفاف می‌شود */
    position: absolute; /* روی هیرو قرار می‌گیرد */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* سفید کردن متون و لوگوی هدر */
.title-container h1, .title-container h2, .main-header nav a {
    color: #fff;
}
.logo {
    filter: brightness(0) invert(1);
}
.main-header nav a:hover, .main-header nav a.active {
    border-bottom-color: #fff;
}
/* --- Hero Section Styles (Corrected) --- */
.hero-section {
    width: 100%;
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px;
    overflow: hidden;
    background: 
        linear-gradient(to bottom, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.7) 100%),
        var(--bg-image, url('https://shahraavand.ir/images/TitlePhoto.avif'));    
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    padding-top: var(--header-height); /* این خط اضافه شود */
}
.hero-content {
    position: relative; /* z-index دیگر ضروری نیست اما بودن آن مشکلی ایجاد نمی‌کند */
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    text-align: right;
    padding: 0 20px;
    margin-right: 0;
    margin-left: auto;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.6rem;
    font-weight: 300;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    border-radius: 2px;
}

/* استایل‌های ریسپانسیو برای Hero Section */
@media (max-width: 992px) {
    .hero-section {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
        padding: 20px;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 35vh;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* استایل‌های جدید برای نمایش ریسپانسیو اسلایدها */
.slide-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.slide-container {
    width: 100%;
    position: relative;
    transform-origin: top right;
}

.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    background-color: var(--light-gray);
}

.slide-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.slide-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.slide-brand img {
    height: 35px;
    opacity: 0.8;
}

.slide-content {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 1.8rem;
    background-color: white;
}

.slide-actions .main-actions {
    display: flex;
    gap: 20px;
}

.slide-actions i {
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.slide-actions i:hover {
    transform: scale(1.1);
}

.fa-heart.fas {
    color: #e74c3c;
}

.fa-bookmark.fas {
    color: var(--primary-color);
}

.slide-caption {
    padding: 0 15px 15px;
    font-size: 0.95rem;
    background-color: white;
}

.slide-caption .caption-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.slide-caption .caption-text.expanded {
    -webkit-line-clamp: unset;
}

.slide-caption .more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 0;
    font-weight: bold;
}

.slide-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

/* استایل‌های جدید برای اسلایدهای HTML */
.slide-iframe-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-iframe {
    width: 100%;
    height: 0;
    border: none;
    background: var(--light-gray);
    display: block;
}

/* استایل‌های مربوط به نوار پیشرفت */
#progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 5px;
    background: var(--primary-light);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* استایل‌های مربوط به تبلیغات محیطی */
.environmental-ad {
    background-color: #e8f5e9;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.environmental-ad img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

/* --- Inline Comment Section Styles --- */
.inline-comment-section {
    padding: 15px;
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-color);
}

.comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.comment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

.comment-author { font-weight: 600; }
.comment-date { font-size: 0.8rem; color: #999; margin-right: 10px; }
.comment-text { line-height: 1.7; }

.add-comment textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Vazirmatn', sans-serif;
    resize: vertical;
    margin-bottom: 10px;
}

.add-comment button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-comment button:hover { background-color: var(--primary-light); }
/* --- Inline Comment Section Styles --- */
.inline-comment-section {
    padding: 20px 15px;
    background-color: #f9fafb; /* کمی متفاوت از رنگ اصلی */
    border-top: 1px solid var(--border-color);
    margin-top: -15px; /* چسبیدن به بخش بالایی */
}
.comments-list {
    margin-bottom: 20px;
}
.add-comment h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
/* --- Responsive Ad Styles --- */
@media (max-width: 992px) {
    /* مخفی کردن تبلیغ سایدبار در صفحات تبلت و موبایل */
    .sidebar-ad {
        display: none;
    }
}

@media (max-width: 768px) {
    /* تبدیل تبلیغات درون متنی از دو ستون به یک ستون */
    .in-post-ad-container {
        grid-template-columns: 1fr; /* نمایش در یک ستون */
    }
}
.post-card-footer .action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.post-card-footer .action-item i {
    font-size: 1.1rem;
    color: #555;
}
/* --- Hamburger Menu & Responsive Header Styles --- */
.hamburger-btn {
    display: none; /* در حالت دسکتاپ مخفی است */
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1002;
    position: absolute; /* برای قرارگیری صحیح در هدر */
    right: 20px;
}
.hamburger-btn i {
    font-size: 24px;
    color: #fff;
}
.nav-logo {
    display: none; /* لوگوی داخل منو در حالت دسکتاپ مخفی است */
}

@media (max-width: 992px) {
    .header-content {
        justify-content: flex-end; /* دکمه همبرگری را به سمت راست هول می‌دهد */
    }
    .main-header nav {
        display: none; /* منو به صورت پیش‌فرض مخفی است */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 60px 20px 20px;
        gap: 25px;
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        justify-content: flex-start;
        align-items: center;
    }
    .main-header nav.active {
        display: flex; /* نمایش منو در حالت فعال */
    }
    .hamburger-btn {
        display: block; /* نمایش دکمه همبرگری */
    }
    .logo-container {
        display: none; /* مخفی کردن لوگوی اصلی در هدر */
    }
    .nav-logo {
        display: flex; /* نمایش لوگوی داخل منو */
        margin-bottom: 20px;
    }
    .nav-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .main-header nav .tandis-btn {
        margin-top: 20px;
    }
}

.tandis-btn { display: flex; align-items: center; gap: 8px; background-color: rgba(255, 255, 255, 0.9); padding: 8px 16px;
    border-radius: 20px; transition: background-color 0.3s ease; white-space: nowrap;  /*جلوگیری از شکستن متن */}
.tandis-btn:hover { background-color: rgba(255, 255, 255, 0.75);}
.tandis-btn img { height: 24px;}
/* این استایل برای هر دو صفحه کار می‌کند */
.suggested-posts-section h2,
.posts-section .section-header h2 { font-size: 2.2rem; margin-bottom: 2.5rem; text-align: center;}
