/*
Theme Name: Arabic News Theme V2
Description: قالب إخباري عربي مع خط كايرو، قوائم، دعم اللوجو، وإعدادات أدسنس.
Author: Assistant
Version: 2.0
Text Domain: arabic-news
*/

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

body {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    color: #000; /* النص أسود */
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: red; /* العناوين حمراء */
}

a {
    color: blue; /* الروابط زرقاء */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* تنسيق شريط الأخبار */
.news-ticker-container {
    background: #e74c3c;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5px 10px;
}

.ticker-title {
    background: #c0392b;
    padding: 5px 15px;
    font-weight: bold;
    margin-left: 10px;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-content a {
    color: #fff;
    margin: 0 15px;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* تنسيقات القوائم والترويسة */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.header { background: #fff; padding: 20px 0; text-align: center; border-bottom: 2px solid #e74c3c; }

.site-branding { margin-bottom: 15px; }
.site-branding img { max-width: 200px; height: auto; }

.main-nav { background: #333; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; }
.main-nav li { margin: 0; }
.main-nav a { display: block; padding: 15px 20px; color: #fff; font-weight: bold; }
.main-nav a:hover { background: #e74c3c; text-decoration: none; }

/* البطاقات */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.post-card { background: #fff; padding: 15px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.post-card img { width: 100%; height: auto; border-radius: 5px; }

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: #e74c3c;
    color: #fff !important;
    border-radius: 3px;
    font-size: 14px;
}
.read-more:hover { background: #c0392b; text-decoration: none; }

/* تنسيق الفوتر */
.footer { background: #333; color: #fff; padding: 30px 20px; text-align: center; margin-top: 40px; }
.footer a { color: #ccc; }
.footer-nav ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 20px; margin-bottom: 20px;}

/* الإعلانات */
.ads-container { text-align: center; margin: 20px 0; }
