:root { --primary: #0f172a; --accent: #b91c1c; --text: #334155; --bg: #f8fafc; }

/* تنظیمات پایه */
body { font-family: 'Segoe UI', sans-serif; margin: 0; background: var(--bg); color: var(--text); }
.container { width: 90%; max-width: 1100px; margin: auto; }

main { min-height: 70vh; } /* تضمین می‌کند فوتر همیشه پایین صفحه بماند */
.ad-banner { clear: both; margin-bottom: 40px; }
/* نوار ناوبری - مشترک برای همه */
nav { background: white; padding: 15px 0; border-bottom: 3px solid var(--accent); position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; }

/* استایل بهینه برای فید خبری */
#feed-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feed-item {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    transition: 0.2s;
}

.feed-item:last-child { border-bottom: none; }

.feed-item a {
    display: block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.feed-item a:hover { color: var(--accent); }

.feed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

.feed-source {
    color: var(--accent);
    font-weight: bold;
    text-transform: uppercase;
}

/* دکمه همبرگری - در دسکتاپ مخفی */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: var(--primary); }

/* مدیریت تصاویر - جلوگیری از لِه شدن */
article img, .business-card img, .content img, .featured-img {
    width: 100%;
    height: 400px; /* ارتفاع ثابت در دسکتاپ */
    object-fit: cover; /* حفظ نسبت تصویر */
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
}

/* --- تنظیمات موبایل --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        display: none; /* مخفی در موبایل */
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; } /* باز شدن با جاوااسکریپت */
    .nav-links li { margin: 15px 0; }
    
    article img, .business-card img, .content img, .featured-img {
        height: 250px; /* ارتفاع کمتر برای موبایل */
    }
}
