:root {
    --nour-primary:          #c0392b;
    --nour-primary-dark:     #922b21;
    --nour-primary-light:    #e74c3c;
    --nour-accent:           #f39c12;
    --nour-accent-dark:      #d68910;
    --nour-dark:             #1a1a1a;
    --nour-dark-2:           #000000;
    --nour-gray-700:         #4b5563;
    --nour-gray-500:         #6b7280;
    --nour-gray-300:         #d1d5db;
    --nour-gray-100:         #f3f4f6;
    --nour-white:            #ffffff;
    --nour-bg:               #f5f5f0;
    --nour-bg-card:          #ffffff;
    --nour-text:             #1a1a1a;
    --nour-text-muted:       #6b7280;
    --nour-border:           #e5e7eb;
    --nour-border-dark:      #d1d5db;
    --cat-politics:          #c0392b;
    --cat-economy:           #27ae60;
    --cat-sports:            #2980b9;
    --cat-tech:              #8e44ad;
    --cat-world:             #e67e22;
    --cat-culture:           #16a085;
    --cat-health:            #e74c3c;
    --nour-font-arabic:      'Cairo', sans-serif;
    --nour-font-latin:       'Inter', 'Segoe UI', Arial, sans-serif;
    --nour-font-size-base:   16px;
    --nour-line-height:      1.8;
    --nour-container:        1200px;
    --nour-sidebar-w:        320px;
    --nour-gap:              24px;
    --nour-radius:           6px;
    --nour-radius-lg:        10px;
    --nour-shadow-sm:        0 1px 3px rgba(0,0,0,.08);
    --nour-shadow:           0 4px 12px rgba(0,0,0,.10);
    --nour-shadow-lg:        0 8px 24px rgba(0,0,0,.14);
    --nour-transition:       all .25s ease;
    --sec-radius : 10px;
    --sec-gap    : 20px;
    --sec-shadow : 0 2px 12px rgba(0,0,0,.08);
}
[data-theme="dark"] {
    --nour-bg:               #111827;
    --nour-bg-card:          #1f2937;
    --nour-text:             #f9fafb;
    --nour-text-muted:       #9ca3af;
    --nour-border:           #374151;
    --nour-dark:             #f9fafb;
    --nour-gray-100:         #374151;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: var(--nour-font-size-base);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--nour-font-arabic);
    background-color: var(--nour-bg);
    color: var(--nour-text);
    line-height: var(--nour-line-height);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    margin: 0 100px;
}

a{
    text-decoration: none;
}
img{
      border: 5px solid lightblue;
}
form{
  text-align:center;
}
h1{
  direction:rtl;
}
img{ border: 6px solid lightblue;}
.navbar-all{
        display: flex;
        justify-content: space-around;
          align-items: center;
          padding: 35px 20px;
          background-color: #333;
          color: white;
        }
  
 .logo-web{
   width:90px;
   height:60px;
    }
    .dropdown{
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .icon{
        width: 50px;
    }
    .dropdown-content{
display: none;
position: absolute;
/* width: 100%; */
left: 100%;
    }




.logo-web {
  width: 90px;
  height: 60px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.icon {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content .categories,
.dropdown-content .about-cafeine {
  padding: 10px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  background-color: gray;
  z-index: 999;
}

.pdf-download a {
  display:flex;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #4CAF50;
  border-radius: 5px;
}

.pdf-download a:hover {
  background-color: #45a049;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.language-switcher a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-all {
      flex-direction: column;
      align-items: center;
  }

  .logo-web {
      margin-bottom: 10px;
  }

  .dropdown-content {
      position: static;
      width: 100%;
  }

  .dropdown-content .categories,
  .dropdown-content .about-cafeine {
      margin: 0;
      padding: 10px;
  }

  .dropdown-content a {
      padding: 10px;
      font-size: 18px;
  }

  .pdf-download {
      margin-top: 10px;
  }

  .language-switcher {
      margin-top: 10px;
  }
}


.first-category {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line if needed */
  justify-content: space-between;
  margin: 50px 0;
}

.image-cat-a {
  width: 22%;
  margin: auto;
  text-align: center; /* Center the text within the div */

}

.image-cat-a img {
  width: 100%; /* Make the image take the full width of its container */
  height: 238px; /* Set a maximum height if needed */
  object-fit: cover; /* Ensure the image covers the container without stretching */
}

.image-cat-a p {
  font-size: 20px;
  margin: 10px 0; /* Adjust margins for better spacing */
  text-align: center;
}
  

/* .first-category .image-cat-a  {
    animation: moveUp 1s ease-out forwards;
}

@keyframes moveUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} */
/* slide */
.slides-blog{
  display: flex;
  /*flex-direction: row-reverse;*/
  justify-content: space-around;
  margin: 25px 15px;
  background-color: lightgrey;
  height: 600px;
}
 .container {
  position: relative;
  width: 70%;
  /* margin: auto; */
background-color: rgb(249, 247, 250);
height: 100%;
}
.mySlides{
  margin: 10px;
  height: 75%;
}
.mySlides img {
  width: 100%; /* Keep the width as it is */
  height: 97%; /* Adjust the height as needed */
}
.mySlides .btn-article {
font-size:21px;
      position: absolute;
    top: 50%;
    right: 0;
    background: #a38f738a;
    color: white;
    width: 90%;

}
.btn-section{
  color:white;
  text-align: center;
}
.blog-side{
width:30%;
height: 100%;
/*margin:0 5px;*/
/* margin: auto; */
background-color: rgb(249, 247, 250);
padding: 0 0;
}
.blog-side div{
height: 22%;
/* width:95%; */
margin: 15px 0;
/* max-height:175px; */
background-color:white;
/* border:1px #011f09 solid; */
display: flex;
 flex-direction: row-reverse; 

}

.blog-side div img{
  width: 50%;
height:auto;
max-width: 50%;
min-width: 50%;

}

.blog-side div a{
  width:39%;
  height: 100%;
}
  .blog-slide-a-img{
    display: flex;
    /* flex-direction: row-reverse; */
  }
 
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 20%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
    height:100px;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
    height:100%;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  /* New CSS for centering the title */
  .centered-caption {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    font-size: 35px;
  }
 
/* end slide */
.first-category .image-cat-a {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.first-category .image-cat-a.move-up {
    transform: translateY(0);
    opacity: 1;
}
.btn-article {
  width: 100%;
    text-align: center;
    border: none;
    background-color: transparent;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
}

/* article page */
.article-page{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    flex-direction: row-reverse;
  }
  .mainarticle-message{
  display:flex;
  flex-direction: column;
  /* margin: 0 2px; */
  background-color: #fffc;
    width:73%;
  }
  .messages{
  background-color: gray;
  }
  .main-article{
    width: 80%;
    direction: rtl;
    font-size:17px;
    margin: 0 50px;
  }
  .title-related{
text-align:center;
  }
  .post_writter_article{
  display:flex;
  font-size: 25px;
  font-weight: 900;
  margin-bottom:10px;
  }
  .pinged {
  margin-right:10px;
  color:red;
  }
  .main-article h1{
  font-size: 24px;
  font-weight:bold;
  text-align:center;
  color:#cb0000;
  }
  /*.main-article img{*/
  /*    width: 75%;*/
  /*    height:450px;*/
  /*   margin-right:10%;*/
  /*   margin-top:10px;*/
  /*   margin-bottom:10px;*/
  /*}*/
  .main-article p{
    /* width: 100%; */
  margin: 7px 45px;
  font-size: 18px;
  font-family: 'Garamond', 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
    
  }
  .main-article  img{
    width: 100%;
    margin: 20px 0;
  }
  .related-psts-h3{
    text-align: center;
    background-color: #34AD54;
    color:white;
  }
  .MsoNormal{
  font-family:HacenLinerScreenBd;
  }
  .main-article p.MsoNormal img{
  width:90%;
  }
  .main-article .about-us p{
    font-size: 22px;
    
    }
    .awa-author{
    display: flex;
    justify-content: space-between;
    background: aliceblue;
    margin: 15px 5px;
     flex-direction:column;
    }
    .writter-post{
    display: flex;
    flex-direction: column;
    margin: 30px 5px;
    }
    .writter-post img{
    width:100px;
    height:100px;
    margin:auto;
    }
    .writter-post p{
      margin:2px auto;
      }
    .writter-content{
    display: flex;
    direction: rtl;
    flex-direction: column;
    margin: auto 5px;
  }
    .writter-content a{
    text-decoration: none;
    color: #143181;
    font-size: 17px;
    font-weight: 600;
    }
  .related-posts-under{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
     }
     .article-related-under{
    
        display: flex;
        flex-direction: column;
        width: 33%;
        margin: 5px auto;
      
     }
     .article-related-under img{
        width:95%;
        height: 250px;
        margin-bottom: 5px;
     }
     .article-related-under p{
        text-align: right;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        color: black;
        width:95%;
        margin-bottom: 5px;
  
     }
          .article-related-under .btn-article{
        text-align: right;
  
  
     }
  .related-posts{
  width: 20%;
  /* margin-right :0 20px; */
  background-color: #fffc;
  }
  
  .article-related{
    display: flex;
    margin:20px 0;
  }
  .article-related img{
    width: 50%;
    height: 90px;
    margin: 0 5px;
  }
  .article-related p{
    text-align:right;
    font-size:20px;
    
  }
  .article-related a{
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color:black;
  text-align: right;
  }
  .popular-posts{
    width: 25%;
    /* margin-right: 10px; */
    background-color: #fffc;
  
  }
  .popular-posts img{
    width:100%;
    height:200px;
  }
  .popular-posts .ads-content img{
    width:100%;
    height:auto;
  }
  .article-popular{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 5px 3px;
  }
  .article-popular img{
    /*width:100%;*/
    /*height:150px;*/
  }
  .article-popular p{
    width: 100%;
    text-align: center;
    }
    .article-popular a{
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      color:black;
      text-align: right;
      }
  .line-article{
    height: 100px repeat ;
       margin: 0 10px;
    width: 1px;
       background:#34AD54
  }
 .main-catSection{
    display: flex;
    margin: 50px 0;
    }
.content-pagination{
                background:white;
            }
            .cat-content{
              display: flex;
              width: 80%;
              flex-wrap: wrap;
              justify-content: space-between;
              margin: auto;
                  flex-direction: row-reverse;

              }
              .cat-data{
              display: flex;
              flex-direction: column;
              width: 31%;
              margin: 5px auto;
                      direction:rtl;

              }
    .cat-data a{
             text-align:right;
      font-size:18px;
              }
             .cat-content .line-after{
               
    background: red;
    width: 2px;
    /* height: auto; */
    /* margin: -1px 5px; */
                }
              .cat-data img{
              width:95%;
              height: 250px;
              margin-bottom: 5px;
              }
              .cat-data form{
              text-align: right;
              font-size: 17px;
              font-weight: 600;
              text-decoration: none;
              color: black;
              width:95%;
              margin-bottom: 5px;

              }
              .cat-data span{
              text-align: right;
              width:95%;
              font-size: 14px;
              }
              .paginate{
                display: flex;
                 flex-direction: row-reverse;
                 margin: 10px 100px;
                 justify-content: center;
                 background-color: #4f4f4f;
                 height: 30px;
            }
             .paginate a{
            color:white;
            }
            

  .overlayOne {
  display: none;
  position: absolute;
  z-index: 1;
  }

            .overlay {
              height: 100%;
              width: 100%;
              display: none;
              position: fixed;
              z-index: 1;
              top: 0;
              left: 0;
              background-color: rgb(0, 0, 0);
              background-color: rgba(0, 0, 0, 0.9);
          }
            /* The content */
            .overlay-contentOne {
              display: flex;
              flex-direction: column;
              text-align: center;
            
            }
.overlay-content form{
  display:flex;
  flex-direction:column;
}
.overlay-content input{
padding:40px 0;
  text-align:right;
}
            
            /* Close button */
            .overlayOne .closebtnOne {
              position: absolute;
              /*top: 10px;*/
              /*right: 45px;*/
              font-size: 60px;
              cursor: pointer;
              color: red;
            }
            
            .overlayOne .closebtnOne:hover {
              color: #ccc;
            }
            
            button.openBtn{
                border:none;
            }
            .fa-search {
                padding: 5px 35px;
                background-color: none;
                font-size: 17px;
                color: #cb0000;
                margin-left:100px;
                    font-family: "fontawesome" ;

            }
.search-result{
  text-align:right;
}
          
            /* Style the submit button */
            .overlayOne button {
              float: left;
              
              /*width: 20%;*/
              /*padding: 15px;*/
              background: #ddd;
              font-size: 14px;
              border: none;
              cursor: pointer;
            }
            
            .overlayOne button:hover {
              background: #bbb;
            }
            #result{
              background-color: #ccc;
              text-align: center;
              margin: auto;
              height: 700px;
            
            }
            

  .social-share{
  display: flex;
  justify-content: space-between;
  box-sizing:content-box;
  margin-left:7%;
  margin-top:15px;
  }

  .social-share span{
  font-size: 16px;
  font-weight: 600;
  }
/* END ARTICLE   */
/* categories */
.main-catSection{
    display: flex;
    margin: 50px 0;
    }
    .archive{
    width:15%;
    text-align: center;
            background: white;
  
    }
    .archive p{
    color: black;
    }
     .archive a{
    color: black;
    }
    .section-archive{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    flex-direction: column;
    }
    .section-archive figure{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    }
    .section-archive figure p{
    margin-left: 100px;
    }
  .header-navbar{
  display: flex;
  /* flex-direction: row-reverse; */
  background-color:white;
  color: black;
  justify-content: space-around;
  }
  .social-navbar .fa {
    font-family: "fontawesome";
    margin: auto 10px;
    color: blue;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 0;
    
  }
  .edit-ad-contact{
  margin: auto 82px;
  }
  .edit-ad-contact a{
  color: #fff;
  margin-left: 7px;
  font-size: 17px;
  font-weight: 600;
  }
  .arabic-date{
  margin:auto 5px;
  font-size: 17px;
  font-weight: 600;
  color:black;
  }
  .content-pagination{
    background:white;
  }
  .cat-content{
  display: flex;
  /* width: 80%; */
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  flex-direction: row-reverse;
  
  }
  .cat-data{
  display: flex;
  flex-direction: column;
  width: 31%;
  margin: 5px auto;
          direction:rtl;
  
  }
  .cat-data a{
  /* text-align:right; */
  font-size:22px;
  /* direction: ltr; */
  margin: 5px 3px;
  color:black;
  font-weight: bold;
  
  }
  .cat-content .line-after{
   
  background:#34AD54;
  width: 2px;
  /* height: auto; */
  /* margin: -1px 5px; */
    }
  .cat-data img{
  width:99%;
  height: 215px;
  max-height: 215px;
  min-height: 215px;

  margin-bottom: 5px;
  }
  .cat-data form{
  text-align: right;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  color: black;
  width:95%;
  margin-bottom: 5px;
  
  }
  .cat-data span{
  text-align: right;
  width:95%;
  font-size: 14px;
  }
  .paginate{
    display: flex;
     flex-direction: row-reverse;
     margin: 10px 100px;
     justify-content: center;
     background-color: #4f4f4f;
     height: 30px;
  }
  .paginate a{
  color:white;
  }
  
  
  /* end categories */
  
/* footer */


.footer {
    background-color: #34AD54 !important;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-section h2 {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ff4500;
}
/* end footer */

/* about page */
.container-about{
    background-color: white;
    margin: 30px;
}
.container-about p{
  margin: 0 10px;
}
/* end about page */
.space-section{
height: 20px;
background-color: white;
}

.title-sections {
  display: flex;
  justify-content: stretch;
  width: 20%;
  margin-left: 75%;
  margin-top: 20px;
  padding:0 30px;

}
.fa-angle-double-left{
  margin-right:  15px;
  font-size: 40px;
  font-weight: bolder;
}
.title-sections h2{
  margin: auto;
  font-size: 40px;
  font-weight: bolder;
}
.opinion-portal{
  display: flex;
}
.opinion-portal .title-sections {
  display: flex;
  justify-content: stretch;
  width: 68%;
  background-color: white;
  margin: 40px;
  padding: 0 30px;
}
.portal{
display: flex;
flex-direction: column;
width: 30%;
background-color: #f1f1f1;

margin: 0 10px;

}
.opinion{
  display: flex;
  flex-direction: column;
  width: 30%;
  background-color: #f1f1f1;
  margin: 0 10px;


  }
  .opinion-portal img {
    width: 81%;
    height: 200px;
    object-fit: cover;
}
.opinion-portal .image-cat-a {
    width: 100%;
    margin: auto;
    text-align: center;
}
.voices{
  display: flex;
  flex-direction: column;
  width: 30%;
  background-color: #f1f1f1;
  margin: 0 10px;

  }
  .opinion-portal .centered-caption {
    width: 70%;
  }
  .virtical-line-between{
    width:5px;
    height: auto;
    background-color: #ddb810;
  }
  .visit{
    display: flex;
    flex-direction: column;
    width: 49%;
    background-color: #f1f1f1;
    margin: 0 10px;
  
    }
    .visual{
      display: flex;
      flex-direction: column;
      width: 49%;
      background-color: #f1f1f1;
      margin: 0 10px;
    
      }
      /* main article-two */
      .title-3section{
             display: flex;
             justify-content: space-around;
             align-items: center;
      }
      .title-in-3section{
          display: flex;
          justify-content: space-around;
          width: 15%;
          /* margin-left: 75%; */
          margin-top: 20px;
          padding:0 30px;
        
      }
      .title-in-3section h2{
      text-align: center;
      }
      .article-main-two  {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-direction: row-reverse;
        margin-bottom: 20px;

    }
   .article-main-two .col-two{
      display: flex;
      flex-direction: column;
      margin: 0 15px;
      width: 49%;

   }
     .article-main-two .col-two img{
    
        width: 100%;
        height: 300px;
       }
     .article-main-two .col-two a{
       text-align:center;
   }
   .sub-section-two{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      /* margin: auto; */
      width: 100%;
      flex-direction: row-reverse;
      /* background-color: white; */
  }
       
   .article-sub-two{
      width: 47%;
      display: flex;
      flex-direction: column;
      margin: 15px 0;
      margin-right: 15px;
      background-color: white;

  }   
  .sub-img-two {
    display: flex;
    flex-direction: row-reverse;
}
  .article-sub-two .sub-img-two img{
      width: 100px;
      height: 100px;
  }
   
   .article-sub-two .sub-img-two a{
       width:49%;
   }
   .art-section{
       
     display:flex;
     flex-direction:column;
   }
  .art-section .article-art{
      width:100%;
  }
  .art-img-a img {
width: 350px;
height: 150px;
}
.art-img-a a {
/*width: 75%;*/
text-align: center;
text-decoration: none;
color: #080808;
/*font-size: 14px;*/
/*font-weight: 700;*/
}
.visit-visual-spcial{
display: flex;
width:90%;
margin: 50px auto;
}
/* .visit-visual-spcial .blog-side{
  width:29%;
  display:flex;
} */
.articleone-subsection{
width:70%;
background-color: rgb(249, 247, 250);
margin: 0 30px;
}
.visit-visual-spcial .blog-side div{
display: flex;
flex-direction: row-reverse;
}
      /* end main article   two */

      /* blog-side-3 begin*/
      .blog-side-3{
          width:30%;
          height: 100%;
          margin:0 20px;
          /* margin: auto; */
          background-color: rgb(249, 247, 250);
          /* padding: 0 30px; */
          }
          .blog-side-3 div{
          height: 24%;
          /* width:95%; */
          margin: 5px 0;
          /* max-height:175px; */
          /* background-color:white; */
          /* border:1px #011f09 solid; */
          display: flex;
          flex-direction: column;
          }
          .space-slide-bloge{
              width:1%;
              background-color:white;
              height:auto;
          }
          .blog-side-3 div img{
            margin: auto;
            width: auto;

        height: 200px;
         max-height:200;
         min-height: 200px;
          /* max-width: 50%;
          min-width: 50%; */
          }
          
          .blog-side-3 div a{
            width:39%;
            height: 100%;
          }
            .blog-slide-a-img{
              display: flex;
              /* flex-direction: row-reverse; */
            }
          
    
      /* blog-side-3 end */
      /* mobile verion */
@media screen and (max-width:672px){
        
      .title-sections {

        width: 61%;
        margin-left: 23%;
      
      }
      .slides-blog {
      flex-direction: column;
      height: auto;
      }
      .first-category{
        flex-direction: column;

      }
      .visit-visual-spcial {
flex-direction: column;
      }
      .container {
       width:100%;
      }
      .blog-side {
        width: 100%;
        /* height: 100%; */
        margin: 10px 0;
        /* margin: auto; */
        background-color: rgb(249, 247, 250);
        padding: 0 0;
    }
    .blog-side div {

      margin: 5px 0;

      display: flex;

  }
    .blog-side div form {
      width: auto;
      /* max-width: 50%; */
      /* min-width: 50%; */
  }
    .blog-side div img {
      width: 57%;
      height: 150px;
      /* max-width: 50%; */
      /* min-width: 50%; */
  }
  .first-category .image-cat-a.move-up {
    margin: 10px auto;
    transform: translateY(0);
     opacity: 1;
}

.first-category .image-cat-a {
  opacity: 0;
  transform: none;
  transition: none;
}

  .btn-article {
      width: auto;
      font-size: 12px;
      font-weight: 900;
}
.centered-caption {
  /* width: 90%; */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 200%);

}
.article-sub-two .sub-img-two img {
  width: 50%;
  /* height: 75px; */
}
    .image-cat-a {
      width: 100%;

  }
  .articleone-subsection {
    width: 100%;
display: flex;
flex-direction: column;
margin: 0 0;
}
.article-main-two {
  display: flex;
  flex-direction: column;
}
.article-sub-two {
  width: 100%;

}
.article-main-two .col-two {

  margin: 5px ;
  width: auto;
}
        .blog-slide-a-img form{
          text-align:center;
        }
.blog-side-3 {
  width: 100%;
margin: 0 0;
    }
    .blog-side-3 div {
background-color: #b3aaaa82;
    }
        .title-3section{
          display:none;
  }
          .article-page{
                flex-direction: column;
                 margin:20px 0; 
            }
            .mainarticle-message{
            width: 100%;
            }
  
            .main-article{
         
    margin: 0 40px;
}
  .main-article img {
    width: 90%;
    height: auto;
    margin-right: 7%;
}
  .paginate {
    margin: 48px auto;
}
            .main-article p{
            font-weight: 600;
                  margin: 7px 11px;
            }
            .related-posts{
            width: 100%;
            }
            .article-related img {
            width: 300px;
            height:250px;
            }
            .related-posts h3{
            text-align: center;
            }
            .popular-posts {
            width: 100%;
            }
            .popular-posts h3{
            
            text-align: center;
          }

            .cat-content{
                display:flex;
            flex-direction:column
            }
            .cat-data {
width:100%;
          }
          .cat-data a {
    width:100%;
            height:100%;
                text-align: right;

          }
          .cat-data img {
    width:100%;
            height:100%;  
        }
          .cat-data span {
              width:85%;
}
        .related-posts-under {
flex-direction:column;
}
        .article-related-under {
width:100%;
}
         
}   
      /* end mobile vertion */

img { max-width: 100%; height: auto; display: block; }
a { color: var(--nour-primary); text-decoration: none; transition: var(--nour-transition); }
a:hover { color: var(--nour-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    color: var(--nour-text);
    margin-bottom: .5em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 0.9rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: .875rem; }
p { margin-bottom: 1em; }
.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
    position: static; width: auto; height: auto;
    padding: 8px 16px; margin: 0; overflow: visible;
    clip: auto; white-space: normal;
    background: var(--nour-primary); color: #fff;
    z-index: 9999;
}
.wp-block-image { height:450px; }
.wp-block-image img { height: 100%; margin: auto; }
.nour-container {
    max-width: var(--nour-container);
    margin: 0 auto;
    padding: 0 20px;
}
.nour-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--nour-sidebar-w);
    gap: var(--nour-gap);
    padding: 20px 0;
}
.nour-wrapper.full-width { grid-template-columns: 1fr; }
.nour-wrapper.left-sidebar { grid-template-columns: var(--nour-sidebar-w) 1fr; }
.nour-wrapper.no-sidebar { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; }
#primary { min-width: 0; }
#secondary { min-width: 0; }
.nour-topbar {
    background: #fff;
    color: #000000;
    font-size: 13px;
}
.nour-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
}
.nour-topbar a {
    color: #000000;
    margin: 0 8px;
    text-decoration: none;
    font-size: 20px;
}
.nour-topbar__links { display: flex; }
.nour-header {
    background: var(--nour-bg-card);
    border-bottom: 3px solid var(--nour-primary);
    padding: 18px 0;
    position: relative;
    box-shadow: var(--nour-shadow-sm);
}
.nour-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nour-logo { text-decoration: none; flex-shrink: 0; }
.nour-logo img { height: 60px; width: auto; }
.nour-logo__text { line-height: 1; }
.nour-logo__text .site-name {
    font-size: 42px;
    font-weight: 900;
    color: var(--nour-primary);
    display: block;
    letter-spacing: -1px;
}
.nour-logo__text .site-desc {
    font-size: 12px;
    color: var(--nour-text-muted);
    display: block;
    margin-top: 2px;
}
.nour-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nour-btn-search,
.nour-btn-darkmode,
.nour-btn-notif {
    background: var(--nour-gray-100);
    border: 1px solid var(--nour-border);
    color: var(--nour-text-muted);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--nour-transition);
}
.nour-btn-search:hover,
.nour-btn-darkmode:hover,
.nour-btn-notif:hover {
    background: var(--nour-primary);
    color: #fff;
    border-color: var(--nour-primary);
}
.nour-nav {
    background: var(--nour-dark-2);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nour-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.nour-primary-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
}
.nour-primary-menu > li { position: relative; }
.nour-primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 16px;
    color: #d1d5db;
    font-size: 20px;
    font-weight: 900;
    transition: var(--nour-transition);
    white-space: nowrap;
}
.nour-primary-menu > li > a:hover,
.nour-primary-menu > li.current-menu-item > a,
.nour-primary-menu > li.current-menu-ancestor > a {
    background: var(--nour-primary);
    color: #fff;
}
.nour-primary-menu > li.menu-politics > a { border-bottom: 3px solid var(--cat-politics); }
.nour-primary-menu > li.menu-economy  > a { border-bottom: 3px solid var(--cat-economy); }
.nour-primary-menu > li.menu-sports   > a { border-bottom: 3px solid var(--cat-sports); }
.nour-primary-menu > li.menu-tech     > a { border-bottom: 3px solid var(--cat-tech); }
.nour-primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--nour-bg-card);
    min-width: 200px;
    box-shadow: var(--nour-shadow-lg);
    border-top: 3px solid var(--nour-primary);
    border-radius: 0 0 var(--nour-radius) var(--nour-radius);
    z-index: 600;
    list-style: none;
}
.nour-primary-menu > li:hover > .sub-menu { display: block; }
.nour-primary-menu .sub-menu li a {
    display: block;
    padding: 11px 18px;
    color: var(--nour-text);
    font-size: 13px;
    border-bottom: 1px solid var(--nour-border);
    transition: var(--nour-transition);
}
.nour-primary-menu .sub-menu li:last-child a { border-bottom: none; }
.nour-primary-menu .sub-menu li a:hover {
    background: var(--nour-gray-100);
    color: var(--nour-primary);
    padding-right: 24px;
}
.nour-primary-menu .sub-menu .sub-menu {
    top: 0;
    right: 100%;
    border-top: none;
    border-right: 3px solid var(--nour-primary);
}
.nour-nav__right {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
}
.nour-nav__right button {
    background: none;
    border: none;
    color: #9ca3af;
    padding: 8px 10px;
    font-size: 15px;
    transition: var(--nour-transition);
    border-radius: 4px;
}
.nour-nav__right button:hover { background: rgba(255,255,255,.08); color: #fff; }
.nour-nav__hamburger {
    background: none;
    border: none;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nour-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
.nour-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nour-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nour-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nour-mobile-menu {
    width: 100%;
    background: #1a1a1a;
    padding: 10px 0;
    border-top: 1px solid #333;
}
.nour-mobile-menu.is-open { display: block; }
.nour-mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.nour-mobile-menu__list li a {
    display: block;
    padding: 13px 20px;
    color: #d1d5db;
    font-size: 14px;
    border-bottom: 1px solid #2d2d2d;
}
.nour-mobile-menu__list li a:hover { background: var(--nour-primary); color: #fff; }
.nour-mobile-menu__list .sub-menu { background: #111; list-style: none; padding: 0; }
.nour-mobile-menu__list .sub-menu a { padding-right: 36px; font-size: 13px; }
.nour-breaking {
    display: flex;
    align-items: center;
    background: #000000;
    padding: 8px;
    gap: 8px;
}
.nour-breaking__track {
    flex: 1;
    overflow: hidden;
    position: relative;
}
#breakingList {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
    will-change: transform;
}
.nour-breaking__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    flex-shrink: 0;
    color: #fff;
    text-decoration: none;
}
.nour-breaking__img img { width: 80px; height: 60px; object-fit: cover; flex-shrink: 0; }
.nour-breaking__title { font-size: 16px; line-height: 1.4; color: #fff; white-space: normal; font-weight: 700; }
.nour-breaking__nav {
    flex-shrink: 0;
    background: #555;
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.nour-breaking__nav:hover { background: var(--nour-primary, #c0392b); }
.nour-hero { position: relative; overflow: hidden; margin:20px 0; }
.nour-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--nour-border);
    position: relative;
}
.nour-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px; right: 0;
    width: 60px; height: 2px;
    background: var(--nour-primary);
}
.nour-section-title__bar {
    width: 4px; height: 24px;
    background: var(--nour-primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.nour-section-title h2 { font-size: 18px; font-weight: 700; color: var(--nour-text); margin: 0; }
.nour-section-title__line { flex: 1; height: 1px; background: var(--nour-border); }
.nour-section-title__more {
    font-size: 12px;
    color: var(--nour-primary);
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 10px;
    border: 1px solid var(--nour-primary);
    border-radius: 3px;
    transition: var(--nour-transition);
}
.nour-section-title__more:hover { background: var(--nour-primary); color: #fff; }
.nour-card {
    background: var(--nour-bg-card);
    border: 1px solid var(--nour-border);
    border-radius: var(--nour-radius);
    overflow: hidden;
    transition: var(--nour-transition);
}
.nour-card:hover { transform: translateY(-3px); box-shadow: var(--nour-shadow); }
.nour-card__thumb { position: relative; overflow: hidden; }
.nour-card__thumb img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  height: 252px;
}
.nour-card:hover .nour-card__thumb img { transform: scale(1.04); }
.nour-card__body { padding: 14px; }
.nour-card__body--lg { padding: 20px; }
.nour-card__title { font-size: 14px; font-weight: 600; line-height: 1.55; margin-bottom: 8px; }
.nour-card__title a { color: var(--nour-text); }
.nour-card__title a:hover { color: var(--nour-primary); }
.nour-card__title--lg { font-size: 18px; }
.nour-card__excerpt {
    font-size: 13px;
    color: var(--nour-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nour-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--nour-text-muted);
}
.nour-card__meta a { color: var(--nour-text-muted); }
.nour-card__meta a:hover { color: var(--nour-primary); }
.nour-card__meta .sep { color: var(--nour-gray-300); }
.nour-cat {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 2px;
    color: #fff;
    background: var(--nour-primary);
    letter-spacing: .3px;
    transition: var(--nour-transition);
}
.nour-cat:hover { opacity: .85; color: #fff; }
.nour-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.nour-grid-featured { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; }
.nour-sidebar { display: flex; flex-direction: column; gap: 20px; }
.nour-widget {
    background: var(--nour-bg-card);
    border: 1px solid var(--nour-border);
    border-radius: var(--nour-radius);
    overflow: hidden;
}
.nour-load-more { text-align: center; margin: 24px 0; }
.nour-load-more button {
    background: var(--nour-bg-card);
    border: 2px solid var(--nour-primary);
    color: var(--nour-primary);
    padding: 12px 40px;
    font-size: 14px; font-weight: 700;
    border-radius: var(--nour-radius);
    transition: var(--nour-transition);
    font-family: inherit;
}
.nour-load-more button:hover { background: var(--nour-primary); color: #fff; }
.nour-load-more button.is-loading { opacity: .6; pointer-events: none; }
.nour-search-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 9000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}
.nour-search-overlay.is-open { display: flex; }
.nour-search-overlay__box { width: 100%; max-width: 640px; position: relative; }
.nour-search-overlay__input {
    width: 100%;
    padding: 18px 56px 18px 20px;
    font-size: 18px; font-family: inherit;
    border: none; border-radius: var(--nour-radius);
    outline: none; direction: rtl;
}
.nour-search-overlay__btn {
    position: absolute; top: 50%; right: 14px;
    transform: translateY(-50%);
    background: var(--nour-primary); border: none;
    color: #fff; padding: 8px 14px;
    border-radius: 4px; font-size: 14px;
}
.nour-search-overlay__close {
    position: absolute; top: 24px; left: 24px;
    background: none; border: none;
    color: #fff; font-size: 28px; line-height: 1;
}
.nour-footer {
    background:var(--nour-dark-2);
    color:#fff;
    padding:60px 20px 20px;
    font-family:'Cairo',sans-serif;
}
.nour-footer__top { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.footer-col h3 {
    font-size:14px;
    margin-bottom:20px;
    border-bottom:2px solid #333;
    padding-bottom:10px;
    color: #fff;
}
.footer-post { display:flex; gap:10px; margin-bottom:15px; text-decoration:none; color:#fff; }
.footer-post__img img { width:70px; height:60px; object-fit:cover; }
.footer-post h4 { font-size:12px; margin:0; line-height:1.4; color: #fff; }
.footer-post span { font-size:10px; color:#aaa; }
.footer-cats { list-style:none; padding:0; margin:0; }
.footer-cats li { margin-bottom:10px; }
.footer-cats a { display:flex; justify-content:space-between; color:#ddd; text-decoration:none; font-size:13px; }
.footer-cats span { background:#222; padding:2px 6px; font-size:11px; border-radius:3px; }
.footer-social { display:flex; gap:10px; margin-top:15px; }
.footer-social a {
    width:32px; height:32px;
    display:flex; align-items:center; justify-content:center;
    background:#222; color:#fff; border-radius:3px;
}
.nour-footer__bottom {
    margin-top:30px;
    text-align:center;
    border-top:1px solid #222;
    padding-top:15px;
    font-size:12px;
    color:#aaa;
}
.home-section { margin: 48px 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--nour-primary, #1a73e8);
    padding-bottom: 10px;
}
.section-title { font-size: 20px; font-weight: 800; margin: 0; }
.section-more { font-size: 13px; color: var(--nour-primary, #1a73e8); text-decoration: none; }
.post-date { font-size: 11px; color: #f0f0f0; }
.post-cat { font-size: 11px; font-weight: 700; color: var(--nour-primary, #1a73e8); text-transform: uppercase; }
.post-excerpt { font-size: 13px; color: #555; line-height: 1.6; margin: 6px 0 0; }
.layout-hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--sec-gap); }
.hero-card { position: relative; border-radius: var(--sec-radius); overflow: hidden; display: block; text-decoration: none; color: #fff; }
.hero-card .hero-img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .4s; }
.hero-card:hover .hero-img { transform: scale(1.04); }
.hero-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 16px; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.hero-meta h4 { color: #f0f0f0; font-size: 16px; font-weight: 700; line-height: 1.45; margin: 0 0 6px; }
.hero-meta .hero-cat {
    display: inline-block;
    background: var(--nour-primary, #1a73e8);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}
.hero-meta h3 { font-size: 25px; font-weight: 700; line-height: 1.45; margin: 0 0 6px; color: #f0f0f0; }
.side-list { display: flex; flex-direction: column; gap: 12px; }
.side-list .post-date { color:black; }
.side-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    background: var(--nour-gray-50, #f9f9f9);
    border-radius: 8px;
    padding: 8px;
    transition: background .2s;
}
.side-item:hover { background: var(--nour-gray-100, #f0f0f0); }
.side-item .side-thumb { width: 90px; height: 70px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.side-body h4 { font-size: 15px; font-weight: 500; line-height: 1.5; margin: 0 0 4px; }
.layout-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sec-gap); }
.grid-card {
    border-radius: var(--sec-radius);
    overflow: hidden;
    box-shadow: var(--sec-shadow);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.grid-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.grid-card .grid-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.grid-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; background: #fff; }
.grid-body h3 { font-size: 15px; font-weight: 700; line-height: 1.45; margin: 0; }
.layout-strip { display: flex; flex-direction: column; gap: 4px; border: 1px solid #eee; border-radius: var(--sec-radius); overflow: hidden; }
.strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
}
.strip-item:last-child { border-bottom: none; }
.strip-item:hover { background: #f5f8ff; }
.strip-item .strip-thumb { width: 76px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.strip-body { flex: 1; }
.strip-body h4 { font-size: 14px; font-weight: 600; line-height: 1.45; margin: 0 0 4px; }
.strip-arrow { font-size: 18px; color: var(--nour-primary, #1a73e8); flex-shrink: 0; opacity: 0; transition: opacity .2s; }
.strip-item:hover .strip-arrow { opacity: 1; }
.layout-magazine { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sec-gap); }
.mag-main { position: relative; border-radius: var(--sec-radius); overflow: hidden; display: block; text-decoration: none; color: #fff; }
.mag-main:hover .mag-main-img { transform: scale(1.03); }
.mag-main-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 22px 18px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.mag-main-body h2 { color: #ffffff; }
.mag-label {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.mag-main-body h2 { font-size: 19px; font-weight: 800; line-height: 1.4; margin: 0 0 8px; }
.mag-main-body p { font-size: 13px; opacity: .85; margin: 0; }
.mag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.two-col-section { padding: 30px 0; font-family: inherit; direction: rtl; }
.tcs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.tcs-heading { font-size: 20px; font-weight: 700; padding-bottom: 8px; margin-bottom: 16px; border-bottom: 2px solid; text-align: right; }
.tcs-featured { position: relative; margin-bottom: 16px; }
.tcs-featured-img { width: 100%; height: 220px; object-fit: cover; border-radius: 6px; display: block; }
.tcs-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #888; margin: 10px 0 6px; direction: rtl; }
.tcs-title { font-size: 20px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
.tcs-title a { color: #222; text-decoration: none; }
.tcs-title a:hover { text-decoration: underline; }
.tcs-excerpt { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 14px; }
.tcs-readmore {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
}
.tcs-readmore:hover { opacity: .85; }
.tcs-mini-list { margin-top: 4px; }
.tcs-mini-post { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-top: 1px solid #eee; direction: rtl; width: 100%; }
.tcs-mini-img-second { width:95%; height:125px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.tcs-mini-thumb { flex-shrink: 0; width: 60%; }
.tcs-mini-date { display: block; font-size: 13px; color: #999; margin-bottom: 4px; }
.tcs-mini-title { font-size: 16px; font-weight: 600; line-height: 1.5; margin: 0; }
.tcs-mini-title a { color: #333; text-decoration: none; }
.tcs-mini-title a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .layout-hero, .layout-magazine { grid-template-columns: 1fr; }
    .layout-grid3 { grid-template-columns: repeat(2, 1fr); }
    .mag-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tcs-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .layout-grid3 { grid-template-columns: 1fr; }
    .mag-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    :root { --nour-sidebar-w: 280px; }
    .nour-grid-featured { grid-template-columns: 1fr 1fr; }
    .nour-grid-featured > :first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
    :root { --nour-font-size-base: 15px; }
    body { margin: 0 !important; }
    .nour-wrapper { grid-template-columns: 1fr; }
    .nour-wrapper #secondary { display: none; }
    .nour-header__inner { justify-content: space-between; flex-wrap: nowrap; max-width: 100%; }
    .nour-header { overflow: hidden; }
    .nour-primary-menu { display: none; }
    .nour-nav__hamburger { display: flex !important; }
    .nour-nav__inner { justify-content: space-between; padding: 0 16px; min-height: 44px; }
    #nourPrimaryMenu { display: none !important; }
    .nour-grid-3, .nour-grid-featured { grid-template-columns: 1fr 1fr; }
    .nour-grid-featured > :first-child { grid-column: span 2; }
    .nour-topbar__social { display: none; }
    .nour-topbar__inner { display:none; }
    .nour-logo__text .site-name { font-size: 22px; }
    .nour-logo img { height: 40px; }
    .nour-header__actions { gap: 6px; }
    .nour-btn-search, .nour-btn-darkmode, .nour-btn-notif { width: 32px; height: 32px; font-size: 13px; }
}
@media (max-width: 480px) {
    .nour-grid-3, .nour-grid-4, .nour-grid-2 { grid-template-columns: 1fr; }
    .nour-grid-featured { grid-template-columns: 1fr; }
    .nour-grid-featured > :first-child { grid-column: span 1; }
    .nour-topbar__date { display: none; }
}
.nour-hero-split {
    position: relative;
    width: 100%;
    overflow: hidden;
    direction: rtl;
    height: 420px;              /* ← ثابت بدل ما يتمدد على الصورة */
}
.nour-hero-split__slide {
    display: none;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
    height: 100%;               /* ← يورث الارتفاع من الأب */
}
.nour-hero-split__slide.is-active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.nour-hero-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    height: 100%;               /* ← بدل auto */
}
.nour-hero-split__main-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;           /* بدل visible عشان الصورة متطلعش برا */
}
.nour-hero-split__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 9px;
    height: 450px;
}
.nour-hero-split__card { position: relative; overflow: hidden; cursor: pointer; }
.nour-hero-split__card-thumb { position: relative; width: 100%; height: 100%; }
.nour-hero-split__card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s; display: block;
}
.nour-hero-split__card:hover .nour-hero-split__card-thumb img { transform: scale(1.06); }
.nour-hero-split__card-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.nour-hero-split__card-cat {
    position: absolute; top: 8px; right: 8px; z-index: 3;
    font-size: .7rem; padding: 2px 8px;
}
.nour-hero-split__card-body {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 10px 10px 12px; color: #fff;
}
.nour-hero-split__card-title {
    font-size: .82rem; font-weight: 700; line-height: 1.4; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; color: #fff;
}
.nour-hero-split__card-title a { color: #fff; text-decoration: none; }
.nour-hero-split__card-title a:hover { text-decoration: underline; }
.nour-hero-split__main { position: relative; overflow: hidden; height: 100%; }
.nour-hero-split__main-img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s;
}
.nour-hero-split__slide.is-active .nour-hero-split__main-img { transform: scale(1.03); }
.nour-hero-split__main-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 50px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 70%, transparent 100%);
    color: #fff; text-align: right; display: flex; flex-direction: column; gap: 8px;
}
.nour-hero-split__main-cat { align-self: flex-end; font-size: .75rem; padding: 3px 10px; }
.nour-hero-split__main-meta {
    font-size: .78rem; opacity: .85; display: flex;
    align-items: center; justify-content: flex-end; gap: 6px;
}
.nour-hero-split__main-meta .fa-bolt { color: var(--nour-primary, #e53935); }
.nour-hero-split__main-title { font-size: 1.6rem; font-weight: 800; line-height: 1.35; margin: 0; }
.nour-hero-split__main-title a { color: #fff; text-decoration: none; }
.nour-hero-split__main-title a:hover { text-decoration: underline; }
.nour-hero-split__main-excerpt {
    font-size: .85rem; opacity: .85; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nour-hero-split__prev, .nour-hero-split__next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,.5); border: none; color: #fff; cursor: pointer;
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.nour-hero-split__prev { right: 50%; margin-right: 0; }
.nour-hero-split__next { left: 16px; }
.nour-hero-split__prev:hover, .nour-hero-split__next:hover { background: rgba(0,0,0,.8); }
@media (max-width: 900px) {
    .nour-hero-split { height: 320px; }   /* رقم مناسب للموبايل */
    .nour-hero-split__inner {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr;
        height: auto;
    }
    .nour-hero-split__main-wrapper { order: -1; height: 180px; }
    .nour-hero-split__cards { grid-template-columns: 1fr 1fr; height: 140px; }
    .nour-hero-split__prev, .nour-hero-split__next { top: 90px; }
}
@media (max-width: 500px) {
    .nour-hero-split__cards { grid-template-columns: 1fr 1fr; height: 260px; }
    .nour-hero-split__main-title { font-size: 1.1rem; }
}
/* =============================================================================
   Don't Miss Section
   ============================================================================= */
.dm-section {
    margin: 30px 0;
    direction: rtl;
}

.dm-header {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--nour-border);
    margin-bottom: 20px;
}

.dm-label {
    background: var(--nour-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dm-tabs {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.dm-tabs::-webkit-scrollbar { display: none; }

.dm-tab {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nour-text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s, border-color .2s;
}
.dm-tab:hover { color: var(--nour-text); }
.dm-tab.is-active {
    color: var(--nour-accent);
    border-bottom-color: var(--nour-accent);
    font-weight: 700;
}

/* Body */
.dm-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Featured */
.dm-featured__thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--nour-radius);
    margin-bottom: 14px;
}
.dm-featured__thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.dm-featured__thumb:hover img { transform: scale(1.03); }

.dm-cat-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--nour-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.dm-featured__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
}
.dm-featured__title a { color: var(--nour-text); text-decoration: none; }
.dm-featured__title a:hover { color: var(--nour-primary); }

.dm-featured__meta {
    font-size: 12px;
    color: var(--nour-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dm-author a { color: var(--nour-text); text-decoration: none; font-weight: 600; }
.dm-sep { opacity: .4; }

.dm-featured__excerpt {
    font-size: 13px;
    color: var(--nour-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Side */
.dm-side { display: flex; flex-direction: column; }

.dm-side__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--nour-border);
    text-decoration: none;
    transition: opacity .2s;
}
.dm-side__item:first-child { padding-top: 0; }
.dm-side__item:last-child  { border-bottom: none; }
.dm-side__item:hover { opacity: .8; }

.dm-side__thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--nour-radius);
    overflow: hidden;
}
.dm-side__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dm-side__body  { flex: 1; min-width: 0; }
.dm-side__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--nour-text);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dm-side__date { font-size: 11px; color: var(--nour-text-muted); }

/* Responsive */
@media (max-width: 768px) {
    .dm-body          { grid-template-columns: 1fr; gap: 20px; }
    .dm-featured__thumb img { height: 200px; }
    .dm-featured__title     { font-size: 17px; }
    .dm-tab           { padding: 8px 10px; font-size: 12px; }
}
.nour-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nour-lang-flag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.nour-lang-flag img {
    border-radius: 3px;
    object-fit: cover;
}
.nour-lang-flag.is-active,
.nour-lang-flag:hover {
    opacity: 1;
}
.nour-lang-switch--mobile {
    padding: 10px 16px;
    display: flex;
    gap: 16px;
    color: #fff;
}
.nour-more-menu .nour-submenu {
    display: none;
    position: absolute;
    background: #1a1a1a;
    min-width: 180px;
    z-index: 100;
}
.nour-more-menu:hover .nour-submenu {
    display: block;
}
.nour-more-menu--mobile.is-open .nour-submenu {
    display: block;
    position: static;
}
/* الشريط الجانبي بعمودين */
/* الشريط الجانبي: عمود واحد، الأكثر قراءة فوق ثم أحدث الموضوعات */
.nour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* العناصر التي تأخذ العرض كاملًا (اجتماعي + إعلانات) */
.nour-sidebar .sidebar-full {
    grid-column: 1 / -1;
}

.sidebar-col__title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 3px solid #c0392b;
}

.sidebar-post {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    text-decoration: none;
    color: inherit;
}

.sidebar-post__img {
    flex: 0 0 64px;
}

.sidebar-post__img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.sidebar-post__body h4 {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post__body span {
    font-size: 11px;
    opacity: .7;
}

/* الشاشات الصغيرة: عمود واحد */
@media (max-width: 767px) {
    .nour-sidebar {
        grid-template-columns: 1fr;
    }
}