/* إعادة تعيين التنسيقات */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Almarai", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    text-align: right; /* محاذاة النص إلى اليمين */
    direction: rtl; /* النص من اليمين إلى اليسار */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* الحاوية العلوية */
.top-header {
    padding: 10px 0;
    background-color: #111;
background-image: linear-gradient(to left,red, white, black );

}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr; /* إعادة تعيين اتجاه النص للعناصر المحددة */
}

.top-header .email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.top-header .email i {
    color: #fff;
}

.top-header .social-icons {
    display: flex;
    gap: 15px;
    z-index: 2;
}

.top-header .social-icons a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.top-header .social-icons a:hover {
    color: #d63d3d;
}

/* الخط الفاصل */
.header-divider {
    height: 2px;
    background-color: #eedede;
}

/* الحاوية السفلية */
.bottom-header {
    padding: 10px 0;
    background-color: #000;
    background-image: linear-gradient(to left, red, white, black);

}

.bottom-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    direction: ltr;
}

.bottom-header .logo {
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #CE1126, #FFFFFF, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    height: 450%; /* تعديل الارتفاع حسب الحاجة */
    max-width: 100%; /* حتى لا يتجاوز العرض الحاوية */
    object-fit: contain; /* الحفاظ على الأبعاد */
    margin-top: 15px;
}
    
.bottom-header .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 29px;
}

.bottom-header .menu ul li a {
    color: #0a66ef;
    font-family: Arial, sans-serif;
   
    text-decoration: none;
    font-size: 30px;
    transition: color 0.3s ease;
}

.bottom-header .menu ul li a:hover {
    color: #f3ecec;
    background-color: #CE1126;
    border-radius: 5px;
    padding: 10px 15px;
    display: inline-block; /* لمنع تمدد العناصر */
}




/* تنسيق القائمة */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px; 
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
}

.menu ul li a:hover {
    color: #ccc;
}

/* زر القائمة */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    position: absolute;
padding: top 1px;
    right: 10px;
    z-index: 1001; 
}

/* القائمة المنسدلة للشاشات الصغيرة */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .bottom-header .menu ul {
        display: none;
        flex-direction: column-reverse;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px;
        z-index: 100;
    }

    .bottom-header .menu ul.active {
        display: flex;
    }

    .bottom-header .menu ul li {
        margin: 0 100px;
        text-align: center;
        background-color:rgb(0, 255, 145);
    }
}
.bottom-header .menu ul li :hover{
    background-color: black;
}

/* باقي التنسيقات */
.email a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.email a:hover {
    color: #ccc;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-icon {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.search-icon:hover {
    color: #ccc;
}

.search-box {
    display: none;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 10px;
    margin-left: 10px;
}

.search-input {
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
    width: 150px;
}

.search-input::placeholder {
    color: #ccc;
}

/* تذييل الصفحة */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-menu ul li {
    margin-left: 20px;
}

.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}

/* تنسيقات صفحة البروفايل*/

/* تعيين الخطوط والخلفية العامة */
body {
    font-family: "Almarai", sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    direction: rtl; /* تحديد الاتجاه من اليمين إلى اليسار */
    text-align: right; /* محاذاة النصوص إلى اليمين */
}

/* صورة الغلاف بعرض المتصفح */
.cover-image {
    width: 100%;
    height: 300px; /* تعديل الارتفاع حسب الحاجة */
    background: url('cover.jpg') no-repeat center center/cover;
    position: relative;
}















/* تنسيقات الأكثر قراءة - معدلة للعرض 1460.8px */
.most-read-section {
    width: 100%;
    max-width: 1460.8px; /* نفس عرض المحتوى الرئيسي تماماً */
    margin: 40px auto;
    padding: 0 30px; /* نفس هوامش المحتوى الرئيسي */
    box-sizing: border-box;
}

.most-read-header {
    text-align: right;
    margin-bottom: 30px;
}

.section-title-tht {
    font-size: 32px;
    color: #000;
    font-weight: bold;
    position: relative;
    padding-bottom: 0px;
}

.section-title-tht::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #CE1126;
}

.most-read-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.most-read-article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.most-read-article:hover {
    transform: translateY(-5px);
}

.most-read-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-read-article:hover .most-read-image img {
    transform: scale(1.05);
}

.most-read-content {
    padding: 20px;
}

.most-read-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.most-read-title:hover {
    color: #CE1126;
}

/* استجابة للشاشات المختلفة */
@media (max-width: 1500px) {
    .most-read-section {
        padding: 0 20px;
    }
    .most-read-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .most-read-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .most-read-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .most-read-section {
        padding: 0 15px;
    }
    .most-read-grid {
        grid-template-columns: 1fr;
    }
    .section-title-tht {
        font-size: 28px;
    }
}
/* الحاوية الأساسية مع هوامش قابلة للتعديل */
.main-wrapper {
    max-width: 95%; /* تحديد أقصى عرض للمحتوى */
    margin: 60px auto; /* توسيط المحتوى في الصفحة */
    padding: 0 20px; /* الهوامش الجانبية */
}

/* معلومات الكاتب */
.author-info {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 10px; /* رفعه ليكون أسفل الغلاف مباشرة */
    margin-right: 20px;
}

/* صورة الكاتب المدورة */
.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* اسم الكاتب */
.author-name {
    font-size: 0.5rem;
    font-weight: bold;
    color: red;
    margin-right: 15px;
    text-decoration: none;
}


/* تنسيقات معلومات الكاتب */
.author-info {
    display: flex;
    align-items: center;
    justify-content: space-between; /* لتوزيع العناصر على الجانبين */
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.author-social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px; /* مسافة بين الأيقونات واسم الكاتب */
   
}

.author-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-icons a:hover {
    transform: translateY(-3px);
}

.author-social-icons .whatsapp { background-color: #25D366; }
.author-social-icons .facebook { background-color: #3b5998; }
.author-social-icons .email { background-color: #EA4335; }
.author-social-icons .share { background-color: #555; }

/* تعديلات للشاشات الصغيرة */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-social-icons {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .author-social-icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
/* صندوق المحتوى الأساسي */
.content-box {
    width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 10px; /* تماهٍ مع الهامش دون حواف ظاهرة */
    box-shadow: none; /* إخفاء الحدود */
}
p{
    font-size: 30px;
    font-weight: bold;
    width: 100%;
   
    
}
h3{
    text-align: center;
}
.mmez{
    font-size: 26px;
    width: 100%;
    text-indent: 20px;
    font-weight: bold;
}
/* عنوان الأكثر قراءة */
.most-read {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

/* تنسيق عنوان الأكثر قراءة */
.most-read h2 {
    font-size: 24px;
    font-weight: bold;
}

/* الخط الأحمر تحت العنوان */
.red-line {
    width: 100%;
    height: 3px;
    background-color: red;
    margin: 5px 0 15px;
}

/* تنسيق الروابط */
.most-read ul {
    list-style: none;
    padding: 0;
}

.most-read ul li {
    margin-bottom: 10px;
}

.most-read ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
}

.most-read ul li a:hover {
    text-decoration: underline;
}

/* جعل التصميم متجاوبًا على الشاشات الصغيرة */
@media (max-width: 768px) {
    .main-wrapper {
        max-width: 100%;
        padding: 10px;
    }

    .content-box, .most-read {
        padding: 5px;
    }
    p{
        font-size: 19px;
      
        width: 100%;
    }
}
.author-info {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
}

.author-img {
    width: 110px;
    height: 110px;
}

.author-name {
    margin-right: 1px;
    font-size: 28px;
}
/* صورة البروفايل */
.profile-header {
    width: 100%;
    text-align: center;
}

.profile-cover {
    width: 100%;
    height: 100%; /* يمكن التعديل حسب الحاجة */
    object-fit: cover;
    border-radius: 10px;
}




/* تنسيق العناصر داخل ودجيت الأكثر قراءة */
.most-read-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.most-read-item img {
    width: 110px;
    height: 110px;
    border-radius: 4px;
    margin-left: 10px;
}

.most-read-item a {
    font-size:23px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.most-read-item a:hover {
    color: #CE1126;
}
.bottom-header {
    padding: 17px 0; /* زيادة التباعد العلوي والسفلي */
}


/* الجوال فقط (عرض أقل من 768px) */
@media (max-width: 767px) {
    p {
      font-size: 19px;
      line-height: 1.6;
    }
    .most-read-item a{
        font-size: 16px;
    }

  }
  
  /* التابلت (768px - 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    p {
      font-size: 19px;
    }

    .most-read-item a{

        font-size: 20px;
    }
  }
  
  /* الديسكتوب (1024px فأكثر) */
  @media (min-width: 1024px) {
    p {
      font-size: 35px;
      line-height: 1.6;
      
    }
  }

  /* تنسيقات السؤال */
.interview-question {
    position: relative;
    font-weight: bold; /* خط عريض */
    font-weight: 900 !important; /* للتأكد من تطبيقه */
    font-size: 40px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: -3px; /* الهامش السفلي للسؤال */

    padding-right: 0px; /* مساحة للنقطة الزرقاء */
    margin-top: 18px; /* هامش علوي كبير */
    
  }
  
  /* النقطة الزرقاء قبل السؤال */
  .question-marker {
    position: absolute;
    right: 15px;
    top: 0.7em;
    width: 12px;
    height: 12px;
    background-color: #1363a6; /* اللون الأزرق المستخدم في الجزيرة */
    border-radius: 50%;
    display: inline-block;
  }
  /* للشاشات الصغيرة */
@media (max-width: 768px) {
    .interview-question {
      font-size: 24px;
      margin-bottom: -5px;
     
    
     
    }
    
}
@media (max-width: 768px) {
    .question-marker {
        position: absolute;
        right: 15px;
        top: 0.7em;
        width: 12px;
        height: 12px;
        background-color: #1363a6; /* اللون الأزرق المستخدم في الجزيرة */
        border-radius: 50%;
        display: inline-block;
      }
    
}
.hij{
    color: #000000;
    font-style: italic;
}
.title{
    color: #000000;
    margin-bottom: 10px;
    margin-top: -28px; 
}
.popo{
    font-size: 33px;
}




/* تهيئة عامة - خطوط وألوان */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700&display=swap');

:root {
  --primary-color: #C00;
  --secondary-color: #333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}


/* النشرة البريدية */
.newsletter {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    font-family: "Almarai", sans-serif;
  }
  
  .newsletter input {
    padding: 10px;
    width: 60%;
    border: none;
    border-radius: 4px;
  }
  
  .newsletter button {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    margin-right: 5px;
  }
  
  /* تجاوب مع الشاشات الصغيرة */
  @media (max-width: 768px) {
    .hero-section {
      grid-template-columns: 1fr;
    }
    
    .content-grid {
      grid-template-columns: 1fr;
    }
    
    .newsletter input {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  
  a{
    text-decoration: none;
    color: #000000;
  }
  a:hover{
    color: #CE1126;
  }
  
  /* وضع هذا في ملف CSS الخاص بك */
  .footer ~ ul, 
  .footer ~ li, 
  .newsletter + ul, 
  .newsletter + li {
    display: none !important;
  }
  
  
  .social-share-container {
      display: flex;
      align-items: center;  /* محاذاة رأسية */
      gap: 15px;           /* مسافة بين العناصر */
      margin: 15px 0;
  }
  
  .social-media {
      display: flex;
      gap: 10px;           /* مسافة بين الأيقونات */
  }
  
  .social-media a {
      color: #fff;
      font-size: 20px;
      transition: 0.3s;
  }
  
  .share-button {
      background: #4267B2;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
  }
  
  .white-stripe {
    /* تأثيرات إضافية */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
  }
  
  /* تنسيقات العناصر الداخلية */
  .national-symbol {
    text-align: center;
    
  }
  
  .national-symbol p{
   font-size: 16px;

  }

  .container p{
    font-size: 16px;
  }
  .eagle-icon {
    width: 100px;
    height: auto;
    animation: float 3s ease-in-out infinite;
  }
  

  .eagle-icon{
    visibility: hidden; /* يخفي المحتوى مع الحفاظ على المساحة */
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* حجم أساسي للأيقونة */
  .share-button i {
    font-size: 7px; /* الحجم الافتراضي */
  }
  
  /* تعديل الحجم للشاشات الصغيرة */
  @media (max-width: 768px) {
    .share-button i {
      font-size: 14px; /* حجم أصغر للجوال */
    }
    
    .share-button {
      padding: 5px 10px; /* تعديل حجم الزر نفسه */
      font-size: 12px; /* حجم نص أصغر */
    }
  }
  
  @media (max-width: 768px) {
    .social-media-wrapper {
      text-align: center;
    }
    
    .social-media {
      display: inline-flex; /* يحافظ على التنسيق الأفقي */
    }
  }
  
  .social-container {
    display: flex;
    align-items: center; /* يضمن محاذاة جميع العناصر */
    gap: 10px;
  }
  
  .share-pin {
    margin: 0;
    padding: 0;
    line-height: 1; /* يمنع أي فراغ غير ضروري */
  }
  
  .share-pin {
    display: inline-flex; /* بدلاً من inline-block */
    align-items: center; /* محاذاة رأسية */
    vertical-align: middle; /* محاذاة مع العناصر المجاورة */
    position: relative;
    top: 1px; /* تعديل دقيق للموقع */
  }
  
  
  .yemen-stats {
    display: flex;
    justify-content: space-around;
    font-family: "Almarai", sans-serif;
  }
  .stat-item {
    text-align: center;
  }
  .number {
    font-size: 2rem;
    color: #CE1126;
    font-weight: bold;
  }
  .yemen-stats {
    display: flex;
    justify-content: space-around;
    position: relative; /* هذه السطر ضروري */
    padding-bottom: 40px; /* لتجنب تداخل المحتوى */
  }
  

  /* تنسيقات شريط المشاركة */
.share-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .share-options {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    position: relative;
  }
  
  .share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .share-btn:hover {
    transform: scale(1.1);
  }
  
  .facebook { background: #3b5998; color: white; }
  .twitter { background: #1da1f2; color: white; }
  .whatsapp { background: #25d366; color: white; }
  .copy { background: #555; color: white; }
  
  .share-close {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #CE1126;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
  }

  .toline{
    color: #365cf0;
  }

  